body {
	font-family: 'Inter', sans-serif;
    overflow-x: hidden;
	background-color: #F5F2F2;
}

.pad{
	padding: 0 30px;
}

a{
	text-decoration: none;
	color: #000;
	transition: color 0.2s ease;
}

a:hover{
	color: #1596ec;
}

.menu li a{
	transition: color 0.2s ease;
}

.menu li a:hover{
	color: #ec6b15;
}

#header-top{
	border-bottom: 1px solid #151515;
	padding-bottom: 12px;
}

#header-top button{
	font-size: 16px;
}

.product-sidebar .cat-item.current-cat {
    background: #EC6B15;
    
}

.product-sidebar .cat-item.current-cat a{
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 500;
}

#header-menu{
	padding-top: 5px;
	padding-bottom: 0px;
	display: flex;
    align-items: center;
	justify-content: space-between;
}

/* Стили для основного меню */
#header-menu .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0px 0 0;
	gap: 30px;
}

#header-menu .menu > li {
	position: relative;
}

#header-menu .menu > li > a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 10px 0;
	display: inline-block;
	transition: color 0.3s ease;
	position: relative;
}

/* Эффект подчеркивания для ссылок верхнего уровня */
#header-menu .menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #007bff;
	transition: width 0.3s ease;
}

#header-menu .menu > li > a:hover::after,
#header-menu .menu > li > a:focus::after {
	width: 100%;
}

#header-menu .menu > li > a:hover {
	color: #007bff;
}

/* Стили для выпадающего меню (sub-menu) */
#header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 10px 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	border: 1px solid rgba(0,0,0,0.05);
}

/* Анимация появления подменю */
#header-menu .menu > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Стили для элементов подменю */
#header-menu .sub-menu li {
	position: relative;
}

#header-menu .sub-menu li a {
	display: block;
	padding: 8px 20px;
	color: #555;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
}

#header-menu .sub-menu li a:hover {
	background-color: #f8f9fa;
	color: #007bff;
	padding-left: 25px;
}

/* Стили для пунктов меню, у которых есть подменю */
#header-menu .menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 15px;
}

/* Добавляем стрелочку для пунктов с подменю */
#header-menu .menu > li.menu-item-has-children > a::before {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	transition: transform 0.3s ease;
}

#header-menu .menu > li.menu-item-has-children:hover > a::before {
	transform: translateY(-50%) rotate(180deg);
}

/* Стили для мобильной версии */
@media (max-width: 768px) {
	#header-menu .menu {
		flex-direction: column;
		gap: 15px;
	}
	
	#header-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 20px;
		display: none;
	}
	
	#header-menu .menu > li.menu-item-has-children.active .sub-menu {
		display: block;
	}
	
	#header-menu .menu > li.menu-item-has-children > a::before {
		content: '\f107';
		right: 10px;
	}
}

/* Иконка поиска на мобильных */
.mobile-search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.mobile-search-icon svg {
    width: 20px;
    height: 20px;
    margin-top:2px;
}

/* Иконка лупы */
.mobile-search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}


/* Блок поиска */
.mobile-search-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.mobile-search-dropdown.open {
    max-height: 200px;
    transition: max-height 0.3s ease-in;
}

.mobile-search-dropdown-inner {
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Стили для формы поиска */
.mobile-search-dropdown .hp-listing-search-form {
    display: flex;
    gap: 10px;
}

.mobile-search-dropdown .hp-search__field {
    flex: 1;
}

.mobile-search-dropdown .hp-search__field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.mobile-search-dropdown .hp-search__button {
    padding: 12px 24px;
    background: #1596EC;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .mobile-search-dropdown-inner {
        padding: 12px 15px;
    }
    
    .mobile-search-dropdown .hp-listing-search-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-search-dropdown .hp-search__button {
        width: 100%;
    }
}

/* Анимация для кнопки запроса */
.btn-request {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
}

.btn-request:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-request:active {
	transform: translateY(0);
}

/* Эффект пульсации при наведении */
.btn-request::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background: rgba(255,255,255,0.5);
	opacity: 0;
	border-radius: 100%;
	transform: scale(1, 1) translate(-50%);
	transform-origin: 50% 50%;
}

.btn-request:hover::after {
	animation: ripple 1s ease-out;
}

@keyframes ripple {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		transform: scale(20, 20);
		opacity: 0;
	}
}

