        :root {
            --bg-color: #ffffff;
            --text-main: #000000;
            --text-light: #666666;
            --border-color: #e6e6e6;
            --accent: #000000;
        }

        body { margin: 0; font-family: 'Montserrat', sans-serif; color: var(--text-main); background-color: var(--bg-color); line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }

        /* Верхняя панель */
        .top-bar {
            background-color: #ffffff;
            padding: 10px 20px;
            display: flex;
            justify-content: center;
            gap: 25px;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-color);
        }
        .top-bar a { display: flex; align-items: center; gap: 8px; transition: opacity 0.3s; }
        .top-bar a:hover { opacity: 0.6; }
        
        /* Иконки мессенджеров: нейтральные линейные иконки (без брендовых логотипов) */
        .icon-messenger { 
            width: 20px; 
            height: 20px; 
            object-fit: contain;
            filter: grayscale(100%);
        }

        /* Шапка (Белая с черным текстом) */
        .header { 
            text-align: center; 
            padding: 20px 20px; 
            background: #ffffff; 
            color: #000000; 
            position: sticky; 
            top: 0; 
            z-index: 100; 
            border-bottom: 1px solid var(--border-color); 
        }
        .logo { font-family: 'Playfair Display', serif; font-size: 26px; letter-spacing: 2px; text-transform: uppercase; }
        .logo span { font-size: 12px; display: block; letter-spacing: 4px; color: #666666; font-family: 'Montserrat', sans-serif; margin-top: 5px; }

        /* Выпадающее меню шапки (мега-меню) */
        .menu-toggle {
            position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
            width: 40px; height: 40px; padding: 0; border: none; background: none; cursor: pointer;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
            z-index: 2;
        }
        .menu-toggle span { display: block; width: 22px; height: 1px; background: #000000; transition: transform 0.3s ease, opacity 0.3s ease; }
        .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

        .site-menu-panel {
            position: absolute; top: 100%; left: 0; width: 100%;
            background: #000000; color: #ffffff;
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
            z-index: 99;
        }
        .site-menu-panel.open { max-height: 420px; }
        .site-menu-container {
            max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 80px;
            padding: 40px 20px 48px;
        }
        .site-menu-column h4 {
            color: #ffffff; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400;
            margin: 0 0 18px; text-transform: uppercase; letter-spacing: 1px;
        }
        .site-menu-column ul { list-style: none; margin: 0; padding: 0; }
        .site-menu-column ul li { margin-bottom: 12px; }
        .site-menu-column ul li a { color: #aaaaaa; font-size: 13px; letter-spacing: 0.3px; transition: color 0.3s; cursor: pointer; }
        .site-menu-column ul li a:hover { color: #ffffff; }
        .site-menu-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.35);
            opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 98;
        }
        .site-menu-overlay.open { opacity: 1; pointer-events: auto; }
        @media (max-width: 768px) {
            .site-menu-panel.open { max-height: 520px; }
            .site-menu-container { flex-direction: column; gap: 32px; padding: 32px 24px 40px; }
        }

        /* Видео Баннер */
        .main-banner { width: 100%; height: 80vh; min-height: 500px; position: relative; overflow: hidden; background-color: #f5f5f5; }
        .hero-video { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }

        /* Карусель на главном баннере — 3 фото на весь экран, без пустых полей */
        .hero-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; }
        .hero-carousel-desktop { cursor: grab; user-select: none; }
        .hero-carousel-desktop.is-dragging { cursor: grabbing; }
        .hero-track { position: relative; width: 100%; height: 100%; }
        .hero-slide {
            position: absolute; top: 0; height: 100%;
            width: 33.34%;
            border-right: 1px solid rgba(255,255,255,0.4);
            transition: left 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
        }
        .hero-carousel-desktop.is-dragging .hero-slide { transition: opacity 0.5s ease; }
        .hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; color: transparent; -webkit-user-drag: none; user-select: none; }
        .hero-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,0.85); border: 1px solid var(--border-color);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 10; font-size: 20px; color: var(--text-main); line-height: 1;
            transition: background 0.3s;
        }
        .hero-arrow:hover { background: #ffffff; }
        .hero-arrow-left { left: 24px; }
        .hero-arrow-right { right: 24px; }

        .hero-carousel-mobile { display: none; }
        .hero-mobile-track { position: relative; width: 100%; height: 100%; }
        .hero-mobile-slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0; transition: opacity 0.6s ease; color: transparent;
        }
        .hero-mobile-slide.active { opacity: 1; }
        .hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
        .hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.55); border: none; padding: 0; cursor: pointer; transition: background 0.3s, transform 0.3s; }
        .hero-dot.active { background: #ffffff; transform: scale(1.3); }

        @media (max-width: 768px) {
            .hero-carousel-desktop { display: none; }
            .hero-carousel-mobile { display: block; }
        }

        /* Мудборд */
        .moodboard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 5px; margin-bottom: 60px; }
        .moodboard a { display: block; overflow: hidden; height: 350px; background-color: #f0f0f0; }
        .moodboard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(100%); color: transparent; }
        .moodboard a:hover img { transform: scale(1.05); filter: grayscale(0%); }

        /* Каталог */
        .section-title { text-align: center; margin: 30px 0 40px; }
        .section-title h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 36px; font-style: italic; margin: 0; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

        /* Бегущая строка под hero — тонкая, монохромная, без лишнего шума */
        .marquee { background: #000000; color: #ffffff; overflow: hidden; padding: 12px 0; }
        .marquee-track { display: flex; width: max-content; animation: marquee-scroll 22s linear infinite; }
        .marquee-item {
            font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
            white-space: nowrap; padding: 0 28px; flex-shrink: 0;
        }
        .marquee-item::after { content: '◆'; margin-left: 28px; font-size: 7px; vertical-align: middle; opacity: 0.5; }
        @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        @media (prefers-reduced-motion: reduce) {
            .marquee-track { animation: none; overflow-x: auto; }
        }

        .catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; align-items: stretch; }
        .product-card { background: #ffffff; padding: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.04); border-radius: 4px; border: 1px solid var(--border-color); display: flex; flex-direction: column; height: 100%; }
        .image-wrapper { position: relative; width: calc(100% + 40px); margin: -20px -20px 20px -20px; height: 560px; overflow: hidden; border-radius: 4px 4px 0 0; background-color: #ffffff; flex-shrink: 0; cursor: pointer; }
        .image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: opacity 0.4s ease; color: transparent; }
        .photo-slide { opacity: 0; }
        .photo-slide.active { opacity: 1; }

        /* Точки-пагинация фото карточки товара — видны всегда (не только при наведении) */
        .photo-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
        .photo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.6); padding: 0; cursor: pointer; transition: background 0.3s, transform 0.3s; }
        .photo-dot.active { background: var(--text-main); transform: scale(1.3); }

        /* Стрелки навигации по фото — тот же язык, что у карусели на главной,
           только компактнее под размер карточки. Видны при наведении на
           десктопе; на телефоне их прячем совсем — там свайп + подсказка. */
        .photo-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 34px; height: 34px; border-radius: 50%;
            background: rgba(255,255,255,0.85); border: 1px solid var(--border-color);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 6; font-size: 16px; color: var(--text-main); line-height: 1;
            opacity: 0; transition: opacity 0.25s ease, background 0.25s ease;
        }
        .image-wrapper.multi-photo:hover .photo-arrow { opacity: 1; }
        .photo-arrow:hover { background: #ffffff; }
        .photo-arrow-left { left: 10px; }
        .photo-arrow-right { right: 10px; }

        /* Подсказка «смахните» — только на телефоне, только пока фото не листали */
        .swipe-hint {
            display: none;
            position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
            background: rgba(0,0,0,0.6); color: #ffffff; font-size: 10px;
            letter-spacing: 0.5px; text-transform: uppercase;
            padding: 6px 12px; border-radius: 20px; z-index: 6;
            pointer-events: none; opacity: 1; transition: opacity 0.6s ease;
        }

        /* Подпись выбранного цвета под кружками-свайлами */
        .color-label { display: block; font-size: 11px; letter-spacing: 0.3px; color: var(--text-light); margin: -2px 0 16px; }
        /* Плашка «Долями» под ценой — логотип Т-Банка + сумма платежа */
        .installment-box { display: inline-flex; align-self: center; width: fit-content; max-width: 100%; align-items: center; gap: 8px; border: 1px solid var(--border-color); border-radius: 8px; padding: 7px 12px; margin: -14px 0 16px; background: #ffffff; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: border-color 0.2s; }
        .installment-box:hover { border-color: var(--text-main); }
        .installment-logo { height: 12px; width: auto; display: block; flex-shrink: 0; }
        .installment-text { font-size: 12px; color: var(--text-main); white-space: nowrap; padding-left: 8px; border-left: 1px solid var(--border-color); }
        /* Модалка с графиком платежей «Долями» */
        .installment-modal-content { max-width: 460px; width: 92%; padding: 40px 32px; text-align: left; }
        .installment-modal-content h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; margin: 0 0 12px; }
        .installment-modal-subtitle { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0 0 24px; }
        .installment-features { display: flex; gap: 20px; margin-bottom: 24px; }
        .installment-feature { flex: 1; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-main); line-height: 1.35; }
        .installment-feature svg { flex-shrink: 0; }
        .installment-schedule { border: 1px solid var(--border-color); border-radius: 8px; padding: 18px; margin-bottom: 10px; }
        .installment-schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
        .installment-schedule-item { display: flex; flex-direction: column; gap: 4px; }
        .installment-schedule-label { font-size: 11px; color: var(--text-light); }
        .installment-schedule-amount { font-size: 14px; color: var(--text-main); font-weight: 600; }
        .installment-progress { display: block; height: 3px; border-radius: 2px; background: #e5e0da; margin-top: 4px; }
        .installment-progress.filled { background: #000000; }
        .installment-caption { font-size: 11px; color: var(--text-light); margin: 0 0 24px; }
        .installment-modal-content .btn-buy { width: 100%; }
        .installment-footer-link { text-align: center; font-size: 12px; color: var(--text-light); margin: 18px 0 0; }
        .installment-footer-link a { color: var(--text-main); text-decoration: underline; }
        @media (max-width: 480px) {
            .installment-modal-content { padding: 32px 20px; }
            .installment-schedule-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
            .installment-features { flex-direction: column; gap: 12px; }
        }

        /* Лёгкий зум для отдельных фото, где в кадр попадает рукав соседнего снимка */
        .image-wrapper img[src*="japan-blue-2"],
        .image-wrapper img[src*="japan-brown-2"],
        .image-wrapper img[src*="japan-mocco-2"],
        .image-wrapper img[src*="japan-pearl-2"],
        .image-wrapper img[src*="kyoto-pink-2"] {
            transform: scale(1.22);
        }
        .product-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin: 10px 0 6px; min-height: 26px; }
        .product-desc { font-size: 11px; line-height: 1.6; color: var(--text-light); margin: 0 0 16px; padding: 0 6px; min-height: 106px; }
        .product-desc .article { display: block; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); font-size: 10px; margin-bottom: 6px; }
        .price { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }

        .badge-bestseller {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #000000;
            color: #ffffff;
            font-size: 10px;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 2px;
            z-index: 5;
        }

        .favorite-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 6;
            transition: transform 0.2s;
        }
        .favorite-btn:hover { transform: scale(1.1); }
        .favorite-btn svg { width: 24px; height: 24px; fill: none; stroke: #000000; stroke-width: 1.6; transition: fill 0.2s; }
        .favorite-btn.active svg { fill: #000000; }

        .fav-widget {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 150;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .fav-widget-icon, .fav-back-btn {
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .fav-widget-icon:hover, .fav-back-btn:hover { transform: scale(1.06); }
        .fav-widget-icon svg { width: 20px; height: 20px; fill: none; stroke: #000000; stroke-width: 1.6; }
        .fav-widget-icon.has-items svg { fill: #000000; }
        .fav-back-btn svg { width: 18px; height: 18px; fill: none; stroke: #000000; stroke-width: 1.8; }
        .fav-back-btn { display: none; }
        .fav-back-btn.show { display: flex; }
        .favorites-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #000000;
            color: #ffffff;
            font-size: 10px;
            line-height: 1;
            min-width: 16px;
            text-align: center;
            padding: 3px 4px;
            border-radius: 8px;
            display: none;
        }
        .favorites-badge.show { display: inline-block; }
        .fav-tooltip {
            position: absolute;
            top: 50%;
            right: 115%;
            transform: translateY(-50%);
            background: #000000;
            color: #ffffff;
            font-size: 11px;
            padding: 6px 10px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }
        .fav-back-btn:hover .fav-tooltip { opacity: 1; }
        @media (max-width: 480px) {
            .fav-widget { top: 12px; right: 12px; }
            .fav-widget-icon, .fav-back-btn { width: 38px; height: 38px; }
        }

        /* Корзина */
        .cart-modal-content { max-width: 540px; text-align: left; }
        .cart-items { max-height: 45vh; overflow-y: auto; margin: 20px 0; }
        .cart-empty { text-align: center; color: var(--text-light); font-size: 14px; padding: 30px 0; }
        .cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-color); }
        .cart-item:last-child { border-bottom: none; }
        .cart-item-photo { width: 64px; height: 78px; object-fit: cover; border-radius: 3px; background: #f5f5f5; flex-shrink: 0; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-family: 'Playfair Display', serif; font-size: 15px; margin: 0 0 4px; }
        .cart-item-variant { font-size: 12px; color: var(--text-light); margin: 0 0 8px; }
        .cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
        .cart-qty { display: flex; align-items: center; gap: 10px; }
        .cart-qty button { width: 24px; height: 24px; border: 1px solid var(--border-color); background: #fff; cursor: pointer; font-size: 14px; line-height: 1; border-radius: 3px; }
        .cart-qty span { font-size: 13px; min-width: 14px; text-align: center; }
        .cart-item-price { font-size: 13px; font-weight: 600; }
        .cart-item-remove { background: none; border: none; color: var(--text-light); font-size: 18px; cursor: pointer; padding: 0 4px; }
        .cart-item-remove:hover { color: #000; }
        .cart-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--text-main); font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 20px; }
        .cart-actions { display: flex; flex-direction: column; gap: 10px; }
        .btn-cart-secondary { width: 100%; padding: 12px; background: transparent; color: var(--text-light); border: 1px solid var(--border-color); font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; cursor: pointer; position: relative; }
        .cart-consult-link { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 14px; }
        .cart-consult-link a { color: var(--text-main); text-decoration: underline; }
        .cart-back-link { display: inline-block; margin-bottom: 16px; font-size: 12px; color: var(--text-light); cursor: pointer; text-decoration: underline; }

        /* Способ доставки (СДЭК) — только для онлайн-оплаты */
        .delivery-method-block { margin: 4px 0 20px; text-align: left; }
        .delivery-method-title { font-family: 'Montserrat', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin: 0 0 10px; }
        .delivery-option { position: relative; margin-bottom: 10px; }
        .delivery-option input[type="radio"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
        .delivery-option label {
            display: flex; align-items: center; justify-content: space-between; gap: 12px;
            padding: 13px 14px; border: 1px solid var(--border-color); border-radius: 4px;
            cursor: pointer; transition: border-color 0.3s, background 0.3s;
        }
        .delivery-option label:hover { border-color: #999999; }
        .delivery-option input[type="radio"]:checked + label { border-color: var(--text-main); background: #fafafa; }
        .delivery-option-name { font-size: 12px; line-height: 1.4; }
        .delivery-option-price { font-size: 13px; font-weight: 600; white-space: nowrap; }
        .cdek-pvz-picker { margin-top: 10px; }
        .cdek-pvz-selected { font-size: 12px; color: var(--text-light); margin: 10px 2px 0; line-height: 1.5; }
        .cdek-pvz-selected.filled { color: var(--text-main); }
        .courier-address-fields { margin-top: 2px; }
        .courier-address-fields input { margin-top: 0; }
        .courier-address-row { display: flex; gap: 8px; }
        .courier-address-row input { width: auto; flex: 1; min-width: 0; }

        /* Модалка выбора ПВЗ СДЭК — поиск города + список пунктов, без карты */
        .cdek-modal-content { max-width: 640px; width: 95%; max-height: 85vh; padding: 24px; display: flex; flex-direction: column; text-align: left; }
        .cdek-modal-content h2 { font-size: 20px; margin: 0 0 14px; }
        .cdek-city-search { width: 100%; padding: 13px 14px; border: 1px solid var(--border-color); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 14px; box-sizing: border-box; background: #fafafa; }
        .cdek-city-suggestions { position: relative; }
        .cdek-city-suggestions:not(:empty) { border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 4px 4px; margin-top: -1px; }
        .cdek-city-suggestion { padding: 10px 14px; font-size: 13px; cursor: pointer; border-bottom: 1px solid var(--border-color); }
        .cdek-city-suggestion:last-child { border-bottom: none; }
        .cdek-city-suggestion:hover { background: #fafafa; }
        .cdek-city-suggestion .region { color: var(--text-light); font-size: 11px; }
        .cdek-city-suggestion-exact { color: var(--text-light); font-style: italic; }
        .cdek-office-filter { width: 100%; padding: 11px 14px; margin-top: 8px; border: 1px solid var(--border-color); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 13px; box-sizing: border-box; background: #fafafa; }
        .cdek-offices-count { font-size: 11px; color: var(--text-light); margin: 8px 2px 0; }
        .cdek-offices-list { flex: 1; overflow-y: auto; margin-top: 8px; min-height: 0; }
        .cdek-office-card { border: 1px solid var(--border-color); border-radius: 4px; padding: 14px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
        .cdek-office-info { flex: 1; min-width: 0; }
        .cdek-office-address { font-size: 13px; margin: 0 0 4px; }
        .cdek-office-hours { font-size: 11px; color: var(--text-light); margin: 0; }
        .cdek-office-select { width: auto; flex-shrink: 0; white-space: nowrap; }
        .cdek-offices-empty { font-size: 13px; color: var(--text-light); text-align: center; padding: 20px 0; }
        @media (max-width: 768px) {
            .cdek-modal-content { max-height: 92vh; padding: 16px; }
            .cdek-office-card { flex-direction: column; align-items: stretch; }
        }

        .color-selector { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
        .color-btn { width: 22px; height: 22px; border-radius: 50%; border: 1px solid #ddd; cursor: pointer; transition: 0.2s; flex-shrink: 0; }
        .color-btn.active { transform: scale(1.2); box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--text-main); }
        .size-selector { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
        .size-btn { padding: 6px 10px; border: 1px solid var(--border-color); background: transparent; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 11px; transition: 0.3s; }
        .size-btn.active { background: var(--text-main); color: #ffffff; border-color: var(--text-main); }
        .stock-note { display: block; font-size: 11px; color: var(--text-light); margin: 6px 0 0; min-height: 14px; }
        .stock-note.in-stock { color: var(--text-main); }
        .btn-buy { width: 100%; padding: 12px; background: var(--text-main); color: #ffffff; border: none; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; cursor: pointer; transition: 0.3s; margin-top: auto; }
        .btn-buy:hover { background: #333333; }

        /* Футер */
        .footer { background-color: #000000; padding: 60px 20px 20px; font-size: 12px; color: #aaaaaa; border-top: 1px solid #333333; margin-top: 40px; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
        .footer-column { flex: 1; min-width: 200px; }
        .footer-column h4 { color: #ffffff; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-column ul { list-style: none; padding: 0; margin: 0; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul li a { transition: color 0.3s; cursor: pointer; color: #aaaaaa; }
        .footer-column ul li a:hover { color: #ffffff; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid #333333; padding-top: 20px; gap: 15px; color: #666666;}
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: #666666; }
        .footer-legal-note { max-width: 1200px; margin: 12px auto 0; font-size: 10px; line-height: 1.5; color: #555555; }

        /* Модалка */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.95); justify-content: center; align-items: flex-start; z-index: 1000; backdrop-filter: blur(5px); overflow-y: auto; padding: 40px 20px; box-sizing: border-box; }
        .modal-content { background: #ffffff; padding: 50px 40px; width: 90%; max-width: 420px; margin: auto; position: relative; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 1px solid var(--border-color); }
        @media (max-width: 480px) {
            .modal { padding: 24px 12px; }
            .modal-content { padding: 36px 24px; }
        }
        .close-btn { position: absolute; top: 15px; right: 25px; font-size: 30px; cursor: pointer; color: var(--text-main); }
        .order-info-block { background-color: #f9f9f9; border: 1px solid var(--border-color); padding: 15px; margin-bottom: 25px; border-radius: 4px; }
        .order-info-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; margin: 0 0 5px; }
        .order-info-details { font-size: 12px; color: var(--text-light); margin: 0 0 10px; }
        .order-info-material { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; }
        .order-info-desc { font-size: 12px; font-style: italic; color: var(--text-main); margin: 0; border-top: 1px solid var(--border-color); padding-top: 10px; }
        .modal-content input { width: 100%; padding: 15px; margin: 10px 0; border: 1px solid var(--border-color); box-sizing: border-box; font-family: 'Montserrat', sans-serif; font-size: 14px; background: #fafafa; }
        .consent-label { display: flex; align-items: flex-start; gap: 8px; margin: 15px 0; font-size: 11px; line-height: 1.5; color: var(--text-light); cursor: pointer; }
        .consent-label input[type="checkbox"] { width: auto; padding: 0; margin: 3px 0 0; flex-shrink: 0; cursor: pointer; }
        @media (max-width: 768px) {
            .consent-label input[type="checkbox"] { width: 20px; height: 20px; margin-top: 1px; }
        }
        .consent-label a { color: var(--text-main); text-decoration: underline; }
        .consent-label a:hover { opacity: 0.7; }

        /* Адаптив */
        @media (max-width: 1024px) {
            .moodboard { grid-template-columns: repeat(2, 1fr); }
            .catalog { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .catalog { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 12px; }
            .moodboard a { height: 250px; }
            /* На тач-экранах наведения нет — стрелки прячем, вместо них свайп + подсказка */
            .photo-arrow { display: none; }
            .image-wrapper.multi-photo .swipe-hint { display: block; }
        }

        /* ===== Минимальная карточка каталога (фото/название/цена/Долями) ===== */
        .catalog-card-link { display: block; color: inherit; }
        .catalog-card { position: relative; display: flex; flex-direction: column; }
        .catalog-card-image { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 4px; background: #ffffff; }
        .catalog-card-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; transition: transform 0.5s; }
        .catalog-card-link:hover .catalog-card-image img { transform: scale(1.03); }
        .catalog-card .favorite-btn { position: absolute; top: 10px; right: 10px; z-index: 2; }
        .catalog-card .badge-bestseller { position: absolute; top: 10px; left: 10px; z-index: 2; }
        .catalog-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; margin: 14px 0 4px; text-align: center; }
        .catalog-card .price { margin: 0 0 10px; text-align: center; font-size: 14px; }
        .catalog-card .installment-box { align-self: center; margin: -6px 0 0; }
        @media (max-width: 768px) {
            .catalog-card h3 { font-size: 14px; }
            .catalog-card .installment-text { display: none; }
        }

        /* ===== Страница товара (2 колонки: галерея + инфо) ===== */
        .product-detail { max-width: 1100px; margin: 40px auto 80px; padding: 0 20px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; background: none; box-shadow: none; border: none; }
        .product-detail .pd-gallery { position: sticky; top: 90px; }
        .product-detail .image-wrapper { width: 100%; margin: 0; height: 640px; border-radius: 4px; }
        .product-detail .pd-info { text-align: left; display: flex; flex-direction: column; }
        .product-detail .pd-info h1 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; margin: 0 0 6px; }
        .product-detail .pd-info .article { display: block; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
        .product-detail .pd-info .price { text-align: left; font-size: 20px; color: var(--text-main); margin-bottom: 4px; }
        .product-detail .pd-info .installment-box { align-self: flex-start; margin-top: 4px; }
        .product-detail .color-selector, .product-detail .size-selector { justify-content: flex-start; }
        .product-detail .color-label { text-align: left; }
        .product-detail .btn-buy { margin-top: 10px; }
        .pd-sizeguide-link { display: inline-block; font-size: 12px; color: var(--text-light); text-decoration: underline; margin: -8px 0 16px; }
        .pd-sizeguide-link:hover { color: var(--text-main); }
        .pd-accordion { margin-top: 30px; border-top: 1px solid var(--border-color); }
        .pd-accordion-item { border-bottom: 1px solid var(--border-color); }
        .pd-accordion-item summary { list-style: none; cursor: pointer; padding: 16px 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; justify-content: space-between; align-items: center; }
        .pd-accordion-item summary::-webkit-details-marker { display: none; }
        .pd-accordion-item summary::after { content: '+'; font-size: 18px; font-weight: 300; transition: transform 0.2s; }
        .pd-accordion-item[open] summary::after { transform: rotate(45deg); }
        .pd-accordion-item .pd-accordion-body { padding: 0 0 18px; font-size: 13px; line-height: 1.7; color: var(--text-light); }
        .pd-accordion-item .product-desc { font-size: 13px; line-height: 1.7; color: var(--text-light); margin: 0; padding: 0 0 18px; min-height: 0; }
        .pd-accordion-item .product-desc .article { display: none; }
        @media (max-width: 900px) {
            .product-detail { grid-template-columns: 1fr; gap: 20px; margin-top: 10px; }
            .product-detail .pd-gallery { position: static; }
            .product-detail .image-wrapper { height: 480px; }
        }

        /* ===== «Вам может понравиться» ===== */
        .also-like { max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
        .also-like h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; text-align: center; margin: 0 0 30px; }
        .also-like-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .also-like-grid .catalog-card-image { aspect-ratio: 3 / 4; }
        @media (max-width: 640px) { .also-like-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

        /* ===== Блок «О нас» ===== */
        .about-block { background: #ffffff; padding: 48px 20px 56px; text-align: center; }
        .about-block-inner { max-width: 720px; margin: 0 auto; }
        .about-block-lead { font-family: 'Playfair Display', serif; font-style: italic; font-size: 19px; line-height: 1.7; color: #000000; margin: 0 0 28px; }
        .about-block-lead:last-child { margin-bottom: 0; }
        @media (max-width: 640px) {
            .about-block { padding: 36px 20px 40px; }
            .about-block-lead { font-size: 16px; }
        }

        /* ===== Плавающая кнопка быстрого перехода в Telegram-чат ===== */
        .telegram-quick-btn { position: fixed; left: 20px; bottom: 20px; width: 52px; height: 52px; border-radius: 50%; background: #229ED9; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); z-index: 90; transition: transform 0.2s; }
        .telegram-quick-btn:hover { transform: scale(1.06); }
        .telegram-quick-btn svg { width: 26px; height: 26px; fill: #ffffff; }
        @media (max-width: 768px) { .telegram-quick-btn { left: 14px; bottom: 14px; width: 46px; height: 46px; } .telegram-quick-btn svg { width: 22px; height: 22px; } }
