:root {
    --primary-color: #e51919;
    --text-dark: #222222;
    --text-gray: #666666;
    --bg-light: #f9f9f9;
    --border-color: #dddddd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}
.success{
	font-size: 12px;
    color: #018500;
    text-align: center;
    margin-top: 10px;
}
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}
.mt_container{ 
	margin-top: 40px !important;
}
.mb_container{ 
	margin-bottom: 40px !important;
}
.info-text-is-published ul{
	margin-left: 40px;
	margin-bottom: 15px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.relative { position: relative; }

/* ==========================================
   HEADER & TOP BAR
   ========================================== */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.top-phone {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.top-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.search-box {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 4px 10px;
    outline: none;
    font-size: 12px;
}

.search-box button {
    background: none;
    border: none;
    padding: 0 8px;
    cursor: pointer;
}

.main-nav {
	position: relative;
    z-index: 10;
    background: #ffffff;
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    letter-spacing: -1px;
}

.logo-red { color: var(--primary-color); }

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
    z-index: 100;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    transition: color 0.2s;
    height: 100%;
}

.menu a:hover { color: var(--primary-color); }

.burger-menu-btn {
    display: none;
}

/* Выпадающие меню (Десктоп) */
.has-children {
    position: relative;
}

.dropdown-toggle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.has-children .arrow{
    width: 7px;
    height: 7px;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: -5px;
    transition: transform .25s ease;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -15px; left: 0; width: 100%; height: 15px;
}

.submenu li {
    border: none;
}

.submenu a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: var(--text-dark);
}

.submenu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .has-children:hover .submenu {
        display: block;
    }
}

/* ==========================================
   PROMO BANNER SPLIT
   ========================================== */
./* ==========================================
   НОВЫЙ ПРОМО СЛАЙДЕР 
   ========================================== */
.promo-section {
    background-color: #ffffff;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.promo-swiper {
    width: 100%;
    padding-bottom: 40px; /* Место для точек пагинации снизу */
}

.promo-slide {
    background-color: #ffffff;
    padding: 60px 0;
}

.promo-slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.promo-slide-text {
    max-width: 520px;
}

.promo-slide-text h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.promo-slide-text h2 .text-red {
    color: var(--primary-color);
}

.promo-slide-text h2 .text-dark {
    color: #2c2c2c;
}

.promo-slide-text p {
    font-size: 15px;
    color: #777777;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Красная прямоугольная кнопка из скриншота */
.btn-promo {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-promo:hover {
    background-color: #d61818;
    transform: translateY(-1px);
}

.promo-slide-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-slide-img img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

/* Кастомизация точек пагинации под image_dd1ce4.jpg */
.promo-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

/* Обычная неактивная точка */
.promo-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #cccccc;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.2s ease;
    border-radius: 50%;
}

/* Активная точка с красным контуром окружности */
.promo-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
    width: 6px;
    height: 6px;
    position: relative;
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px var(--primary-color); /* Создает эффект белого зазора и внешней красной обводки */
}

/* ==========================================
   АДАПТИВНОСТЬ ДЛЯ НОВОГО СЛАЙДЕРА
   ========================================== */
@media (max-width: 991px) {
    .promo-slide {
        padding: 40px 0;
    }
    .promo-slide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .promo-slide-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .promo-slide-text h2 {
        font-size: 32px;
    }
    .promo-slide-img img {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .promo-slide-text h2 {
        font-size: 26px;
    }
    .promo-slide-text p {
        font-size: 13px;
        margin-bottom: 25px;
    }
    .promo-slide-img img {
        max-height: 200px;
    }
}

/* ==========================================
   INFO CONTENT
   ========================================== */
.info-section {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-text h1 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.info-text h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.info-text p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.info-text h3 {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.fade-text { opacity: 0.5; }

.read-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
}

.info-form-wrapper {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 3px solid var(--primary-color);
}

.info-form-wrapper h3 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.required { color: var(--primary-color); }

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   SWIPER GALLERY
   ========================================== */
.slider-section {
    padding: 0 0 10px;
}

.slide-skew {
    overflow: hidden;
    /*transform: skewX(-8deg);*/ 
    border-radius: 4px;
}

.slide-skew img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /*transform: skewX(8deg) scale(1.15);*/ 
}

.swiper-button-next, .swiper-button-prev {
    color: #000000 !important;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 800;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 25px;
    text-align: center;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 10px !important;
    height: 10px !important;
}

.gallery-swiper {
    position: relative; /* Чтобы стрелки позиционировались относительно него */
}

/* 2. САМИ СТРЕЛКИ */
.swiper-button-next, 
.swiper-button-prev {
    color: #000000 !important;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    
    /* ЦЕНТРИРОВАНИЕ ПО ВЕРТИКАЛИ */
    position: absolute;
    /*top: 50%;*/
	top: calc(50% - 20px);
    /*transform: translateY(50%); /* Сдвигает стрелку вверх */
    
    margin-top: 0 !important; /* Сбрасываем дефолтное смещение Swiper */
    z-index: 10; /* Чтобы стрелки всегда были поверх картинок */
}

/* 3. КОРРЕКТИРУЕМ ИКОНКИ ВНУТРИ (чтобы стрелочки внутри круга были ровно по центру) */
.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 16px; 
    font-weight: bold;
}