/* Стили для переключателя языка */
.language-switcher {
	display: flex;
	gap: 10px;
	margin-left: 20px;
}

.language-switcher p {
	margin: 0;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 3px;
	transition: all 0.2s ease;
}

.language-switcher p:hover {
	background-color: #f0f0f0;
}

.language-switcher p.active {
	background-color: #007bff;
	color: white;
}

.custom-logo{
	height: 110px;
	width: auto;
}

p{
	margin-bottom: 0;
}

.btn-request, .btn-request-mob{
	border-radius: 6px;
	background-color: #EC6B15;
	color: #151515;
	padding: 10px 33px;
	box-shadow: 0px 4px 4px 0px #00000040;
	margin-right: 40px;
}

.btn-request-mob{
	width: 100%;
	margin-top: 10px;
}

.header-contact a{
	text-decoration: none;
	color: #151515;
}

.header-contact a:hover{
	color: #EC6B15;
}

.header-contact img{
	width: 25px;
	height: 25px;
	margin-right: 13px;
}

.header-contact__whatsapp{
	font-size: 13px;
    text-align: right;
}

.header-menu__catalog{
	display: flex;
	align-items: center;
	border: 1px solid #EC6B15;
	border-radius: 6px;
	padding: 10px 6px;
	margin-right: 10px;
	max-height: 42px;
    font-size: 14px;
}

.header-menu__catalog a{
	display: flex;
	align-items: center;
}

.header-menu__catalog:nth-child(2){
	border: 1px solid #1596EC;
}

.header-menu__search{
	margin-left: 30px;
}


/* hp-field */
.hp-form--wide{
	height: 42px;
	position: relative;
	width: 700px;
}

.hp-field--search,
.hp-form__fields{
	height: 100%;
}

.hp-field--search{
	padding: 0 14px;
    border-radius: 6px;
    border: 1px solid #1596EC;
}

.hp-form__button{
	position: absolute;
	border: none;
	background: none;
	right: 40px;
	top: 6px;
	font-size: 14px;
}

.hp-field--search:focus-visible{
	outline: none;
}

.home-swiper .swiper-slide {
    position: relative;
    height: 530px; 
}

.home-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-swiper .swiper-slide > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3); 
    color: white;
    z-index: 2;
}

.slide-text__title{
	/* font-size: clamp(2rem, 10vw, 200px); */
	font-size:42px;
	font-weight: bold;
	line-height: 1;
	color: #E6E6E6;
}

.slide-text__desc{
	font-size: 32px;
	color: #EAE8E8;
}

.popular-products-sidebar{
	padding-bottom: 20px;
	max-width:300px;
}

#advantages{
	padding: 10px 0;
}

.advantages__container{
	display: flex;
	justify-content: center;
	gap: 100px;
}

.advantage{
	width: 280px;
	height: 197px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	border: 1px solid;
	
}

.advantage img{
	width: 64px;
	height: 64px;
	margin-top: 40px;
}

.advantage__title{
	text-transform: uppercase;
	font-size: 16px;
	max-width: 265px;
	text-align: center;
	margin-top: 30px;
}

.wp-block-heading{
	text-align: left;
	font-size: 50px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.catalog-front{
	background: url('assets/imgs/f1.webp') no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 20px;
}

.hp-row{
	column-gap: 120px;
	justify-content: center;
}

.hp-listing-categories .hp-row{
	margin: 0;
}

.hp-grid__item{
	max-width: 354px;
	height: 446px;
	width: 100%;
	background: #FEFEFE;
	box-shadow: 0px 4px 4px 0px #00000026;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 6px;
}

.hp-listing-category__image img{
	max-width: 210px;
    margin: 0 auto;
    object-fit: cover;
}

.hp-listing-category{
	display: flex;
	flex-direction: column;
}

.hp-listing-category__content{
    order:1;
}

.hp-listing-category__item-count{
	display: none;
}

.hp-listing-category__name{
	text-transform: uppercase;
	margin-bottom: 20px !important;
	font-size: 22px;
	color: #1E2126;
	font-weight: 500;
}

.hp-listing-category__header{
    order:2;
}

.hp-listing-category__image__link{
	border: 1px solid #000000;
	border-radius: 6px;
	padding: 10px 29px;
	display: block;
    margin-top: 20px;
    text-align: center;
    color: black;
    text-decoration: none;
}

#news{
    margin-top: 20px;
    margin-bottom: 10px;
}

