/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f5f7fb;
    color: #1e2a3e;
    overflow-x: hidden;
}

/* STICKY HEADER — glassmorphism + blur */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    transition: background 0.2s ease;
}

/* Основной контейнер — mobile first (колонка) */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Левая группа: бургер + лого */
.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    order: 1;
}

/* Правая группа: контакты */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    order: 2;
}

/* Поисковая обёртка — на мобилках на всю ширину, снизу */
.search-wrapper {
    order: 3;
    width: 100%;
}

/* Контейнер поиска */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 44px;
    padding: 8px 18px;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.search-container i {
    color: #8e9aaf;
    font-size: 18px;
}

.search-container input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 8px 0;
    outline: none;
    font-weight: 400;
    color: #1e2a3e;
}

.search-container input::placeholder {
    color: #a0abb9;
    font-weight: 400;
}

.search-container:focus-within {
    background: white;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Кнопки контактов (звонок, WhatsApp) */
/* Кнопки контактов (звонок, WhatsApp) */
.contact-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #C67B4B;  /* ← меняем на цвет бренда */
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.contact-btn:active {
    background: rgba(0, 0, 0, 0.05);
}

@media (hover: hover) {
    .contact-btn:hover {
        color: #A35D33; /* более тёмный при ховере */
        background: rgba(0, 0, 0, 0.03);
    }
}
/* Кнопка гамбургера */
.hamburger-btn {
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #1e2a3e;
    transition: background 0.2s ease;
}

.hamburger-btn:active {
    background: rgba(0, 0, 0, 0.05);
}

/* SVG логотип */
.logo-svg {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 44px;
}

.logo-icon {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

/* DESKTOP (≥768px) — всё в одну строку, поиск по центру */
@media (min-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 12px 32px;
        gap: 24px;
    }

    .header-left {
        order: 1;
        flex-shrink: 0;
    }

    .search-wrapper {
        order: 2;
        width: auto;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .search-container {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.85);
    }

    .header-right {
        order: 3;
        flex-shrink: 0;
        margin-left: 0; /* не нужно дополнительного сдвига */
    }
}

/* Эффекты при наведении (только для устройств с мышкой) */
@media (hover: hover) {
    .contact-btn:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    /* Фирменный цвет WhatsApp при ховере (опционально) */
    .contact-btn:hover .fa-whatsapp {
        color: #25D366;
    }
}

/* SIDEDRAWER (боковое меню) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.drawer.active {
    transform: translateX(0);
}

/* Шапка меню */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}

.drawer-logo {
    font-weight: 600;
    font-size: 20px;
    background: linear-gradient(135deg, #c67b4b, #a35c3a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.close-drawer {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a4a5c;
    transition: background 0.2s;
}

.close-drawer:active {
    background: rgba(0, 0, 0, 0.1);
}

/* Навигация меню */
.drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 16px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 500;
    color: #1e2a3e;
    text-decoration: none;
    transition: background 0.2s ease;
}

.drawer-nav a i {
    width: 24px;
    font-size: 20px;
    color: #c67b4b;
}

.drawer-nav a:active {
    background: rgba(0, 0, 0, 0.05);
}

.drawer-footer {
    padding: 24px 20px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: #7e8c9e;
}

/* Блокировка скролла при открытом меню */
body.drawer-open {
    overflow: hidden;
}

/* MAIN CONTENT (демо контент) */
.main-content {
    max-width: 1400px;
    margin: 24px auto;
    padding: 0 20px 60px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    background: #fff;
    touch-action: pan-y pinch-zoom;
}