/* 4. ПРИЖИМАЕМ К КРАЯМ РОДИТЕЛЯ */
.swiper-button-prev {
    left: -5px; 
}

.swiper-button-next {
    right: -5px; 
}

/*VIDEO*/
/* Контейнер-обертка для позиционирования кнопки по центру слайда */
.video-play-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    /*background: rgba(0, 0, 0, 0.1); /* Легкое затемнение картинки, чтобы кнопка горела ярче */
	background: transparent;
    pointer-events: none; /* Чтобы обертка не мешала кликать по кнопке */
}

/* Красный круг */
.play-btn {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color); /* Твой фирменный красный */
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 34, 34, 0.4);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
    pointer-events: auto; /* Возвращаем кликабельность кнопке */
}

/* Эффект при наведении мышкой */
.play-btn:hover {
    transform: scale(1.1); /* Кнопка плавно увеличивается */
    background-color: #e51515; /* Чуть темнее при ховере */
}

/* Эффект при клике */
.play-btn:active {
    transform: scale(0.95);
}

/* Белый треугольник на чистом CSS */
.play-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #ffffff; /* Белый цвет треугольника */
    
    /* Оптическое смещение: визуально центрирует треугольник внутри круга */
    margin-left: 4px; 
}

/* ==========================================
   BOTTOM BANNER & FOOTER
   ========================================== */
/* ==========================================
   БАННЕР ЗАЯВКИ 
   ========================================== */
.cta-banner-section {
    padding: 60px 0 100px 0; /* Увеличенный отступ снизу, чтобы выступающая турбина не перекрывала следующий блок */
    background-color: #ffffff;
}

.cta-banner-card {
    background: #2d2d2d; /* Темно-серый графитовый фон */
    border-radius: 12px;
    padding: 45px 50px;
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-banner-content {
    color: #ffffff;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ffffff;
}

.cta-description {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Форма */
.cta-form {
    max-width: 500px;
}

.cta-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cta-input {
    flex-grow: 1;
    height: 46px;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 15px;
    color: #2d2d2d;
    outline: none;
}

.cta-input::placeholder {
    color: #999999;
}

/* Ярко-красная кнопка */
.btn-cta-submit {
    height: 46px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-cta-submit:hover {
    background-color: #e51515;
}

/* Стилизация чекбокса из скриншота */
.cta-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.cta-checkbox-label input {
    display: none; /* Прячем дефолтный чекбокс */
}

.cta-custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    background: transparent;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s;
}

/* Состояние "выбрано" — заливаем красным и рисуем галочку */
.cta-checkbox-label input:checked + .cta-custom-checkbox {
    background-color: var(--primary-color);
}

.cta-checkbox-label input:checked + .cta-custom-checkbox::after {
    content: "✓";
    position: absolute;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-checkbox-text {
    font-size: 13px;
    color: #dddddd;
}

/* Эффектное позиционирование выступающей турбины */
.cta-banner-img {
    position: relative;
}

.cta-banner-img img {
    position: absolute;
    bottom: -80px; /* Выталкиваем картинку вниз за пределы серой карточки */
    right: -20px;
    width: 115%;  /* Делаем её массивной и крупной, как на фото */
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)); /* Тень от самой турбины на белый фон */
}

/* ==========================================
   АДАТИВНОСТЬ
   ========================================== */
@media (max-width: 991px) {
    .cta-banner-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 20px;
    }
    
    .cta-banner-img {
        display: none;
    }
    
    .cta-banner-img img {
        display: none;
    }
    
    .cta-banner-section {
        padding: 0; 
    }
}