.news-title{
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 0;
}

.news-img{
	height: 418px;
	/* height: auto; */
}

.news-img img{
	width:100%;
	height: 100%;
	object-fit:cover;
	opacity: 0.6;
}

.news-content{
	margin-top: 15px;
}

.news-content p{
	font-size:16px;
	font-weight: 500;
	color:#131313;
	text-decoration: none;
}

.no-photo{
    background: #e9e9e9;
	height: 100%;
}

.news-slider .news-prev{
	top: 10px;
	right: 90px;
	left: unset;
	border: 1px solid #EC6B15;
	width: 70px;
	height: 50px;
	color: #1596EC;
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content__text__photo__0{
	margin-top: auto;
	height: 100%;
}

.news-slider .news-next{
	top: 10px;
	right: 0;
	border: 1px solid #EC6B15;
	width: 70px;
	height: 50px;
	color: #1596EC;
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:after{
	content: '←' !important;
	font-size: 30px;
}

.catalog-sidebar__categories{
	background: #BABABA17;
	border: 1px solid #BABABA4D;
	box-shadow: 0px 4px 4px 0px #00000026;
	border-radius: 6px;
	padding: 10px;
}

.catalog ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.catalog li, 
.product-sidebar li{
	padding: 10px;
	border-bottom: 0.5px solid var(--stroke, #b7b7b766);
}

.catalog li:last-child, 
.product-sidebar li:last-child{
	border-bottom: none;
}



.gt_switcher_wrapper{
	top: 26px !important;
	position:absolute !important;
}

#map{
	padding: 30px;
}

#map iframe{
	width: 100%;
	height: 500px;
}

/* Стили для главного слайдера */
.main-slider {
    position: relative;
    margin-bottom: 30px;
}

.main-slide {
    position: relative;
    outline: none;
}

.main-slide .card-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.main-slide .slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    z-index: 10;
    padding: 20px;
}

.main-slider-dots {
	padding: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
	list-style: none;
}

.main-dot {
    width: 10px;
    height: 10px;
    border: none;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.main-dot:hover {
    background: rgba(255,255,255,0.8);
}

.slick-active .main-dot {
    background: #EC6B15;
    transform: scale(1.2);
}

/* Стрелки навигации */
.main-slider-arrow {
    position: absolute !important;
    top: 50%;
    z-index: 20;
    width: 70px;
    height: 50px;
    border: 1px solid #EC6B15;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
	background: none;
}

.main-slider-prev {
    left: 30px;
}

.main-slider-next {
    right: 30px;
}

.main-slider-arrow:hover {
    background: #1596EC;
}

.main-slider-arrow svg {
    width: 27px;
    height: 15px;
}

/* Адаптивность для стрелок */
@media (max-width: 768px) {
	#advantages {
		padding:10px 0;
	}
    .main-slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .main-slider-prev {
        left: 15px;
    }
    
    .main-slider-next {
        right: 15px;
    }
    
    .main-slider-arrow svg {
        width: 20px;
        height: 11px;
    }
}

/* Стили для новостей */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.news-navigation, 
.category-navigation{
    display: flex;
    gap: 10px;
	justify-content: end !important;
}

#certificates{
    margin-bottom:50px;
}

