/* --- СБРОС И ОСНОВА --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: #0a0a0a;
    --accent-color: #E3C598; /* Золото */
    --text-white: #ffffff;
    --text-gray: #666666;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    /* min-height removed */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- ШАПКА --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- НАВИГАЦИЯ --- */
/* --- НАВИГАЦИЯ (ЭФФЕКТ ТОЛЬКО ПРИ НАВЕДЕНИИ) --- */

.nav__list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav__link {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white); /* Обычный белый цвет */
    padding: 12px 22px;
    border-radius: 100px;
    transition: all 0.3s ease; /* Плавность для всех изменений */
    display: block;
    background-color: transparent; /* В покое фона нет */
}

/* 1. ЭФФЕКТ ДЛЯ ТОГО ПУНКТА, НА КОТОРЫЙ НАВЕЛИ */
.nav__link:hover {
    background-color: var(--accent-color); /* Золотая плашка */
    color: #000; /* Черный текст на плашке */
    opacity: 1 !important;
}

/* 2. ЛОГИКА ЗАТУХАНИЯ ОСТАЛЬНЫХ */
/* Если мы навели на любую ссылку в списке... */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: 0.3; /* Все остальные становятся прозрачными */
    color: var(--text-gray); /* И серыми */
}

/* 1. ОБЫЧНОЕ СОСТОЯНИЕ ВЫБРАННОГО ПУНКТА */
.nav__link.active {
    background-color: var(--accent-color);
    color: #000;
}

/* 2. ЛОГИКА SPOTLIGHT (При наведении на список) */

/* Как только мы навели мышь на ЛЮБУЮ ссылку в списке... */
.nav__list:has(.nav__link:hover) .nav__link {
    opacity: 0.3; /* Все гаснут (и обычные, и активная) */
    background-color: transparent; /* С активной уходит фон */
    color: var(--text-gray); /* Все становятся серыми */
}

/* ...НО та ссылка, на которую наведена мышь в данный момент, загорается! */
.nav__list .nav__link:hover {
    opacity: 1 !important;
    background-color: var(--accent-color) !important;
    color: #000 !important;
}

/* --- ОСТАЛЬНЫЕ ЭЛЕМЕНТЫ --- */
.header__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__socials {
    display: flex;
    gap: 15px;
}

.social-icon { font-size: 18px; transition: var(--transition); }
.social-icon:hover { color: var(--accent-color); }

.btn-consultation {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-consultation:hover {
    background: var(--accent-color);
    color: #000;
}

/* МОБИЛКА */
.burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.burger span { width: 25px; height: 2px; background: #fff; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: #000; z-index: 999; display: flex; justify-content: center; align-items: center;
    transition: 0.4s;
}
.mobile-menu.active { right: 0; }

@media (max-width: 1100px) {
    .nav, .header__socials { display: none; }
    .burger { display: flex; }
}

/* --- БЛОК HERO --- */
/* --- БЛОК HERO (ВОССТАНОВЛЕННЫЙ) --- */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0d0d0d; /* Глубокий черный фон без сетки */
    overflow: hidden;
}

/* Мягкое золотистое свечение за картинками */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(227, 197, 152, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две колонки: текст слева, фото справа */
    align-items: center;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* --- ЛЕВАЯ ЧАСТЬ (ТЕКСТ) --- */
.hero__content {
    text-align: left;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 197, 152, 0.05);
    border: 1px solid rgba(227, 197, 152, 0.2);
    color: #E3C598;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.hero__title {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
}

.hero__title span {
    display: block;
    color: #E3C598;
}

.hero__description {
    color: #888;
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 45px;
}

/* Кнопки */
.hero__btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