@media (max-width: 576px) {
    .cta-banner-card {
        padding: 25px 20px;
    }
    
    .cta-banner-content h2 {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-input, .btn-cta-submit {
        width: 100%;
    }
    
    .cta-checkbox-text {
        font-size: 11px;
    }
}

/*---*/

.main-footer {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.address { font-size: 13px; color: var(--text-gray); margin-bottom: 5px; }
.footer-phone { display: inline-block; color: var(--text-dark); font-weight: 700; text-decoration: none; margin-bottom: 15px; }
.footer-links { font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.footer-links a { color: var(--primary-color); text-decoration: none; }
.social-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }

.soc-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 20px;
}

.copyright { font-size: 11px; color: var(--text-gray); padding-bottom: 30px; }

.footer-bottom-pattern {
    height: 15px;
    background: repeating-linear-gradient(-45deg, var(--primary-color), var(--primary-color) 10px, #000000 10px, #000000 20px);
}

.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
}

/* ==========================================
   MEDIA QUERIES (АДАПТИВ)
   ========================================== */
@media (max-width: 991px) {
    .burger-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .burger-menu-btn.active .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu-btn.active .burger-bar:nth-child(2) { opacity: 0; }
    .burger-menu-btn.active .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
	
	.burger-menu-btn.active { 
		position: fixed;
		top: 20px;
		right: 20px; 
	}

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        transition: right 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
        overflow-y: auto;
    }

    .menu.active { right: 0; }

    .menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .menu a {
        display: block;
        padding: 16px 24px;
        font-size: 13px;
    }

    .menu .has-children { display: flex; flex-direction: column; }
    
    .menu .submenu {
        position: static;
        display: none;
        background-color: #fcfcfc;
        box-shadow: none;
        padding: 0;
        width: 100%;
        margin-top: 0;
    }

    .menu .submenu a {
        padding: 12px 40px !important;
        font-size: 13px !important;
        color: var(--text-gray);
    }

    .menu .submenu.open { display: block; }
    
    .dropdown-toggle.arrow-rotate .arrow {
        display: inline-block;
        transform: rotate(180deg);
    }

    body.menu-open { overflow: hidden; }

    .promo-section { flex-direction: column; height: auto; }
    
    .block-filter, .block-tuning {
        clip-path: none;
        margin-right: 0;
        padding: 50px 24px;
        min-height: 280px;
    }
    .block-tuning { padding-left: 24px; }
    .info-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }
    .promo-content h2 { font-size: 22px; }
    .bottom-banner-card { padding: 24px; height: 220px; }
    .banner-skew-content h2 { font-size: 18px; }
    .slide-skew { transform: none; }
    .slide-skew img { transform: none; }
}

/* ==========================================
   СТРОКА ПОИСКА НАЧАЛО
   ========================================== */
:root {
    --search-red: #ff1e1e; /* Яркий красный фон плашки */
}

.search-bar-section {
    /*background-color: var(--search-red);*/
    background-color: var(--primary-color);
    padding: 12px 0;
    position: relative;
    z-index: 5; 
}

.search-form-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    height: 44px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Контейнер кастомного селекта */
.custom-select-container {
    position: relative;
    height: 100%;
}

.select-trigger {
    height: 100%;
    background: #f4f4f4; /* Легкий серый фон для левой плашки */
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.select-trigger:hover {
    background: #ebebeb;
}

/* Стрелочка вниз */
.select-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #888888;
    transition: transform 0.2s ease;
}

/* Поворот стрелки при открытии */
.custom-select-container.open .select-arrow {
    transform: rotate(180deg);
}

/* Выпадающий список категорий из скриншота */
.select-dropdown-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 210px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    display: none; /* Скрыт по дефолту */
    z-index: 999;
}

/* Показываем при клике */
.custom-select-container.open .select-dropdown-list {
    display: block;
}

.select-item {
    padding: 10px 16px;
    font-size: 13px;
    color: #444444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.15s, color 0.15s;
}

.select-item:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* Скрываем галочку у неактивных пунктов */
.select-item .check-icon {
    display: none;
    color: #888888;
    font-size: 11px;
}

/* Показываем галочку у активного пункта */
.select-item.active .check-icon {
    display: inline-block;
}

/* Поле ввода */
.search-input-container {
    flex-grow: 1;
    height: 100%;
}

.search-input-container input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    background: transparent;
}

.search-input-container input::placeholder {
    color: #999999;
}

/* Кнопка с лупой */
.search-submit-btn {
    height: 100%;
    width: 48px;
    background: transparent;
    border: none;
    border-radius: 0 6px 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555555;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s;
}

.search-submit-btn:hover {
    color: var(--search-red);
    background-color: #f9f9f9;
}