.certificates-navigation{
    display: flex;
    gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.certificates-navigation__buttons{
	display: flex;
    gap: 10px;
}

.certificates-navigation{
    margin-bottom:20px;
}

.category-navigation{
	align-items: center;
}

.news-prev,
.news-next,
.category-prev,
.category-next,
.certificates-prev,
.certificates-next{
	color: #1596EC;
    background: transparent;
    border: 1px solid #EC6B15;
    width: 70px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-prev:hover,
.news-next:hover {
    background: #1596EC;
}

.news-prev:hover svg path,
.news-next:hover svg path {
    fill: white;
}

.news-slide {
    outline: none;
}

.team-slider{
    display: none;
}

.team-slide{
    border-radius: 18px;
    overflow: hidden;
}

.info-box-slide{
    position: relative;
    background: white;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 18px 18px;
    padding: 15px;
}

@media (max-width: 768px) {
    
    
    .main-slide .slide-text__desc {
        font-size: 18px;
    }
    
    .main-slide .card-image {
        height: 400px;
    }
}

footer{
	padding: 30px 0;
	background: url('assets/imgs/f1.webp') no-repeat;
	background-size: cover;
	background-position: center;
}

.footer-container{
	display: flex;
    justify-content: space-between;
    border-top: 1px solid #AAA5A3;
    padding-top: 20px;
	flex-wrap: wrap;
}

.footer-menu{
	display: flex;
	gap: 122px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.footer-menu div p{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

.footer-menu ul{
	margin: 0;
	padding: 0;
}

.footer-menu li{
	list-style: none;
}

.footer-menu li a{
	text-decoration: none;
	color: #000;
	font-size: 16px;
}

.footer-contacts{
	max-width: 450px;
}

.footer-contacts div p{
	margin-bottom: 10px;
}

.footer-contacts__social{
	margin-top: 10px;
	display: flex;
    gap: 15px;
}

.footer-contacts__icon{
	width: 40px;
	height: 40px;
	filter: grayscale(1);
}

.footer-privacy{
    width: fit-content;
    margin-top: 60px;
    font-size: 14px;
    font-weight: 200;
}

.footer-privacy a{
	display: block;
}

.footer-contacts__social img {
    transition: transform 0.3s ease;
}

.footer-contacts__social img:hover {
    transform: rotate(360deg) scale(1.2);
}


.mobile-menu-content .header-menu__catalog{
	width: 145px;
	margin-bottom: 10px;
}

/* about */
#breadcrumb{
	margin-top: 50px;
	font-weight: 500;
}

#about-video{
	margin-top: 10px;
}

#about-video video{
	width: 100%;
    height: 800px;
    object-fit: cover;
}

#about-content{
	margin-top: 30px;
}

#about-content h1, 
#contacts h1{
	font-size: 36px;
}

#about-content img{
	max-height: 600px;
	max-width: 400px;
    object-fit: cover;
	margin-top: auto;
    height: 100%;
}

.about-content__text{
	display: flex;
	gap:10px;
}

.about-content__text__images{
	display: flex;
	gap: 10px;
}

.about-content__text strong{
	text-transform: uppercase;
}

.about-content__text__dost{
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 20px;
	border-bottom: 1px solid #B7B7B7;
	padding-bottom: 20px;
	padding-left: 10px;
}

.about-content__text__dost .num{
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
}

.about-content__text__dost .text{
	font-size: 24px;
	line-height: 1;
}

.about-content__text__dost div{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#about-advantages {
    margin: 40px 0 60px;
}

.about-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-advantages__title{
	font-size: 36px;
    margin-bottom: 10px;
}

.about-advantages__item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.about-advantages__item:last-child {
    border-bottom: none;
}

.about-advantages__item-num {
    flex-shrink: 0;
    width: 80px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #0066cc;
    font-family: 'Arial', sans-serif;
}

.about-advantages__item-content {
    flex: 1;
}

.about-advantages__item-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.3;
}

.about-advantages__item-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.certificates-slide {
    margin: 0 10px;
    max-height: 418px;
    height: auto;
}

.certificates-img img {
    
    width: 100%;
    object-fit: contain;
    max-height: 410px;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
    #about-advantages {
        margin: 40px 0 40px;
    }
    
    .about-advantages__item {
        gap: 25px;
        padding: 25px 0;
    }
    
    .about-advantages__item-num {
        width: 60px;
        font-size: 40px;
    }
    
    .about-advantages__item-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .about-advantages__item-desc {
        font-size: 16px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 576px) {
    .about-advantages__item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .about-advantages__item-num {
        width: auto;
        font-size: 36px;
    }
    
    .about-advantages__item-title {
        font-size: 18px;
    }
    
    .about-advantages__item-desc {
        font-size: 15px;
    }
}

/* Опционально: hover эффект */
.about-advantages__item:hover {
    transform: translateX(5px);
}

.about-advantages__item:hover .about-advantages__item-num {
    color: #ff6600;
}

#team{
	margin: 120px 0;
}

.team__title{
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: #1596ec9c !important;
}

/* .swiper {
	height: 760px;
} */

.swiper-wrapper {
	align-items: flex-end;
}

.swiper-slide {
	width: 400px !important;
	height: 300px !important;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	position: relative;
	opacity: .6;
	transition:
		width .5s ease,
		height .5s ease,
		opacity .5s ease;
}