/* Первая: градиент + свечение */
.btn--primary {
    background: linear-gradient(135deg, #a46bb5 0%, #E3C598 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(164, 107, 181, 0.3);
    border: none;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(164, 107, 181, 0.5);
}

/* Вторая: контурная */
.btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn--outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

/* --- ПРАВАЯ ЧАСТЬ (ВИЗУАЛ) --- */
.hero__visual {
    position: relative;
    justify-self: end; /* Сдвигаем строго вправо */
    width: 100%;
    max-width: 550px;
}

/* Контейнер для картинки */
.hero__main-image {
    display: flex;
    justify-content: center; /* Центрируем фото по горизонтали */
    align-items: center;     /* Центрируем по вертикали */
    padding: 20px;          /* Делаем отступ от шапки сайта */
}

/* Сама картинка */
.hero__main-image img {
    width: 100%;
    max-width: 480px;       /* Ограничиваем максимальную ширину, чтобы она не была гигантской */
    height: 580px;          /* Задаем фиксированную высоту */
    object-fit: cover;      /* Фото будет идеально заполнять этот размер, не растягиваясь */
    border-radius: 24px;    /* Скругляем углы, чтобы подходило под стиль сайта */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Добавляем мягкую дорогую тень */
}

.hero__card {
    position: absolute;
    bottom: 20px;
    left: -40px; /* Наплыв на основную картинку */
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero__card-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.hero__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__card-tag {
    font-size: 10px;
    color: #E3C598;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.hero__card-title {
    font-size: 14px;
    color: #fff;
    margin-top: 4px;
}

.hero__card-arrow {
    margin-left: auto;
    color: #E3C598;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        text-align: center;
    }
    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__visual {
        justify-self: center;
        margin-top: 50px;
    }
    .hero__card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

/* --- СЕКЦИЯ ПОДБОРА --- */
/* --- СЕКЦИЯ ПОДБОРА (PREMIUM WHITE & BLACK) --- */
.selection {
    background-color: #ffffff; /* Белый фон вокруг блоков */
    padding: 120px 0;
}

.selection__main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

/* Сетка карточек */
.selection__grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 24px;
}

.selection__card {
    background-color: #0d0d0d;
    border-radius: 30px;
    padding: 50px;
    color: #fff;
    display: flex;
    gap: 40px;
}

/* ЛЕВАЯ КАРТОЧКА */
.selection__card--main {
    align-items: center;
}

.selection__image-side {
    width: 140px;
    flex-shrink: 0;
}

.selection__image-side img {
    width: 100%;
    border-radius: 18px;
    opacity: 0.8;
}

/* Внутренняя сетка левой карточки (чтобы текст не наезжал) */
.selection__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    flex-grow: 1;
    align-items: center;
}

.selection__label {
    color: #E3C598;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.selection__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.selection__subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

/* Кнопка "Рассчитать" */
.btn-calculate {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #000;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-calculate:hover {
    background: #E3C598;
    transform: translateY(-3px);
}

/* БЛОК ПЕЧАТАЮЩЕГОСЯ ТЕКСТА */
.selection__typewriter {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.typewriter-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Жирный шрифт в параметрах */
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4); /* Название параметра приглушено */
}

.typewriter-line span {
    color: #E3C598; /* Значения ярко-золотые */
    margin-left: 6px;
}

.cursor {
    color: #E3C598;
    font-weight: 900;
    font-size: 20px;
    animation: blink 0.8s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ПРАВАЯ КАРТОЧКА */
.selection__card--help {
    flex-direction: column;
    justify-content: center;
}

.help-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.help-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 45px;
}