.slider-container {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 200px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.slide-content {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 4px 14px;
    color: #1e2a3e;
    text-align: left;
}

.slide-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.slide-content p {
    font-size: 0.9rem;
    margin: 0 0 12px;
    color: #5a6b7c;
}

.slide-btn {
    background: #c67b4b;
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.slide-btn:active {
    transform: scale(0.96);
    background: #a35c3a;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e44;
    transition: 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-btn:active {
    background: white;
    transform: translateY(-50%) scale(0.94);
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.dot.active {
    width: 24px;
    background: white;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* Планшеты и десктоп — контент виден */
@media (min-width: 768px) {
    .slide-content {
        bottom: 28px;
        left: 40px;
        right: 40px;
        padding: 18px 28px;
    }
    .slide-content h3 { font-size: 1.8rem; }
    .slide-content p { font-size: 1rem; }
    .slide-btn { font-size: 1rem; padding: 10px 24px; }
    .slider-btn { width: 48px; height: 48px; font-size: 24px; }
}

/* Мобильная версия (до 767px) — скрываем весь текстовый блок */
@media (max-width: 767px) {
    .slide-content {
        display: none;
    }
}
/* ===== Секция подбора EVA (исправленная) ===== */
.index-section.index__bands {
    background: linear-gradient(145deg, #faf9fc 0%, #f0f2f5 100%);
    border-radius: 40px;
    margin: 40px 20px;
    padding: 32px 24px;
    backdrop-filter: blur(2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

/* Контейнер секции брендов */
.bands-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.bands-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e44, #c67b4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    text-align: center;
}

.bands-subtitle {
    color: #5a6e7c;
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: center;
}

/* Сетка брендов – убираем дублирование, оставляем grid */
.brands-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    padding: 8px 0;
}

/* Карточка бренда – элегантный дизайн */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    padding: 20px 12px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

/* Контейнер для логотипа – выравнивание и фон */
.brand-logo .logo-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
    border-radius: 20px;
    padding: 12px;
    transition: background 0.2s;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.02));
}

.brand-logo span {
    font-size: 14px;
    font-weight: 600;
    color: #1e2a3e;
    text-align: center;
    letter-spacing: -0.2px;
}

/* Hover эффект */
.brand-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(198, 123, 75, 0.3);
    background: #fff;
}
.brand-logo:hover .logo-wrapper {
    background: #fff0e6;
}

/* ПК версия: 6 колонок */
@media (min-width: 1024px) {
    .brands-logos {
        grid-template-columns: repeat(6, 1fr);
        gap: 28px;
    }
    .brand-logo {
        padding: 24px 16px;
        border-radius: 28px;
    }
    .brand-logo .logo-wrapper {
        width: 100px;
        height: 100px;
    }
    .brand-logo span {
        font-size: 16px;
    }
}

/* Планшеты */
@media (min-width: 768px) and (max-width: 1023px) {
    .brands-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .brand-logo .logo-wrapper {
        width: 80px;
        height: 80px;
    }
}

/* Мобильные устройства */
@media (max-width: 767px) {
    .brands-logos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 16px;
    }
    .brand-logo {
        padding: 16px 8px;
    }
    .brand-logo .logo-wrapper {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    .brand-logo span {
        font-size: 12px;
    }
}

/* Кнопка "Открыть все марки" – стильная */
.brands-show-all {
    background: transparent;
    border: 1.5px solid #c67b4b;
    padding: 12px 28px;
    border-radius: 44px;
    font-size: 15px;
    font-weight: 600;
    color: #c67b4b;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto 0;
    width: fit-content;
}
.brands-show-all:hover {
    background: #c67b4b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(198,123,75,0.3);
}
/* Форма подбора – современный glassmorphism */
.selection-form {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-end;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease;
}
.selection-form:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Группа полей – равномерное распределение */
.form-group {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e2a3e;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label i {
    color: #c67b4b;
    font-size: 1rem;
    width: 20px;
}

/* Стилизация select – современный minimal */
.form-group select {
    padding: 14px 18px;
    border-radius: 48px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    color: #1e2a3e;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c67b4b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}
.form-group select:hover {
    border-color: rgba(198, 123, 75, 0.5);
    background-color: #fefcf9;
}
.form-group select:focus {
    border-color: #c67b4b;
    box-shadow: 0 0 0 4px rgba(198, 123, 75, 0.15);
}
.form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Кнопка поиска – градиент, тень, анимация */
.search-btn {
    background: linear-gradient(105deg, #c67b4b, #b55a2c);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(198, 123, 75, 0.35);
    letter-spacing: 0.3px;
}
.search-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(198, 123, 75, 0.4);
    background: linear-gradient(105deg, #d48754, #c46a38);
}
.search-btn:hover i {
    transform: scale(1.05);
}
.search-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(198, 123, 75, 0.3);
}

/* Результат поиска – красивое сообщение */
.search-result {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    text-align: center;
    color: #1e2a3e;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    font-size: 1rem;
    transition: all 0.2s;
}

/* ===== АДАПТИВНОСТЬ (улучшенная для мобильных) ===== */
/* Планшеты и маленькие десктопы */
@media (max-width: 768px) {
    .selection-form {
        padding: 24px;
        gap: 18px;
        border-radius: 32px;
        flex-direction: column;
        align-items: stretch;
    }
    .form-group {
        width: 100%;
        gap: 6px;
    }
    .form-group label {
        font-size: 0.85rem;
    }
    .form-group select {
        padding: 12px 16px;
        font-size: 0.95rem;
        background-position: right 14px center;
    }
    .search-btn {
        justify-content: center;
        padding: 12px 20px;
        width: 100%;
        font-size: 0.95rem;
    }
    .search-result {
        padding: 18px 20px;
        font-size: 0.9rem;
        margin-top: 24px;
    }
}

/* Мобильные телефоны (до 480px) – максимальная компактность */
@media (max-width: 480px) {
    .selection-form {
        padding: 18px;
        gap: 14px;
        border-radius: 28px;
        backdrop-filter: blur(12px);
    }
    .form-group {
        gap: 4px;
    }
    .form-group label {
        font-size: 0.8rem;
    }
    .form-group label i {
        font-size: 0.85rem;
        width: 18px;
    }
    .form-group select {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 40px;
        background-position: right 12px center;
        background-size: 14px;
    }
    .search-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 8px;
    }
    .search-btn i {
        font-size: 1rem;
    }
    .search-result {
        padding: 14px 16px;
        font-size: 0.85rem;
        border-radius: 32px;
        margin-top: 20px;
    }
}

/* Крупные экраны (ПК) – больше воздуха */
@media (min-width: 1024px) {
    .selection-form {
        padding: 36px 40px;
        gap: 32px;
    }
    .form-group select {
        padding: 16px 24px;
        font-size: 1.05rem;
    }
    .search-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Мобильная версия: компактное расположение */
@media (max-width: 768px) {
    .selection-form {
        padding: 20px;
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .form-group {
        flex: 1 1 calc(50% - 12px);
        min-width: 130px;
    }
    .form-group:last-of-type {
        flex: 1 1 100%;
        margin-top: 0;
    }
    .search-btn {
        width: 100%;
        margin-top: 4px;
    }
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .form-group {
        flex: 1 1 100%;
    }
    .selection-form {
        padding: 16px;
        gap: 10px;
    }
}

/* Карточка товара */
.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    background: white;
    border-color: rgba(198, 123, 75, 0.2);
}

.product-stickers {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.sticker {
    background: #c67b4b;
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sticker.new {
    background: #2c8c5a;
}

.sticker.sale {
    background: #e05a5a;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-info {
    padding: 16px 16px 20px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e2a3e;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 0.9rem;
    color: #8e9aaf;
    text-decoration: line-through;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c67b4b;
}

.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-select {
    flex: 1;
    background: #c67b4b;
    border: none;
    padding: 10px 0;
    border-radius: 44px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-select:active {
    transform: scale(0.96);
    background: #a35c3a;
}

.btn-favorite {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    font-size: 1.2rem;
    color: #5a6e7c;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite:active {
    background: rgba(198, 123, 75, 0.2);
    color: #c67b4b;
}

.btn-favorite.active i {
    color: #e74c3c;
}
/* Адаптив для мобильных устройств */
@media (max-width: 680px) {
    .index-section.index__bands {
        margin: 24px 12px;
        padding: 24px 16px;
    }
    .brands-logos {
        gap: 12px;
    }
    .brand-logo {
        padding: 8px 14px;
        min-width: 75px;
    }
    .brand-logo img {
        width: 44px;
        height: 44px;
    }
    .brand-logo span {
        font-size: 12px;
    }
    .selection-form {
        flex-direction: column;
        align-items: stretch;
    }
    .form-group {

       gap: 6px; /* 👈 уменьшаем внутри label/select */
   }

   .form-group select {
       padding: 10px 12px; /* 👈 тоже чуть компактнее */
   }
    .search-btn {
        justify-content: center;
    }
}

/* Сетка популярных товаров (4 колонки) — добавлена для совместимости */
.popular-products {
    margin: 60px 20px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 0 8px;
}

.popular-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e44, #c67b4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.popular-link {
    color: #c67b4b;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.popular-link:hover {
    gap: 12px;
    color: #a35c3a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ПК: 4 колонки */
    gap: 28px;
}

/* планшет */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* мобилка */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* маленький телефон */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ПК версия — центрируем заголовок и ссылку */
@media (min-width: 1025px) {
    .popular-header {
        justify-content: center;
        position: relative;
    }

    .popular-title {
        text-align: center;
    }

    .popular-link {
        position: absolute;
        right: 8px;
    }
}

/* touch friendly */
button {
    cursor: pointer;
    font-family: inherit;
}
input {
    font-family: inherit;
}


/* Мобильная нижняя навигация — появляется только на телефонах */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none; /* скрыта на десктопе */
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 12px 20px;
    z-index: 99;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-size: 12px;
    color: #8e9aaf;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 30px;
    min-width: 64px;
}

.bottom-nav-item i {
    font-size: 22px;
    transition: transform 0.1s;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.bottom-nav-item.active {
    color: #c67b4b;
    background: rgba(198, 123, 75, 0.1);
}

.bottom-nav-item:active {
    transform: scale(0.92);
    background: rgba(0, 0, 0, 0.04);
}

/* Показываем на мобильных (ширина до 768px) */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    /* Добавляем отступ снизу основному контенту, чтобы не перекрывался */
    .main-content {
        padding-bottom: 80px;
    }
    /* Также для секций, которые могут быть вне .main-content */
    .index-section,
    .popular-products,
    .slider-wrapper {
        margin-bottom: 20px;
    }
}




/* ===== СТРАНИЦА ТОВАРА ===== */
.breadcrumbs {
    font-size: 0.85rem;
    color: #8e9aaf;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.breadcrumbs a {
    color: #5a6e7c;
    text-decoration: none;
}
.breadcrumbs a:hover { color: #c67b4b; }
.breadcrumbs i { font-size: 10px; color: #c0c9d4; }

.share-btn {
    background: none;
    border: none;
    font-size: 0.84rem;      /* уменьшено на 40% (было 1.4rem) */
    color: #5a6e7c;
    cursor: pointer;
    padding: 5px 6px;        /* было 8px 10px, уменьшено на 40% */
    border-radius: 24px;     /* было 40px, уменьшено на 40% */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background-color: #f0f2f5;
    color: #c67b4b;
}

/* Мобильная версия — аккуратная кнопка, не слишком большая */
@media (max-width: 768px) {
    .share-btn {
        font-size: 1.2rem;           /* было 2rem – уменьшено */
        padding: 6px 12px;           /* было 10px 16px */
        min-width: auto;             /* убираем фиксированную ширину */
        min-height: auto;            /* убираем фиксированную высоту */
        border-radius: 32px;         /* чуть меньше скругление */
        background-color: rgba(255,255,255,0.8); /* чуть прозрачнее */
        box-shadow: 0 1px 6px rgba(0,0,0,0.08);  /* более лёгкая тень */
        color: #c67b4b;
        margin-left: auto;
        margin-right: 0;
    }
    .share-btn i, 
    .share-btn svg {
        font-size: 1.2rem;           /* иконка уменьшена пропорционально */
    }
    /* Если внутри есть текст, можно его оставить или скрыть – решайте сами */
    .share-text {
        font-size: 0.85rem;
        margin-left: 4px;
    }
}

/* Для очень маленьких экранов (до 480px) можно сделать ещё компактнее */
@media (max-width: 480px) {
    .share-btn {
        font-size: 1rem;
        padding: 4px 10px;
    }
    .share-btn i, 
    .share-btn svg {
        font-size: 1rem;
    }
    .share-text {
        display: none;    /* скрываем текст, оставляем только иконку */
    }
}
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    background: white;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; gap: 24px; padding: 16px; }
}

.product-gallery {
    position: relative;
}
.gallery-main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #faf9fc;
}
.gallery-main img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    color: #2c3e44;
    transition: 0.2s;
}
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    border: 2px solid transparent;
}
.gallery-thumbs img.active {
    opacity: 1;
    border-color: #c67b4b;
}

.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-title-detail {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e44;
    margin: 0;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5b042;
    font-size: 0.9rem;
}
.product-rating span { color: #7e8c9e; }

.product-price-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.old-price { font-size: 1.2rem; color: #9aa9bb; text-decoration: line-through; }
.new-price { font-size: 2rem; font-weight: 800; color: #c67b4b; }
.badge { background: #e05a5a; color: white; padding: 4px 12px; border-radius: 40px; font-size: 0.8rem; }

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.option-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.color-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.color-option {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.1s;
}
.color-option.active {
    transform: scale(1.1);
    border-color: #c67b4b;
    box-shadow: 0 0 0 2px #c67b4b;
}
.cell-shape {
    padding: 12px;
    border-radius: 28px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 0.95rem;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-order, .btn-whatsapp {
    flex: 1;
    padding: 14px 0;
    border-radius: 44px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}
.btn-order {
    background: #c67b4b;
    color: white;
    box-shadow: 0 4px 12px rgba(198,123,75,0.3);
}
.btn-order:active { transform: scale(0.97); }
.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-whatsapp:active { transform: scale(0.97); }

.product-features {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #5a6e7c;
    background: #f8f9fc;
    padding: 12px 16px;
    border-radius: 48px;
}

.accessories {
    margin: 48px 0;
}
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.accessory-card {
    background: white;
    border-radius: 28px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: 0.2s;
}
.accessory-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 12px;
}
.accessory-card h3 {
    font-size: 1rem;
    margin: 8px 0;
}
.accessory-card .price {
    font-weight: 700;
    color: #c67b4b;
    margin-bottom: 12px;
}
.btn-sm {
    background: #c67b4b10;
    border: 1px solid #c67b4b30;
    padding: 8px 16px;
    border-radius: 40px;
    color: #c67b4b;
    font-weight: 500;
    cursor: pointer;
}

.reviews {
    margin-top: 40px;
}
.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}
.review-item {
    background: white;
    border-radius: 28px;
    padding: 18px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.stars { color: #f5b042; }
.review-date { font-size: 0.7rem; color: #9aa9bb; display: block; margin-top: 8px; }
.btn-show-all {
    background: transparent;
    border: 1px solid #c67b4b;
    padding: 12px 24px;
    border-radius: 44px;
    color: #c67b4b;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
}






/* ================================
   💻 PREMIUM DESKTOP UPGRADE ONLY
   (mobile untouched)
================================= */

@media (min-width: 1024px) {

    body {
        background: radial-gradient(circle at top, #f8fafc, #f3f6fb);
    }

    /* ===== HEADER ===== */
    .sticky-header {
        box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }

    .header-container {
        padding: 14px 48px;
    }

    .logo-icon {
        height: 44px;
    }

    .search-container {
        border-radius: 50px;
        padding: 10px 20px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    }

    .search-container:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    }

    .profile-btn,
    .hamburger-btn {
        transition: all 0.25s ease;
    }

    .profile-btn:hover,
    .hamburger-btn:hover {
        background: rgba(0,0,0,0.05);
        transform: translateY(-1px);
    }

    /* ===== SLIDER ===== */
    .slider-wrapper {
        border-radius: 36px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    }

    .slide {
        min-height: 360px;
    }

    .slide-content {
        bottom: 40px;
        left: 60px;
        right: auto;
        max-width: 420px;
        border-radius: 28px;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.05rem;
    }

    .slider-btn {
        opacity: 0;
        transition: all 0.3s ease;
    }

    .slider-wrapper:hover .slider-btn {
        opacity: 1;
    }

    /* ===== SECTION CONTAINER ===== */
    .main-content {
        padding: 0 40px 80px;
    }

    /* ===== BRAND SECTION ===== */
    .index-section.index__bands {
        padding: 48px;
        border-radius: 48px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.05);
    }

    .brand-logo {
        min-width: 110px;
        padding: 16px 24px;
        transition: all 0.25s ease;
    }

    .brand-logo:hover {
        transform: translateY(-6px) scale(1.03);
    }

    /* ===== FORM ===== */
    .selection-form {
        padding: 32px;
        border-radius: 40px;
        gap: 24px;
    }

    .form-group select {
        padding: 14px 16px;
        border-radius: 32px;
    }

    .search-btn {
        padding: 14px 36px;
        font-size: 1.05rem;
    }

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(198,123,75,0.35);
    }

    /* ===== PRODUCTS GRID ===== */
    .products-grid {
        gap: 32px;
    }

    .product-card {
        border-radius: 32px;
        transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    }

    .product-title {
        font-size: 1.05rem;
    }

    .new-price {
        font-size: 1.4rem;
    }

    .btn-select:hover {
        background: #a35c3a;
        transform: translateY(-1px);
    }

    .btn-favorite:hover {
        background: rgba(198,123,75,0.12);
        color: #c67b4b;
    }

    /* ===== PRODUCT PAGE ===== */
    .product-detail {
        border-radius: 40px;
        padding: 40px;
        gap: 48px;
    }

    .product-title-detail {
        font-size: 2.2rem;
    }

    .new-price {
        font-size: 2.4rem;
    }

    .gallery-main {
        border-radius: 36px;
    }

    .gallery-thumbs img:hover {
        transform: scale(1.05);
        opacity: 1;
    }

    .btn-order:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(198,123,75,0.35);
    }

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(37,211,102,0.25);
    }

    /* ===== ACCESSORIES ===== */
    .accessory-card {
        border-radius: 32px;
        transition: all 0.25s ease;
    }

    .accessory-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    }

    /* ===== REVIEWS ===== */
    .review-item {
        border-radius: 32px;
        transition: all 0.2s ease;
    }

    .review-item:hover {
        transform: translateY(-3px);
    }

    .btn-show-all:hover {
        background: #c67b4b10;
    }
}




/* Стили для блока search-result */
.search-result {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.search-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e44;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2c3e44, #c67b4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Badge марки */
.brand-badge {
    margin-bottom: 28px;
}
.brand-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f2f5;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e2a3e;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.brand-badge-content i {
    color: #c67b4b;
    font-size: 1.1rem;
}
.brand-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #8e9aaf;
    transition: color 0.2s;
    margin-left: 4px;
    padding: 0 4px;
}
.brand-remove:hover {
    color: #e05a5a;
}

/* Фильтр поиска */
.filter-section {
    margin-bottom: 32px;
}
.search-filter {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border-radius: 44px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-size: 1rem;
    transition: all 0.2s;
}
.search-filter:focus {
    outline: none;
    border-color: #c67b4b;
    box-shadow: 0 0 0 3px rgba(198,123,75,0.2);
}

/* Сетка моделей — многоколоночная верстка */
.models-grid {
    column-count: 4;
    column-gap: 20px;
}

.letter-group {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
}

.letter-header {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c0c9d4;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eef2f6;
}

.letter-header:empty {
    display: none;
}

.models-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.model-item {
    font-size: 1rem;
    color: #2c3e44;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s, transform 0.1s;
    display: inline-block;
    width: fit-content;
    border-radius: 20px;
}

.model-item:hover {
    color: #c67b4b;
    transform: translateX(4px);
}

/* Планшеты и крупные телефоны */
@media (max-width: 900px) {
    .models-grid {
        column-count: 3;
    }
}

@media (max-width: 640px) {
    .models-grid {
        column-count: 2;
        column-gap: 12px;
    }
    .letter-group {
        margin-bottom: 16px;
    }
    .letter-header {
        font-size: 1.3rem;
        margin-bottom: 8px;
        padding-bottom: 2px;
    }
    .models-list {
        gap: 4px;
    }
    .model-item {
        font-size: 0.85rem;
        padding: 4px 0;
    }
}

/* Маленькие телефоны — максимально компактно */
@media (max-width: 480px) {
    .models-grid {
        column-count: 1;
        column-gap: 0;
    }
    .letter-group {
        margin-bottom: 12px;
    }
    .letter-header {
        font-size: 1.2rem;
        margin-bottom: 6px;
        padding-bottom: 2px;
    }
    .models-list {
        gap: 3px;
    }
    .model-item {
        font-size: 0.8rem;
        padding: 3px 0;
    }
    .model-item:hover {
        transform: none;  /* экономия анимации на малых экранах */
    }
}

/* Скрытие групп при фильтрации */
.letter-group.hidden-group {
    display: none;
}

.no-results {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 40px;
  font-size: 1.1rem;
  color: #8e9aaf;
  width: fit-content;  /* или задать конкретную ширину */
}
.model-header a {
  display: inline-block;
  text-decoration: none;      /* убираем подчёркивание */
  color: #4a6fa5;             /* спокойный синий */
  font-weight: 500;
  transition: all 0.2s ease;
}

.model-header a:hover {
  color: #1e3a5f;             /* затемнение при наведении */
  text-decoration: underline; /* или другое выделение */
  text-underline-offset: 4px;
}

.model-header a:active {
  color: #0b2a44;
}

.model-header a:focus-visible {
  outline: 2px solid #4a6fa5;
  outline-offset: 2px;
  border-radius: 4px;
}
/* Стили для сетки брендов */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.brand-card {
    background: white;
    border-radius: 28px;
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    color: #2c3e44;
    transition: all 0.2s;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.brand-card .brand-icon {
    font-size: 2.5rem;
    color: #c67b4b;
    margin-bottom: 10px;
}
.brand-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.brand-card .brand-name {
    font-weight: 500;
    font-size: 1rem;
}
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    border-color: #c67b4b30;
}
@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }
}


@media (max-width: 767px) {
    .header-right {
        display: none;
    }
}





/* Базовые сбросы для контейнера, чтобы он не конфликтовал с глобальными стилями сайта */
      .custome-eva-container {
          all: initial; /* Сбрасывает наследование, но осторожно: внутри всё переопределим */
          display: block;
          font-family: 'Inter', system-ui, -apple-system, sans-serif;
          line-height: 1.5;
          color: #1e293b;
      }
      .custome-eva-container * {
          box-sizing: border-box;
          font-family: inherit;
      }
      /* переопределение для Tailwind внутри изолированного блока (если Tailwind глобально не затронет) */
      .custome-eva-container .tailwind-override {
          all: revert;
      }
      /* Кастомные стили для наложения и кнопок */
      .preview-stack {
          display: grid;
          grid-template-areas: "stack";
          place-items: center;
          background: #eef2f6;
          border-radius: 2rem;
          box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
      }
      .preview-stack > * {
          grid-area: stack;
          width: 100%;
          height: auto;
          object-fit: contain;
      }
      .preview-stack img:first-child {
          position: relative;
          z-index: 1;
      }
      .preview-stack img:last-child {
          position: relative;
          z-index: 2;
          pointer-events: none;
      }
      .option-btn {
          transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
          cursor: pointer;
          background: white;
          border-radius: 1.25rem;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.03);
      }
      .option-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15);
          background: #ffffff;
      }
      .option-active {
          ring: 2px solid #3b82f6;
          background: #eff6ff;
          box-shadow: 0 10px 20px -5px rgba(59,130,246,0.3);
          transform: scale(0.98);
      }
      .scrollable-x {
          scrollbar-width: thin;
          overflow-x: auto;
          scrollbar-color: #cbd5e1 #f1f5f9;
      }
      .scrollable-x::-webkit-scrollbar {
          height: 6px;
      }
      .scrollable-x::-webkit-scrollbar-track {
          background: #f1f5f9;
          border-radius: 10px;
      }
      .scrollable-x::-webkit-scrollbar-thumb {
          background: #94a3b8;
          border-radius: 10px;
      }
      @media (max-width: 640px) {
          .option-btn {
              border-radius: 1rem;
          }
      }
      .loader-toast {
          background: rgba(0,0,0,0.85);
          backdrop-filter: blur(8px);
      }







      /* ===== REELS СТИЛИ ===== */
      .reels-main {
          background: #000;
          min-height: 100vh;
      }

      .reels-container {
          scroll-snap-type: y mandatory;
          overflow-y: scroll;
          height: 100vh;
          scroll-behavior: smooth;
      }
      @media (min-width: 768px) {
          .reels-container {
              height: 90vh;
              max-width: 500px;
              margin: 0 auto;
              border-radius: 20px;
              overflow-y: scroll;
              box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
          }
      }

      .reel-item {
          position: relative;
          scroll-snap-align: start;
          width: 100%;
          height: 100vh;
          background: #000;
          overflow: hidden;
      }
      @media (min-width: 768px) {
          .reel-item {
              height: 90vh;
          }
      }

      .reel-video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          pointer-events: none;
      }
      /* Даём возможность управления видео при клике на область (включить звук/паузу) */
      .reel-item.active .reel-video {
          pointer-events: auto;
      }

      .reel-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
          padding: 80px 20px 30px;
          display: flex;
          justify-content: space-between;
          align-items: flex-end;
          gap: 15px;
          color: white;
          z-index: 2;
      }

      .reel-info {
          flex: 1;
      }
      .reel-title {
          font-size: 1rem;
          font-weight: 600;
          margin-bottom: 6px;
          text-shadow: 0 1px 2px rgba(0,0,0,0.4);
      }
      .reel-price {
          font-size: 1.2rem;
          font-weight: 700;
          color: #ffd966;
          margin-bottom: 10px;
      }
      .reel-shop-link {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(255,255,255,0.2);
          backdrop-filter: blur(10px);
          padding: 6px 14px;
          border-radius: 40px;
          font-size: 0.85rem;
          font-weight: 500;
          color: white;
          text-decoration: none;
          transition: 0.2s;
      }
      .reel-shop-link:hover {
          background: #c67b4b;
          transform: scale(1.02);
      }

      .reel-actions {
          display: flex;
          flex-direction: column;
          gap: 18px;
      }
      .action-btn {
          background: none;
          border: none;
          color: white;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 4px;
          font-size: 1.4rem;
          cursor: pointer;
          transition: 0.2s;
          text-shadow: 0 1px 2px rgba(0,0,0,0.5);
      }
      .action-btn span {
          font-size: 0.7rem;
          font-weight: 500;
      }
      .action-btn:hover {
          transform: scale(1.05);
      }
      .like-btn.liked i {
          color: #ff4d4d;
          font-weight: 900;
      }

      .reel-progress {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 3px;
          background: rgba(255,255,255,0.3);
          z-index: 3;
      }
      .progress-bar {
          width: 0%;
          height: 100%;
          background: #c67b4b;
          transition: width 0.1s linear;
      }

      @media (max-width: 480px) {
          .reel-overlay {
              padding: 60px 16px 20px;
          }
          .reel-title {
              font-size: 0.9rem;
          }
          .reel-price {
              font-size: 1rem;
          }
          .action-btn {
              font-size: 1.2rem;
          }
      }

      /* ===============================
   DESKTOP UPGRADE (ПК версия)
   =============================== */