.swiper-slide-next {
	width: 470px !important;
	height: 544px !important;
	opacity: 1;
	z-index: 3;
		transition:
		width .5s ease,
		height .5s ease,
		opacity .5s ease;
}

.slide-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-box {
	position: absolute;
	right:0px;
	bottom: 0;
	max-width: 380px;
	background: white;
	padding: 28px;
	border-top-left-radius: 14px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
	transition: .4s;
	opacity: 0;
}

.swiper-slide-next .info-box {
	opacity: 1;
}

.name {
	font-size: 24px;
	font-weight: 700;
}

.position {
	margin-top: 8px;
	font-size: 16px;
}

table{
	width: auto !important;
}

.menu-item--user-account{
	display: none !important;
}
/* 
.hp-listing--view-page, .slick-slide{
	max-width: 770px;
    max-height: 600px;
} */

.catalog-sidebar{
	border: 1px solid #BABABA4D;
	border-radius: 8px;
	padding: 10px;
	max-width: 372px;
	backdrop-filter: blur(14.399999618530273px);
	box-shadow: 0px 4px 4px 0px #0000001A;
	height: fit-content;
	min-width: 300px;
}

.catalog-card{
    max-width: 420px;
    cursor:pointer;
}

.catalog-card a, 
.catalog-card button{
	backdrop-filter: blur(20.399999618530273px);
	border: 1px solid #0679C6C2;
	border-radius: 6px;
	padding: 10px;
	background-color: #0679C64D;
	color: #F8F8F8;
	font-size: 16px;
	transition: all .3s ease;
	max-width: 321px;
    width: 100%;
    transform: translate(-50%, 0%) !important;
    bottom: 20px;
    top:unset !important;
}

.catalog-card a:hover, 
.catalog-card button:hover{
	background-color: #0679C6;
}

.catalog-card h3{
	font-size: 16px !important;
	font-weight: 700 !important; 
	margin-top: 20px;
}

.popular-products-sidebar h3{
	font-weight: 500 !important; 
}

.product-info__instock{
	margin-top: 18px;	
}

.product-info__instock span{
	text-transform: uppercase;
}

.product-download-catalog{
	margin-left: 10px;
	font-size: 16px;
	color: #000;
}

.hp-page {
	max-width: 100%;
    padding: 0 16px;
}

.product-slider{
	max-width: 770px;
}

.product-info{
	max-width: 590px;
}

.product-slider  .slick-list{
	background-color: white;
	max-width: 770px;
}

.product-thumb-slider{
	max-width: 770px;
}

.product-info h1{
	font-weight: 700;
	font-style: bold;
	font-size: 35px;
	line-height: 120%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #000000;
}

.product-info__pay{
	width: 100%;
	top: 490px;
	left: 1306px;
	border-radius: 6px;
	border-width: 1px;
	gap: 10px;
	opacity: 1;
	padding: 10px;
	background: #FFFFFF;
	border: 1px solid #0679C6C2;
	backdrop-filter: blur(20.399999618530273px);
	margin-bottom: 33px;
}

.accordion-item{
	background: none;
	border: none;
	border-bottom: 1px solid #000000 !important;
}

.accordion-content{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0%;
	color: #000000;
}

.product-main-slider .next-arrow{
	position:absolute; 
	right:30px; 
	bottom: 30px; 
	z-index:1; 
	background:rgba(255,255,255,0.8); 
	width:56px; 
	height: 50px; 
	border-radius:50%; 
	cursor:pointer; 
	font-size:20px;
	border-radius: 3px;
	border-width: 1px;
	opacity: 1;
	border: 1px solid #EC6B15;
}

.product-main-slider .prev-arrow{
	position:absolute; 
	right:100px; 
	bottom: 30px; 
	z-index:1; 
	background:rgba(255,255,255,0.8); 
	width:56px; 
	height: 50px; 
	border-radius:50%; 
	cursor:pointer; 
	font-size:20px;
	border-radius: 3px;
	border-width: 1px;
	opacity: 1;
	border: 1px solid #EC6B15;
}

.product-thumb-slider .slick-slide{
	width: 170px !important;
	height: 170px !important;
	border-radius: 6px;
}

.product-thumb-slider .slick-slide img{
	width: 100% !important;
	height: 100% !important;
	border-radius: 6px;
}