/* КНОПКИ АВИТО И ТЕЛЕГРАМ */
.help-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-premium {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Экстремально жирно */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 20px 25px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

/* AVITO (Градиент) */
.btn-avito {
    background: linear-gradient(135deg, #a46bb5 0%, #E3C598 100%);
    color: #fff;
    border: none;
}

/* TELEGRAM (Контурная) */
.btn-telegram {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-telegram:hover {
    background: #fff;
    color: #000;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .selection__grid { grid-template-columns: 1fr; }
    .selection__content-grid { grid-template-columns: 1fr; gap: 40px; }
    .selection__card { padding: 40px; }
}
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-calculate:hover { background: #E3C598; }

/* ТАЙВРАЙТЕР (БЕЗ АБСОЛЮТОВ) */
.selection__typewriter {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.typewriter-line {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-bottom: 12px;
    color: #E3C598;
}

.typewriter-line span { color: #fff; }

/* ПРАВАЯ КАРТОЧКА */
.selection__card--help {
    flex-direction: column;
    justify-content: center;
}

.help-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.help-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* КНОПКИ (PREMIUM STYLE) */
.help-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-premium {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Экстремально жирный */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 25px; /* Массивные плашки */
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
}

/* Глубокий графитовый/стальной для Avito */
.btn-avito {
    background-color: #2c333a; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Матовый темно-синий для Telegram */
.btn-telegram {
    background-color: #1a2b3c;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-premium:hover {
    transform: translateY(-3px);
    filter: brightness(1.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* АДАПТИВ */
@media (max-width: 1200px) {
    .selection__grid { grid-template-columns: 1fr; }
    .selection__content-grid { grid-template-columns: 1fr; gap: 40px; }
}
    font-size: 13px;
    margin-bottom: 10px;
    color: #E3C598;
    min-height: 1.2em;
}

.typewriter-line span {
    color: #fff;
}

.cursor {
    animation: blink 0.7s infinite;
    color: #E3C598;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ПРАВАЯ КАРТОЧКА (HELP) */
.selection__card--help {
    flex-direction: column;
    justify-content: center;
}

.help-title {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.help-subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

.help-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-help {
    padding: 18px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-avito {
    background-color: #00AAFF; /* Цвет Авито */
    color: #fff;
}

.btn-telegram {
    background-color: #24A1DE; /* Цвет Телеграм */
    color: #fff;
}

.btn-help:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .selection__grid {
        grid-template-columns: 1fr;
    }
    .selection__card-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .selection__image-side, .selection__content-side, .selection__typewriter-side {
        width: 100%;
    }
}

/* --- РАЗДЕЛ ЭТАПЫ РАБОТЫ --- */
.steps-section {
    background-color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.steps__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Две колонки */
    gap: 60px;
    align-items: start;
}

/* --- ЛЕВАЯ КОЛОНКА --- */
.steps__main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(50px, 8vw, 100px); /* Огромный заголовок */
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 50px;
}

.steps__main-title .accent-text {
    color: #E3C598; /* Наш пудрово-золотой акцент */
}

.steps__image-wrapper {
    display: flex !important;           /* ОБЯЗАТЕЛЬНО: включаем гибкую сетку */
    flex-direction: column !important;  /* Выстраиваем фото вертикально (в колонку) */
    gap: 30px !important;               /* Устанавливаем зазор 30 пикселей */
    margin-top: 40px;                   /* Отступ от заголовка сверху */
    width: 100%;
}

.steps__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px; /* ЗАКРУГЛЕНИЕ КРАЕВ (под стиль карточек) */
    object-fit: cover;
    /* Добавим легкую мягкую тень для объема */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease;
}

/* --- ПРАВАЯ КОЛОНКА (КАСКАД) --- */
.steps__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* Базовые стили карточки */
.step-card {
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    max-width: 600px;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.step-card__text {
    font-size: 15px;
    line-height: 1.6;
}

/* Вариации карточек (лесенка и цвета) */

/* 01 и 04 - Черные */
.step-card--black {
    background-color: #0d0d0d;
    color: #fff;
    margin-left: 0; /* Первая карточка по нулям */
    z-index: 4;
}

/* 02 - Акцентная золотая */
.step-card--accent {
    background-color: #E3C598;
    color: #fff;
    margin-left: 40px; /* Сдвиг вправо */
    z-index: 3;
}

/* 03 - Контурная */
.step-card--outline {
    background-color: transparent;
    border: 2px solid #E3C598;
    color: #000;
    margin-left: 80px; /* Еще больший сдвиг */
    z-index: 2;
    box-shadow: none;
}

/* 04 - Сдвиг для финальной */
.steps__list .step-card:nth-child(4) {
    margin-left: 120px;
    z-index: 1;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1024px) {
    .steps__container {
        grid-template-columns: 1fr; /* В одну колонку */
        gap: 80px;
    }

    .steps__left {
        text-align: center;
    }

    .steps__image-wrapper {
        margin: 0 auto;
    }

    .steps__list {
        align-items: center;
    }

    .step-card {
        margin-left: 0 !important; /* Убираем лесенку на мобильных */
        max-width: 100%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .steps__main-title {
        font-size: 45px;
    }
    
    .step-card__title {
        font-size: 16px;
    }
}

/* --- ГАЛЕРЕЯ НАШИХ СРЕЗОВ --- */
.gallery-section {
    background-color: #ffffff; /* Белый фон вокруг секции */
    padding: 100px 0 140px; /* Большой отступ снизу из-за отражений */
    overflow: hidden;
}

.gallery__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Главный черный контейнер */
.gallery__window {
    background-color: #0d0d0d;
    border-radius: 32px;
    padding: 80px 0 120px; /* Место под отражение снизу */
    overflow: hidden; /* Обрезаем всё, что выходит за границы */
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Лента с фотографиями */
.gallery__track {
    display: flex;
    width: max-content; /* Ширина ленты зависит от кол-ва фото */
    gap: 30px;
    padding: 0 15px;
    animation: scrollInfinite 30s linear infinite; /* Бесконечное движение */
}

/* Остановка при наведении */
.gallery__window:hover .gallery__track {
    animation-play-state: paused;
}

/* Карточка изображения */
.gallery__item {
    width: 280px; /* Ширина фото как на референсе */
    height: 400px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    
    /* Эффект зеркального отражения */
    -webkit-box-reflect: below 15px linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 100%);
    
    transition: transform 0.4s ease;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Фото заполняет карточку без искажений */
    display: block;
}

/* Микро-взаимодействие при наведении */
.gallery__item:hover {
    transform: scale(1.02);
}

/* АНИМАЦИЯ БЕСКОНЕЧНОГО СКРОЛЛА */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Двигаем ленту ровно на половину её длины (так как мы продублировали фото) */
        transform: translateX(-50%);
    }
}

/* ГРАДИЕНТНЫЕ МАСКИ ПО БОКАМ (для плавного появления/исчезновения фото) */
.gallery__window::before,
.gallery__window::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Чтобы маска не мешала наводить на фото */
}

.gallery__window::before {
    left: 0;
    background: linear-gradient(to right, #0d0d0d 10%, transparent);
}

.gallery__window::after {
    right: 0;
    background: linear-gradient(to left, #0d0d0d 10%, transparent);
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 768px) {
    .gallery__window {
        padding: 50px 0 80px;
        border-radius: 24px;
    }
    
    .gallery__item {
        width: 200px;
        height: 300px;
        border-radius: 16px;
    }
    
    .gallery__track {
        animation-duration: 20s; /* На мобилках лучше чуть быстрее */
    }
}


/* --- СОЦИАЛЬНЫЕ СЕТИ --- */
.socials-section {
    background-color: #ffffff;
    padding: 120px 0;
    color: #000;
}

/* Шапка раздела */
.socials__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.socials__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.socials__title span {
    color: #E3C598; /* Акцентный пудрово-золотой */
}

.socials__subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Сетка */
.socials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Базовая карточка */
.socials__card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.socials__card:hover {
    transform: translateY(-10px);
}

/* Специфические углы по референсу */
.socials__card--white {
    background-color: #ffffff;
    border-radius: 24px;
    border-top-left-radius: 80px; /* Сильное скругление слева */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.socials__card--accent {
    background: linear-gradient(135deg, #E3C598 0%, #d4b383 100%);
    color: #ffffff;
    border-radius: 24px;
    border-top-right-radius: 80px; /* Сильное скругление справа */
    box-shadow: 0 25px 50px rgba(227, 197, 152, 0.3);
}

/* Наполнение карточки */
.card__image {
    width: 100px;
    height: 100px;
    margin-bottom: 35px;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card__text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Кнопки */
.btn-social {
    margin-top: auto; /* Прижать к низу */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-social i {
    font-size: 14px;
}

.btn-social--black {
    background-color: #0d0d0d;
    color: #fff;
}

.btn-social--white {
    background-color: #ffffff;
    color: #000;
}

.btn-social:hover {
    padding-right: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1024px) {
    .socials__grid {
        grid-template-columns: 1fr; /* В колонку на мобильных */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .socials__card {
        padding: 40px 30px;
    }
}

/* --- РАЗДЕЛ КОНТАКТЫ (UPGRADED) --- */
.contacts-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative; /* Для позиционирования свечения */
    overflow: hidden;
}

/* Золотистое свечение за картой */
.contacts__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 197, 152, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.contacts__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* --- ТЕКСТОВАЯ КОЛОНКА --- */
.info-item {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(227, 197, 152, 0.3); /* Золотистая разделительная линия */
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.info-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #E3C598;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-text {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.info-phone {
    font-size: clamp(24px, 3vw, 36px); /* Крупнее и жирнее */
    font-weight: 900;
    color: #000;
    transition: var(--transition);
}

.info-phone:hover {
    color: #E3C598;
}

/* Кнопки мессенджеров */
.contacts__socials {
    margin-top: 40px;
}

.socials-btns {
    display: flex;
    flex-direction: column; /* Вертикальный стек */
    gap: 15px;
    width: 100%;
}

.btn-click {
    width: 100%;
    padding: 20px; /* Увеличенные отступы */
    border-radius: 12px; /* Более строгие углы */
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-click--black {
    background-color: #0d0d0d;
    color: #fff;
    border: 1px solid #0d0d0d;
}

.btn-click--outline {
    background-color: transparent;
    color: #000;
    border: 1px solid #E3C598; /* Золотистая рамка */
}

.btn-click:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-click--black:hover {
    background-color: #E3C598;
    border-color: #E3C598;
}

.btn-click--outline:hover {
    background-color: #0d0d0d;
    color: #fff;
    border-color: #0d0d0d;
}

/* --- КАРТА (GLASSMORPHISM) --- */
.contacts__map-wrapper {
    position: relative;
    height: 100%;
}

.contacts__map-container {
    height: 550px;
    background: rgba(13, 13, 13, 0.95); /* Темный полупрозрачный фон */
    backdrop-filter: blur(10px); /* Размытие */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contacts__map-container:hover {
    transform: translateY(-8px); /* Подъем при наведении */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(227, 197, 152, 0.3);
}

.map-placeholder {
    text-align: center;
    color: #fff;
}

.map-icon {
    font-size: 48px;
    color: #E3C598;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(227, 197, 152, 0.5));
}

.map-placeholder span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    opacity: 0.7;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1100px) {
    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contacts__map-container { height: 450px; }
    .contacts__bg-glow { right: -300px; }
}/* --- РАЗДЕЛ КОНТАКТЫ (UPGRADED) --- */
.contacts-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative; /* Для позиционирования свечения */
    overflow: hidden;
}

/* Золотистое свечение за картой */
.contacts__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 197, 152, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.contacts__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* --- ТЕКСТОВАЯ КОЛОНКА --- */
.info-item {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(227, 197, 152, 0.3); /* Золотистая разделительная линия */
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.info-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #E3C598;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-text {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.info-phone {
    font-size: clamp(24px, 3vw, 36px); /* Крупнее и жирнее */
    font-weight: 900;
    color: #000;
    transition: var(--transition);
}

.info-phone:hover {
    color: #E3C598;
}

/* Кнопки мессенджеров */
.contacts__socials {
    margin-top: 40px;
}

.socials-btns {
    display: flex;
    flex-direction: column; /* Вертикальный стек */
    gap: 15px;
    width: 100%;
}

.btn-click {
    width: 100%;
    padding: 20px; /* Увеличенные отступы */
    border-radius: 12px; /* Более строгие углы */
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-click--black {
    background-color: #0d0d0d;
    color: #fff;
    border: 1px solid #0d0d0d;
}

.btn-click--outline {
    background-color: transparent;
    color: #000;
    border: 1px solid #E3C598; /* Золотистая рамка */
}

.btn-click:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-click--black:hover {
    background-color: #E3C598;
    border-color: #E3C598;
}

.btn-click--outline:hover {
    background-color: #0d0d0d;
    color: #fff;
    border-color: #0d0d0d;
}

/* --- КАРТА (GLASSMORPHISM) --- */
.contacts__map-wrapper {
    position: relative;
    height: 100%;
}

.contacts__map-container {
    height: 550px;
    background: rgba(13, 13, 13, 0.95); /* Темный полупрозрачный фон */
    backdrop-filter: blur(10px); /* Размытие */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contacts__map-container:hover {
    transform: translateY(-8px); /* Подъем при наведении */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(227, 197, 152, 0.3);
}

.map-placeholder {
    text-align: center;
    color: #fff;
}

.map-icon {
    font-size: 48px;
    color: #E3C598;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(227, 197, 152, 0.5));
}

.map-placeholder span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    opacity: 0.7;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1100px) {
    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contacts__map-container { height: 450px; }
    .contacts__bg-glow { right: -300px; }
}
.socials-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-click {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-click--dark {
    background-color: #0d0d0d;
    color: #fff;
    border: none;
}

.btn-click--outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #0d0d0d;
}

.btn-click:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-click--outline:hover {
    background-color: #0d0d0d;
    color: #fff;
}

/* --- ПРАВАЯ КОЛОНКА (КАРТА) --- */
.contacts__map-container {
    height: 500px;
    background-color: #0d0d0d; /* Темная подложка карты */
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 15px;
    opacity: 0.6;
}

.map-placeholder i {
    font-size: 40px;
    color: #E3C598;
}

.map-placeholder span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1024px) {
    .contacts__grid {
        grid-template-columns: 1fr; /* В одну колонку */
        gap: 60px;
    }
    
    .contacts__map-container {
        height: 400px;
        order: 2; /* Карта под текстом */
    }

    .contacts__title {
        margin-bottom: 40px;
    }

    .socials-btns {
        flex-direction: column;
    }
}

/* --- ФИНАЛЬНЫЙ ПОДВАЛ (FOOTER) --- */
.footer-section {
    background-color: #0d0d0d; /* Глубокий темный фон */
    padding: 80px 0 60px;
    color: #a0a0a0; /* Приглушенный белый */
    border-radius: 32px 32px 0 0; /* Мягкое скругление сверху */
    margin-top: -30px; /* Небольшой наплыв на предыдущую секцию */
    position: relative;
    z-index: 10;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Первая и последняя колонки шире */
    gap: 40px;
}

/* --- КОЛОНКА 1: БРЕНД --- */
.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer__description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 280px;
}

.footer__copyright {
    font-size: 12px;
    opacity: 0.5;
}

/* --- ЗАГОЛОВКИ КОЛОНОК --- */
.footer__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #E3C598; /* Золотистый акцент */
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* --- СПИСКИ ССЫЛОК --- */
.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 15px;
}

.footer__link {
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
    padding-left: 5px; /* Микро-движение при наведении */
}

/* --- КОНТАКТЫ И КНОПКА --- */
.footer__col--contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 35px;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: #E3C598;
}

.btn-scroll-top {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-scroll-top:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-5px);
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .footer-section {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }
    
    .footer__grid {
        grid-template-columns: 1fr; /* 1 колонка на смартфонах */
        text-align: center;
        gap: 50px;
    }

    .footer__col {
        align-items: center;
    }

    .footer__description {
        margin: 0 auto 30px;
    }

    .btn-scroll-top {
        align-self: center;
    }
}

/* --- СТРАНИЦА КАТАЛОГА (STYLE REF 3) --- */
.catalog-section {
    background-color: #ffffff; /* Светлый фон как на фото */
    padding: 120px 0 80px;
    color: #000;
}

/* Хлебные крошки */
.breadcrumbs {
    font-size: 12px;
    color: #888;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a:hover { color: #000; }
.breadcrumbs span { margin: 0 10px; }

/* Заголовок страницы */
.catalog__main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Сетка карточек */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 карточки в ряд как на фото */
    gap: 20px;
}

/* Карточка товара */
.product-card {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    background-color: #dbe4eb; /* Светло-голубой/серый фон подложки с фото */
    border-radius: 12px;
    aspect-ratio: 1 / 1.2; /* Пропорции как на референсе */
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

/* Инфо под фото */
.product-card__info {
    padding-left: 5px;
}

.product-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #333;
    letter-spacing: 0.5px;
}

.product-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .catalog-grid { grid-template-columns: 1fr; }
}

/* --- СТРАНИЦА ТОВАРА В НАЛИЧИИ --- */
.category-page {
    background-color: #ffffff;
    padding: 120px 0 80px;
}

/* --- ОБНОВЛЕННЫЙ ХЕДЕР КАТЕГОРИИ --- */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.category-header__right {
    text-align: right;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
}

.count-badge {
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

/* --- ПАНЕЛЬ ФИЛЬТРОВ --- */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.filter-select {
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    outline: none;
    cursor: pointer;
}

/* =====================================================
   СТРАНИЦЫ КАТЕГОРИЙ (перенесено из инлайн-стилей)
   ===================================================== */
.category-page {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 140px 0 100px;
}

.category-page h1, .category-page h2, .category-page h3,
.category-page p, .category-page div, .category-page span:not(.item-card__tag) {
    color: #1a1a1a;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.item-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #E3C598;
}

.item-card__media {
    position: relative;
    height: 420px;
    background: #f9f9f9;
    overflow: hidden;
}

.item-card__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.item-card__slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-card__slider img.active {
    opacity: 1;
}

.video-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.item-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.dot {
    width: 30px;
    height: 3px;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #E3C598;
}

.item-card__content-box {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-card__meta {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #E3C598;
    margin-bottom: 10px;
}

.item-card__name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1a1a1a;
}

.item-card__description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.item-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.item-card__price {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
}

.btn-order {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-order:hover {
    background: #E3C598;
    color: #000;
}

@media (max-width: 1024px) {
    .item-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .item-grid { grid-template-columns: 1fr; }
}

/* Мобильное меню — кнопка закрытия */
.mobile-menu__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