@media (min-width: 1024px) {

    /* фон как у TikTok Web */
    .reels-main {
        display: flex;
        justify-content: center;
        align-items: center;
        background:
            radial-gradient(circle at center,
            #111 0%,
            #000 60%);
    }

    /* контейнер reels */
    .reels-container {
        height: 88vh;
        max-width: 520px;
        width: 100%;
        border-radius: 22px;
        overflow-y: auto;
        margin: 0 auto;

        box-shadow:
            0 0 0 1px rgba(255,255,255,0.08),
            0 20px 60px rgba(0,0,0,0.7);

        scroll-snap-type: y mandatory;
    }

    /* красивый desktop scrollbar */
    .reels-container::-webkit-scrollbar {
        width: 6px;
    }

    .reels-container::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.25);
        border-radius: 10px;
    }

    /* reel */
    .reel-item {
        height: 88vh;
        border-radius: 22px;
        overflow: hidden;
        transition: transform 0.35s ease;
    }

    /* лёгкий hover эффект */
    .reel-item:hover {
        transform: scale(1.01);
    }

    /* видео */
    .reel-video {
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .reel-item:hover .reel-video {
        transform: scale(1.03);
    }

    /* overlay более премиальный */
    .reel-overlay {
        padding: 100px 26px 36px;

        background:
            linear-gradient(
                to top,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.4) 40%,
                transparent 100%
            );
    }

    /* текст крупнее */
    .reel-title {
        font-size: 1.2rem;
    }

    .reel-price {
        font-size: 1.4rem;
    }

    /* кнопки действий */
    .reel-actions {
        gap: 22px;
    }

    .action-btn {
        font-size: 1.6rem;
        opacity: 0.85;
        transition: all 0.25s ease;
    }

    .action-btn:hover {
        transform: scale(1.15);
        opacity: 1;
    }

    /* кнопка магазина */
    .reel-shop-link {
        padding: 8px 18px;
        font-size: 0.9rem;
        backdrop-filter: blur(14px);
    }

    /* progress bar */
    .reel-progress {
        height: 4px;
    }

}