.product-thumb-slider .slick-list{
    max-height: 156px !important;
	background: none;
}

.popular-mobile{
	display: none;
}

.accordion-item:last-of-type{
	border-radius: 0;
}

.single-popular__mob{
	display: none;
}

	.product-slider {
		max-width: 800px;
	}
	.product-slider .slick-list {
		max-width: 800px;
	}
	.product-thumb-slider {
		max-width: 800px;
	}

.wrapper-catalog-sidebar{
	max-width: 454px;
}


.catalog-sidebar.product-sidebar h3{
	font-size: 22px;
}

.download-block {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
	margin: 50px 0;
}

.download-block > a {
    flex: 0 0 calc(50% - 7.5px); 
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.download-block > a:hover {
    background: #f5f5f5;
    border-color: #1596EC;
}

.download-block svg {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
}

#download .news-slider{
	padding-top: 0;
}

#download .news-header{
	margin-bottom: 15px;
	flex-wrap: wrap;
}

#download .news-title{
	margin-bottom: 0;
}

#download .news-prev, #download .news-next{
	/* background: white; */
}

.contacts-wrapper{
	margin-top: 50px;
	margin-bottom: 100px;
}

.contacts-wrapper__block{
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.contacts-wrapper__block__item{
	display: flex;
	align-items: center;
    gap: 20px;
}

.contacts-photo{
	border-radius: 100%;
    overflow: hidden;
}

.contacts-photo img{
	width: 137px;
	height: 133px;
	object-fit: cover;
}

.no-photo{
	width: 137px;
	height: 133px;
	background: #D9D9D9;
	border-radius: 100%;
}

.contacts-wrapper__block__contact{
	display: grid;
    grid-template-columns: 1fr  1fr;
	gap: 20px;
	height: fit-content;
}

.contacts-wrapper__block__map{
	max-width: 920px;
}

.dolzhnost{
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 15px;
	line-height: 1.2;
}

.contacts-wrapper__block__map__content{
	margin-top: 20px;
}

.contacts-wrapper__block__map iframe{ 
	width: 100%;
	border-radius: 6px;
}

/* Продвинутая кнопка */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #EC6B15;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(236, 107, 21, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top:hover {
    background: #d55a0a;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 107, 21, 0.5);
}

.scroll-top:active {
    transform: scale(0.95);
}

.scroll-top svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.news-img .no-photo{
	width: 100%;
    height: 100%;
    background: none;
}

.hp-form--listing-search .hp-field--submit{
	font-size: 18px;
}