/* Адаптивность под мобильные */
@media (max-width: 576px) {
    .search-form-wrapper {
        height: 40px;
    }
    .select-trigger {
        padding: 0 10px;
        font-size: 10px;
        gap: 6px;
    }
    .select-dropdown-list {
        width: 100%;
        min-width: 180px;
    }
    .search-input-container input {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* ==========================================
   СТРОКА ПОИСКА КОНЕЦ
   ========================================== */
   
/* Стили для обычного текстового списка услуг */
.text-services-list {
    margin: 20px 0;
    padding-left: 25px;
    list-style: none; /* Отключаем стандартные черные точки */
}

.text-services-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
}

/* Делаем аккуратные красные маркеры вместо стандартных */
.text-services-list li::before {
    content: "•";
    color: var(--primary-color); /* Твой фирменный красный */
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: -18px;
    top: -2px;
}

/* Стиль для текста "Также у нас вы можете купить..." */
.text-services-note {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500; /* Чуть плотнее, чтобы выделить абзац */
    margin-top: 15px;
}  

/* ==========================================
  СЛАЙДЕР КАТАЛОГА НА ГЛАВНОЙ СТРАНИЦЕ --- НАЧАЛО
   ========================================== */
		.catalog-section {
            max-width: 1400px;
            margin: 0 auto;
            background: #fff;
            padding: 20px 0;
            border-radius: 8px;
            /*box-shadow: 0 2px 10px rgba(0,0,0,0.03);*/
			box-shadow: none;
        }

        /* --- ШАПКА БЛОКА С КРАСНЫМ УГОЛКОМ --- */
        .catalog-title-wrapper {
            position: relative;
            border-bottom: 2px solid var(--primary-color);
            margin-bottom: 25px;
            /*padding-left: 20px;*/
            padding-left: 0px;
        }

        .catalog-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            font-weight: bold;
            font-size: 18px;
            padding: 10px 35px 10px 20px;
            text-transform: uppercase;
            /* Срезает правый угол */
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
        }

        /* --- СЛАЙДЕР / КАРУСЕЛЬ --- */
        .slider-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
            cursor: grab;
            padding: 10px 15px;
			max-width: 1400px;
        }

        .slider-wrapper:active {
            cursor: grabbing;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            
            /* Настройки фиксации скролла (snap) для тача */
            scroll-snap-type: x mandatory;
            
            /* Скрываем стандартный скроллбар */
            scrollbar-width: none; 
        }

        .slider-track::-webkit-scrollbar {
            display: none; 
        }

        /* Отключаем плавный скролл во время перетаскивания мышью, чтобы не было задержки */
        .slider-track.dragging {
            scroll-behavior: auto;
            scroll-snap-type: none;
        }

        /* --- КАРТОЧКА ТОВАРА --- */
        .product-card {
            flex: 0 0 calc(20% - 16px); /* 5 колонок на больших экранах */
            min-width: 250px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 15px;
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            scroll-snap-align: start;
            user-select: none; /* Чтобы текст и картинки не выделялись при драге */
        }

        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            font-weight: bold;
        }

        .status-instock {
            color: #27ae60;
            text-transform: uppercase;
        }

        .favorite-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #b2bec3;
        }

        .product-img {
            text-align: center;
            margin: 15px 0;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            pointer-events: none; /* Чтобы картинка не мешала перетаскиванию */
        }

        .product-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 15px;
            min-height: 36px;
            color: #333;
        }

        /* Характеристики */
        .specs-table {
            width: 100%;
            font-size: 12px;
            border-collapse: collapse;
            margin-bottom: 15px;
            color: #444;
        }

        .specs-table td {
            padding: 4px 0;
        }

        .specs-table td:nth-child(2) {
            text-align: right;
            font-weight: 500;
            color: #111;
        }

        .specs-table tr {
            border-bottom: 1px dashed #f0f0f0;
        }
        .specs-table tr:last-child {
            border-bottom: none;
        }

        /* Низ карточки (Цена и кнопка) */
        .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid #f9f9f9;
        }

        .price-block {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 10px;
            color: #888;
            text-transform: uppercase;
        }

        .price-value {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 16px;
            margin-top: 2px;
        }

        .cart-btn {
            background-color: #2c2d31;
            color: #fff;
            border: none;
            border-radius: 4px;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* --- АДАПТИВНОСТЬ ПОД ЭКРАНЫ --- */
        @media (max-width: 1200px) {
            .product-card { flex: 0 0 calc(25% - 15px); } /* 4 колонки */
        }
        @media (max-width: 992px) {
            .product-card { flex: 0 0 calc(33.333% - 14px); } /* 3 колонки */
        }
        @media (max-width: 768px) {
            .product-card { flex: 0 0 calc(50% - 10px); } /* 2 колонки */
            body { padding: 0; }
        }
        @media (max-width: 480px) {
            .product-card { flex: 0 0 85%; } /* На мобильных видно одну целую и кусочек следующей */
        }  
		
		.slider-track a{
			text-decoration: none;
			color: inherit;
		}
/* ==========================================
  СЛАЙДЕР КАТАЛОГА НА ГЛАВНОЙ СТРАНИЦЕ --- КОНЕЦ
   ========================================== */