/* ===== БЛОК "РЕКОМЕНДУЕМЫЕ АКСЕССУАРЫ" — улучшенный стиль ===== */
.aksesuars {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.aksesuars-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
    position: relative;
}
.aksesuars-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c67b4b, transparent);
    border-radius: 3px;
}

.aksesuars-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e2a3e, #c67b4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: -0.02em;
}

.aksesuars-link {
    color: #c67b4b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.aksesuars-link:hover {
    gap: 16px;
    border-bottom-color: #c67b4b;
}

.aksesuars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.aksesuar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    position: relative;
}
.aksesuar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(198,123,75,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.aksesuar-card:hover::before {
    opacity: 1;
}
.aksesuar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: rgba(198, 123, 75, 0.2);
}
.aksesuar-card img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: #faf9fc;
    padding: 16px;
}
.aksesuar-card:hover img {
    transform: scale(1.04);
}
.aksesuar-info {
    padding: 20px 20px 24px;
    background: inherit;
}
.aksesuar-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e2a3e;
    margin: 0 0 12px;
    line-height: 1.35;
}
.aksesuar-name span {
    font-weight: 500;
    color: #5a6e7c;
}
.aksesuar-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.aksesuar-price del {
    font-size: 0.9rem;
    color: #9aa9bb;
}
.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #c67b4b;
    letter-spacing: -0.3px;
}
.aksesuar-btn {
    background: linear-gradient(105deg, #c67b4b10, #c67b4b05);
    border: 1px solid rgba(198, 123, 75, 0.2);
    padding: 12px 0;
    border-radius: 60px;
    width: 100%;
    color: #c67b4b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.aksesuar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(105deg, #c67b4b, #b55a2c);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 60px;
}
.aksesuar-card:hover .aksesuar-btn {
    color: white;
    border-color: transparent;
}
.aksesuar-card:hover .aksesuar-btn::before {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .aksesuars {
        margin: 60px auto;
        padding: 0 16px;
    }
    .aksesuars-header {
        margin-bottom: 32px;
    }
    .aksesuars-title {
        font-size: 1.7rem;
    }
    .aksesuars-grid {
        gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    .aksesuar-info {
        padding: 16px 16px 20px;
    }
    .aksesuar-name {
        font-size: 1rem;
    }
    .current-price {
        font-size: 1.25rem;
    }
}
@media (max-width: 480px) {
    .aksesuars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .aksesuars-title {
        font-size: 1.5rem;
    }
}

.product-stickers .sticker.endirim {
    background: red;
    color: white;
}

/* Детальные стили для страницы акции */
.promo-detail {
    max-width: 1280px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.promo-detail h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.promo-detail .promo-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(231,76,60,0.3);
}
.promo-detail .promo-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.promo-detail .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.promo-detail .item-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    position: relative;
}
.promo-detail .item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}
.promo-detail .item-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}
.promo-detail .item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}
.promo-detail .item-card:hover img {
    transform: scale(1.03);
}
.promo-detail .item-info {
    padding: 18px;
}
.promo-detail .item-info h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}
.promo-detail .item-info h3 a {
    color: #2c3e50;
    text-decoration: none;
}
.promo-detail .item-info h3 a:hover {
    color: #e74c3c;
}
.promo-detail .price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 12px;
}
.promo-detail .current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e74c3c;
}
.promo-detail .old-price {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
}
@media (max-width: 768px) {
    .promo-detail { padding: 20px; margin: 20px; }
    .promo-detail h1 { font-size: 1.8rem; }
}
/* Стили для главной страницы акций */
.promotions-main {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}
.promotions-main h1 {
    text-align: center;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}