.catalog-front__header{
	display: flex;
	align-self: center;
	justify-content: space-between;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.catalog-front__header p{
	text-align: left;
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 10px;
}

.footer-logo__work{
	margin-top: 10px;
	height:70px;
}

.footer-logo__work img{
    height:70px;
}

.catalog-image{
    border-radius:6px;
}

.modal-content .fluentform input, .modal-content .fluentform textarea, .modal-content .fluentform select{
    color: black !important;
}



/* Адаптив */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-top svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
    
    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* На мобильных в одну колонку если нужно */
@media (max-width: 768px) {
    .download-block > a {
        flex: 0 0 100%;
    }
}

@media (max-width: 1660px) {
	.product-slider {
		max-width: 450px;
	}
	.product-slider .slick-list {
		max-width: 450px;
	}
	.product-thumb-slider {
		max-width: 450px;
	}
	.product-info h1{
		font-size: 30px;
	}
}

@media (max-width: 1360px) {
	.hp-form--wide{
		width: 500px;
	}
	.about-content__text{
		flex-wrap: wrap;
	}
	.about-advantages__container__item__title {
		font-size: 22px;
		font-weight: 600;
		text-transform: uppercase;
		margin: 0 !important;
	}
	.about-advantages__container__item__num {
		font-size: 30px;
	}
	.contacts-wrapper__block {
		flex-wrap: wrap;
	}
	.contacts-wrapper__block__contact{
		width: 100%;
	}
	.contacts-wrapper__block__contact{
		margin-top: 20px;
	}
	.contacts-wrapper__block__map {
		max-width: 100%;
		width: 100%;
		margin-top: 20px;
	}
	.contacts-wrapper__block__map iframe {
		border-radius: 20px;
	}
}

@media (max-width: 1280px) {
	.wrapper-catalog-sidebar{
		display: none;
	}
	.product-slider {
		max-width: 550px;
	}
	.product-slider .slick-list {
		max-width: 550px;
	}
	.product-thumb-slider {
		max-width: 550px;
	}
	.single-popular__mob{
		display: block;
		margin-bottom: 50px;
	}
	.popular-products__wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1200px) {
	.popular-products__wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.footer-menu{
		gap: 42px;
	}
	.hp-form--wide{
		width: 100%;
	}
	.header-menu__search {
		margin-left: 0;
	}
	.about-advantages__container__item{
		grid-template-columns: 50px 1fr 450px;
	}
	.swiper-slide-next, 
	.swiper-slide{
		width: 400px !important;
    	height: 400px !important;
	}
	.info-box {
		max-width: 100%;
		width: 100%;
		background: #ffffffb5;
		padding: 20px;
	}
	.name {
    	font-size: 22px;
		font-weight: 700;
	}
	.swiper{
		height: auto;
	}
	.catalog-sidebar, .popular-products-sidebar{
		max-width: 300px;
	}
	
	.product-page-wrapper{
		flex-wrap: wrap;
	}
	.product-info{
		flex: auto !important;
	}
	.product-slider {
		max-width: 100%;
	}
	.product-slider .slick-list {
		max-width: 100%;
	}
	.product-thumb-slider {
		max-width: 100%;
	}
	.product-info {
		max-width: 100%;
	}
	.team-slider{
		display: block;
	}
	.team-swiper{
		display: none !important;
	}
	.team-slide{
		margin: 0 10px;
	}


	/* РАЗЪЕБЫВАЕМ КОНТЕКСТ СЛАЙДЕРА */
	.team-swiper {
		isolation: isolate !important; /* Создаем новый контекст */
		z-index: 1 !important;
		position: relative !important;
	}

	.team-swiper * {
		z-index: auto !important;
	}

	/* ПРИНУДИТЕЛЬНО ПОДНИМАЕМ МЕНЮ */
	.mobile-menu {
		z-index: 999999 !important;
		position: fixed !important;
		isolation: isolate !important;
	}

	.mobile-menu-overlay {
		z-index: 999998 !important;
		position: fixed !important;
	}

	/* ЕСЛИ НЕ ПОМОЖЕТ - ВЫНУЖДЕННАЯ МЕРА */
	.team-swiper {
		transform: translateZ(0); /* Форсируем слой */
	}

	/* ИЛИ ЭТО */
	.mobile-menu {
		transform: translateZ(9999px); /* Поднимаем выше */
	}
}

@media (max-width: 990px) {
	.about-advantages__container__item {
        grid-template-columns: 1fr;
    }
	.about-advantages__container__item__num{
		display: none;
	}
	.about-advantages__container__item__title{
		text-align: center;
	}
	.about-advantages__container__item__desc{
		text-align: center;
    	max-width: 100%;
	}
	.team__title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	#about-content img {
		width: 100%;
		height: 100%;
		/* max-height: 500px; */
		object-fit: cover;
		max-width: 100%;
	}


	.swiper-button-mobile .swiper-button-next,
	.swiper-button-mobile .swiper-button-prev{
		top: unset;
		bottom: -70px;
    }
	.no-photo, .contacts-photo img {
		width: 90px;
		height: 90px;
	}
	.dolzhnost {
		font-size: 16px;
		margin-top: 12px;
	}
	.contacts-wrapper__block__item .text{
		font-size: 14px;
	}
	.catalog-front{
		background: none;
	}
	.category-prev, .category-next,
	.news-prev, .news-next,
	.certificates-prev, .certificates-next{
		width: 50px;
        height: 40px;
	}
	.about-content__text__images{
		flex-wrap: wrap;
		margin-top: auto;
	}
	.about-content__text__dost{
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.catalog-front__header p{
		font-size: 24px;
	}

	.news-title {
        font-size: 24px;
    }

    .popular-products-sidebar .catalog-image {
        height: 150px;
    }
    
    .popular-products-sidebar .catalog-image img {
        height: 150px !important;
    }
    
    .catalog-image img{
        border-radius:6px;
    }
    
    .popular-products-sidebar h3 {
        font-size: 14px;
    }
	.footer-logo{
		text-align: center;
		margin: 0 auto;
	}

	.footer-container {
		border: none;
	}
	.footer-contacts {
		max-width: 100%;
	}
	.hp-field--search{
		height: 42px !important;
	}
	.hp-form__button{
		width: fit-content !important;
	}
	.about-content__text__dost .num {
		font-size: 60px;
	}

	.catalog-image img{
		height: 300px;
	}
	.catalog{
		flex-direction: column;
	}
	.catalog-sidebar {
        max-width: 100%;
    }
	.popular{
		display: none;
	}
	.catalog-grid{
		grid-template-columns: 1fr;
	}
	.catalog-card {
		max-width: 100%;
	}
	.popular-mobile{
		display: block;
	}
	.catalog-content{
		margin-bottom: 20px;
	}
	.popular-mobile .popular-products-sidebar{
		padding: 0;
		margin: 0;
	}
	.popular-products-sidebar h3:first-child{
		font-size: 26px !important;
		font-weight: 700 !important;
	}
	.product-info h1 {
        font-size: 22px;
    }
	.team__title {
        font-size: 24px;
    }
	#team {
		margin: 60px 0;
	}
}

@media (max-width: 650px) {
	.contacts-wrapper__block__contact {
		grid-template-columns: 1fr;
	}
	.about-advantages__container__item__title {
        font-size: 24px;
    }
	#team .swiper-button-mobile .swiper-button-prev,
	#team .swiper-button-mobile .swiper-button-next{
		right: unset !important;
		left: unset;
		top: unset;
		bottom: unset;
		position: relative;
		margin-bottom: 15px;
	}
	#team .swiper-button-mobile .swiper-button-next{
		margin-left: 10px;
	}
	.about-advantages__title{
		font-size: 28px;
		margin-bottom: 10px;
	}
}

@media (max-width: 550px) {
	.popular-products__wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.swiper-slide-next, .swiper-slide{
		width: auto !important;
	}
	.news-prev, .news-next{
		width: 50px !important;
    	height: 40px !important;
	}
	.news-header{
		margin-bottom: 20px;
	}
	.news-title{
		font-size: 28px;
	}
	#map{
		padding: 30px 16px;
	}
	.pad{
		padding: 0 16px !important;
	}
	.swiper-button-mobile .swiper-button-next,    
	.swiper-button-mobile .swiper-button-prev {
        width: 50px !important;
        height: 40px !important;
    }
	.swiper-button-mobile .swiper-button-prev {
        right: 90px !important;
    }
	.footer-logo{
		width: 100%;
	}
	.footer-menu{
		flex-direction: column;
		width: 100%;
    	gap: 0;
	}
	.footer-menu div p{
		margin-bottom: 0;
	}
	.footer-menu li{
		border-bottom: 1px solid #AAA5A3;
		margin-bottom: 10px;
	}
	.footer-menu__title{
		margin-bottom: 6px !important;
		font-weight: 600 !important;
	}
	#about-video{
		margin-top: 0;
	}


}

@media (max-width: 400px) {

	.about-content__text__dost .text {
		font-size: 22px;
	}
}

/* Десктоп (больше 1200px) - с увеличением */
@media (min-width: 1201px) {
    .swiper-slide {
        width: 400px !important;
        height: 300px !important;
        opacity: .6;
        transition: all 0.5s ease;
    }
    
    .swiper-slide-next {
	width: 470px !important;
	height: 544px !important;
        opacity: 1;
        z-index: 3;
    }
}

/* Планшеты и мобильные (до 1200px) - обычный слайдер */
@media (max-width: 1200px) {
    .swiper-slide {
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        margin: 0 !important;
    }
    
    .swiper-slide-next {
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
    }
    
    .swiper-slide .info-box {
        opacity: 1 !important;
        position: relative;
        background: white;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 18px 18px;
    }
    
    .slide-photo {
        height: 400px;
        object-fit: cover;
    }
    
    .name {
        font-size: 18px;
    }
    
    .position {
        font-size: 16px;
    }
}

/* Мелкие мобильные */
@media (max-width: 768px) {
    .slide-photo {
        height: 300px;
    }
    
    .name {
        font-size: 20px;
    }
    
    .position {
        font-size: 14px;
    }
    
    .info-box {
        padding: 15px;
    }
}

/* Очень мелкие */
@media (max-width: 480px) {
    .slide-photo {
        height: 250px;
    }
}