.promotions-main .subhead {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}
.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}
.promo-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}
.promo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px rgba(231,76,60,0.15);
}
.promo-card .card-header {
       background: linear-gradient(120deg, #c67b4b, #e67e22);
       padding: 20px;
       color: white;
   }
.promo-card .card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.promo-card .card-body {
    padding: 24px;
}
.promo-card .promo-short-text {
    color: #34495e;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.promo-card .promo-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e74c3c;
    margin: 15px 0;
}
.promo-card .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #c67b4b, #7f453f);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.promo-card .btn-detail:hover {
    background: linear-gradient(90deg, #c0392b, #a93226);
    transform: scale(1.02);
    box-shadow: 0 8px 18px rgba(192,57,43,0.3);
}
.badge-count {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}
@media (max-width: 700px) {
    .promotions-main h1 { font-size: 2rem; }
    .promo-cards { grid-template-columns: 1fr; }
}
.favorites-page {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 16px;
}

/* Заголовок страницы избранного — элегантный и современный */
.favorites-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 32px;
    padding-bottom: 12px;
    color: #2C3E44;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #2C3E44 0%, #C67B4B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}

.favorites-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #C67B4B, #E6A177, #F3C3A3);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.favorites-title:hover::after {
    width: 100%;
}

/* Дополнительно: иконка сердечка в заголовке делаем ярче */
.favorites-title::before {
    font-size: 0.9em;
    margin-right: 12px;
    background: none;
    color: #C67B4B;
    text-shadow: 0 2px 5px rgba(198,123,75,0.3);
    display: inline-block;
    animation: gentleBeat 1.5s ease infinite;
}

@keyframes gentleBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Пустое состояние */
.favorites-empty {
    text-align: center;
    padding: clamp(40px, 8vw, 80px) 20px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.favorites-empty:hover {
    transform: translateY(-5px);
}

/* Иконка */
.favorites-empty i {
    font-size: clamp(48px, 8vw, 72px);
    color: #d0d0d0;
    margin-bottom: 20px;
}

/* Текст */
.favorites-empty p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Кнопка */
.btn-primary {
    background: linear-gradient(135deg, #C67B4B, #A35D33);
    color: white;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(198,123,75,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198,123,75,0.4);
}

/* Адаптивность */

/* Планшеты */
@media (max-width: 768px) {
    .favorites-page {
        margin: 30px auto;
    }

    .favorites-title {
        margin-bottom: 20px;
    }
}

/* Мобильные */
@media (max-width: 480px) {
    .favorites-empty {
        padding: 40px 15px;
        border-radius: 18px;
    }

    .btn-primary {
        width: 100%;
        padding: 14px;
    }
}

/* PWA улучшения */
@media (display-mode: standalone) {
    .favorites-page {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}









    /* ===== LIVE SEARCH MODERN STYLE ===== */

    .live-search-results {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;

        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);

        border-radius: 14px;
        box-shadow:
            0 10px 30px rgba(0,0,0,.08),
            0 2px 8px rgba(0,0,0,.05);

        border: 1px solid rgba(0,0,0,.06);

        display: none;
        z-index: 9999;

        overflow: hidden;
        animation: searchFade .18s ease;
    }

    /* появление */
    @keyframes searchFade {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* элемент результата */
    .live-search-item {
        display: flex;
        align-items: center;
        gap: 10px;

        padding: 13px 16px;
        font-size: 14px;
        font-weight: 500;

        color: #222;
        text-decoration: none;

        transition: all .18s ease;
        position: relative;
    }

    /* разделители */
    .live-search-item:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 1px;
        background: rgba(0,0,0,.05);
    }

    /* hover */
    .live-search-item:hover {
        background: linear-gradient(
            90deg,
            rgba(0,0,0,.04),
            rgba(0,0,0,.02)
        );

        padding-left: 20px;
    }

    /* пустой результат */
    .live-search-empty {
        padding: 18px;
        text-align: center;
        font-size: 14px;
        color: #999;
    }
    /* для ПК уменьшаем ширину */
    @media (min-width: 768px) {
        .live-search-results {
            width: 420px;       /* можешь поставить 350–500px по вкусу */
            left: 50%;
            transform: translateX(-50%);
        }
    }


    .filters-container {
        background: #fff;
        padding: 15px;
        margin-bottom: 30px;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        position: sticky;
        top: 70px;
        z-index: 10;
        backdrop-filter: blur(10px);
        background: rgba(255,255,255,0.95);
    }

    .filter-form {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: flex-end;
    }

    .filter-group {
        flex: 1 1 auto;
        min-width: 120px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .filter-group label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #c67b4b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-group label i {
        margin-right: 4px;
        font-size: 0.8rem;
    }

    .price-range {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f9f9f9;
        border-radius: 40px;
        padding: 4px 12px;
        border: 1px solid #eee;
    }

    .price-range input {
        width: 100%;
        border: none;
        background: transparent;
        padding: 8px 0;
        font-size: 0.9rem;
        outline: none;
    }

    .price-range span {
        color: #aaa;
    }

    .filter-group select {
        background: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 40px;
        padding: 10px 12px;
        font-size: 0.9rem;
        cursor: pointer;
        outline: none;
        transition: 0.2s;
    }

    .filter-group select:focus,
    .price-range:focus-within {
        border-color: #c67b4b;
        box-shadow: 0 0 0 2px rgba(198,123,75,0.2);
    }

    .filter-submit,
    .filter-reset {
        padding: 10px 18px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.85rem;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .filter-submit {
        background: #c67b4b;
        color: white;
        box-shadow: 0 2px 6px rgba(198,123,75,0.3);
    }

    .filter-reset {
        background: #f2f2f2;
        color: #555;
    }

    .filter-submit:hover {
        background: #b05f32;
        transform: translateY(-1px);
    }

    .filter-reset:hover {
        background: #e6e6e6;
    }

    /* Мобильная адаптация */
    @media (max-width: 768px) {
        .filters-container {
            position: relative;
            top: 0;
            padding: 12px;
            border-radius: 12px;
        }
        .filter-form {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-group {
            flex: 1 1 calc(50% - 8px);
            min-width: calc(50% - 8px);
        }
        .price-range {
            width: 100%;
        }
        .filter-submit,
        .filter-reset {
            flex: 1;
            justify-content: center;
            padding: 10px 8px;
            font-size: 0.8rem;
        }
        .filter-submit i,
        .filter-reset i {
            margin-right: 4px;
        }
    }

    @media (max-width: 480px) {
        .filter-group {
            flex: 1 1 100%;
        }
        .filter-submit,
        .filter-reset {
            flex: 1;
        }
    }
.visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        
        
      /* smooth container */
.eva-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* ---------- SEO TEXT BLOCK (modern card) ---------- */
.seo-text-block {
    background: #ffffff;
    border-radius: 32px;
    padding: 2rem 1.8rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(191, 118, 72, 0.12); /* #bf7648 with opacity */
}

.seo-text-block:hover {
    box-shadow: 0 25px 40px -16px rgba(191, 118, 72, 0.15);
}

/* headings */
.seo-text-block h2 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(130deg, #bf7648, #8f4e2a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    padding-left: 0.9rem;
    border-left: 5px solid #bf7648;
    line-height: 1.2;
}

.seo-text-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.8rem 0 1rem 0;
    color: #8f4e2a;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.seo-text-block h3:before {
    content: "✨";
    font-size: 1.4rem;
    font-weight: normal;
    color: #bf7648;
}

/* paragraphs */
.seo-text-block p {
    font-size: 1rem;
    font-weight: 400;
    color: #2d2a27;
    margin-bottom: 1.2rem;
    line-height: 1.55;
}

/* strong and highlight */
.seo-text-block strong {
    color: #bf7648;
    font-weight: 700;
}

/* custom list */
.seo-text-block ul {
    list-style: none;
    margin: 1.3rem 0 1.6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.9rem;
}

.seo-text-block ul li {
    background: #fffaf5;
    padding: 0.9rem 1rem 0.9rem 2.4rem;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #f7e3d6;
    backdrop-filter: blur(2px);
}

.seo-text-block ul li:hover {
    background: #fff3ea;
    border-color: #e9c9b3;
    transform: translateX(4px);
}

.seo-text-block ul li:before {
    content: "✓";
    color: #bf7648;
    font-weight: 800;
    position: absolute;
    left: 12px;
    top: 0.9rem;
    font-size: 1.1rem;
}

/* em / italic */
.seo-text-block em {
    background: #fef3ea;
    padding: 0.1rem 0.3rem;
    border-radius: 12px;
    font-style: normal;
    font-weight: 500;
    color: #bf7648;
}

/* extra spacing */
.seo-text-block p:last-of-type {
    margin-bottom: 0;
}

/* social links stylish block */
.social-links {
    text-align: center;
    padding: 1.8rem 1rem;
    background: #ffffff;
    border-radius: 44px;
    margin-top: 1rem;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(191, 118, 72, 0.15);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fef6f0;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    color: #bf7648;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #f1dfd2;
    letter-spacing: -0.2px;
}

.social-links a i {
    font-size: 1.3rem;
    transition: transform 0.2s;
}

.social-links a:hover {
    background: #fbe9dd;
    color: #9a582f;
    border-color: #dbb089;
    transform: translateY(-3px);
    box-shadow: 0 12px 18px -12px rgba(191, 118, 72, 0.25);
}

.social-links a:hover i {
    transform: scale(1.08);
}

/* responsiveness (PWA + mobile first fine-tune) */
@media (max-width: 680px) {
    .seo-text-block {
        padding: 1.5rem 1.2rem;
        border-radius: 28px;
    }
    .seo-text-block h2 {
        font-size: 1.6rem;
        padding-left: 0.7rem;
    }
    .seo-text-block h3 {
        font-size: 1.35rem;
        margin-top: 1.4rem;
    }
    .seo-text-block ul {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .seo-text-block ul li {
        font-size: 0.95rem;
        padding: 0.7rem 0.7rem 0.7rem 2.2rem;
    }
    .seo-text-block ul li:before {
        top: 0.7rem;
    }
    .social-links {
        gap: 1rem;
        padding: 1.2rem 0.8rem;
    }
    .social-links a {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* medium screens (tablet friendly) */
@media (min-width: 681px) and (max-width: 1024px) {
    .seo-text-block {
        padding: 2rem 2rem;
    }
    .seo-text-block ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* for PWA standalone mode, adjust status bar */
@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* simple subtle divider effect */
hr {
    display: none;
}

/* extra polish for buttons / interaction */
.seo-text-block h3:last-of-type {
    margin-bottom: 0.5rem;
}