/* =========================================
   1. RESET & VARIABLES (Premium Feel)
   ========================================= */
:root {
    --bg-body: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent: #c4a060; /* Gold/Merino Premium */
    --accent-dark: #a0824d;
    --black: #111111;
    --white: #ffffff;
    --footer-bg: #0a0a0a; /* Еще темнее */
    
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --container-width: 1320px;
    --section-spacing: 120px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-gold: 0 10px 30px rgba(196, 160, 96, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
}

section { padding: var(--section-spacing) 0; }

h1, h2, h3, h4 { color: var(--text-main); font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; }
h1 { font-size: clamp(42px, 6vw, 82px); font-weight: 800; }
h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px;}
h3 { font-size: 24px; margin-bottom: 15px; }
p { margin-bottom: 25px; max-width: 700px; font-size: 16px; color: var(--text-muted); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* BUTTONS (Premium Styling) */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 45px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition-smooth);
    position: relative; overflow: hidden; z-index: 1; border-radius: 4px;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--accent); transition: var(--transition-smooth); z-index: -1;
}
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { color: var(--black); border-color: var(--accent); box-shadow: var(--shadow-gold); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--black); color: var(--white); }

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 25px 0; background: transparent; transition: 0.4s;
}
header.scrolled {
    background: rgba(255,255,255,0.98); padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 900; letter-spacing: -1px; color: var(--black); text-transform: uppercase; }

.desktop-menu ul { display: flex; gap: 45px; }
.desktop-menu a {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    position: relative; padding-bottom: 5px;
}
.desktop-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-menu a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 30px; }

/* --- НОВАЯ КРУТАЯ КНОПКА В ХЕДЕРЕ --- */
.header-btn {
    padding: 12px 32px;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 800;
    background: var(--accent); /* Золотой фон сразу */
    color: var(--black);
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.header-btn:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 160, 96, 0.5); /* Золотое свечение */
}

.lang-switch a { font-size: 12px; font-weight: 700; opacity: 0.5; }
.lang-switch a.active { opacity: 1; color: var(--accent); }

/* === CURRENCY SWITCHER === */
.currency-switch {
    position: relative;
    user-select: none;
}
.currency-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid rgba(0,0,0,0.15);
    padding: 6px 12px; border-radius: 4px;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    cursor: pointer; color: var(--black);
    transition: 0.2s;
}
.currency-toggle:hover { border-color: var(--accent); color: var(--accent-dark); }
.currency-toggle .cur-arrow { font-size: 10px; opacity: 0.6; }

.currency-list {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #fff; min-width: 110px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px; padding: 4px 0;
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(-5px);
    transition: 0.2s;
    z-index: 1100;
}
.currency-switch.open .currency-list { opacity: 1; visibility: visible; transform: translateY(0); }
.currency-list li a {
    display: block; padding: 10px 16px;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    color: var(--text-main); transition: 0.2s;
}
.currency-list li a:hover { background: #f9f9f9; color: var(--accent-dark); }
.currency-list li a.active { color: var(--accent); background: #faf6ee; }

/* Плавность смены цены при переключении валюты */
.price-display { transition: opacity 0.2s; }

/* =========================================
   4. SECTIONS DESIGN
   ========================================= */

/* Hero Section */
.hero-section {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white); position: relative; margin-top: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: -1; } /* Чуть темнее для контраста */
.hero-content { max-width: 900px; margin: 0 auto; } /* Центрирование и симметрия текста */
.hero-content h1 { color: var(--white); margin-bottom: 30px; text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero-content p { color: rgba(255,255,255,0.95); font-size: 24px; font-weight: 300; margin: 0 auto 50px; }

/* --- КНОПКА НА БАННЕРЕ (ВИДИМАЯ) --- */
.hero-content .btn {
    background: var(--accent); /* Золотая */
    color: var(--black);
    border-color: var(--accent);
    font-size: 14px;
    padding: 20px 50px;
}
.hero-content .btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Stats Section */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 80px; text-align: center; }
.stat-item h3 { font-size: 64px; color: var(--accent); margin-bottom: 10px; line-height: 1; }
.stat-item p { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

/* Image Break (Parallax) */
.image-break { height: 70vh; background-attachment: fixed; background-size: cover; background-position: center; }

/* --- COLLECTIONS (COMPACT BUTTONS) - НОВЫЙ ДИЗАЙН --- */
.explore-grid {
    display: flex; /* Используем flex для центрирования */
    justify-content: center;
    gap: 30px; /* Расстояние между кнопками */
    margin-top: 60px;
}

.explore-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 60px; /* Компактные размеры */
    background: var(--black); /* Темный фон */
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    border: 2px solid var(--accent); /* Золотая рамка */
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    /* Убираем старые стили для больших картинок */
    height: auto;
    background-image: none !important; 
}

/* Убираем старое затемнение */
.explore-card::before { display: none; }

.explore-card span { position: relative; z-index: 2; }

/* Эффект при ховере - заливка золотом */
.explore-card:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Content Grids (Text + Image) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.benefits-list li {
    margin-bottom: 20px; padding-left: 30px; position: relative; font-weight: 600; font-size: 18px;
}
.benefits-list li::before {
    content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: 900;
}
.img-col { overflow: hidden; box-shadow: var(--shadow-premium); border-radius: 8px; }

/* Reviews */
.reviews-section { background: #f8f8f8; }
.reviews-container { display: flex; gap: 40px; overflow-x: auto; padding: 20px 0 60px; scrollbar-width: none; }
.review-card {
    min-width: 400px; background: var(--white); padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 8px;
}
.stars { color: #FFD700; margin-bottom: 20px; letter-spacing: 3px; }

/* CTA Section */
.cta-section { background: var(--black); color: var(--white); }
.cta-section h2, .cta-section p { color: var(--white); }

/* =========================================
   5. FOOTER (Symmetrical & Clean)
   ========================================= */
footer { background: var(--footer-bg); color: #999; padding: 100px 0 40px; font-size: 14px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Строгая симметрия */
    gap: 50px; margin-bottom: 80px;
}
.footer-col h4 {
    color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 35px;
}
.footer-col p, .footer-col a { color: #aaaaaa; margin-bottom: 15px; display: block; transition: 0.3s; line-height: 1.8;}
.footer-col a:hover { color: var(--accent); }
.footer-form { display: flex; border-bottom: 1px solid #333; margin-top: 25px; }
.footer-form input { background: none; border: none; color: var(--white); flex: 1; padding: 15px 0; outline: none;}
.footer-form button {
    background: none; border: none; color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 12px; cursor: pointer; transition: 0.3s;
}
.footer-form button:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #222; padding-top: 40px; text-align: center; font-size: 12px; opacity: 0.5; }

/* =========================================
   6. EXTRAS (Modal, ScrollToTop, Mobile)
   ========================================= */
/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed; bottom: 40px; right: 40px; z-index: 99;
    width: 50px; height: 50px; background: var(--accent); color: var(--black);
    border: none; border-radius: 50%; font-size: 24px; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold); display: flex; align-items: center; justify-content: center;
}
#scrollTopBtn.show { opacity: 1; visibility: visible; }
#scrollTopBtn:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-5px); }

/* Modal Styling */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-window {
    background: var(--white); padding: 60px; width: 95%; max-width: 550px;
    transform: translateY(50px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
}
.modal-overlay.active .modal-window { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; border: none; background: none;}
.modal-window input, .modal-window textarea {
    width: 100%; padding: 18px; margin-bottom: 20px; background: #f9f9f9; border: 1px solid #eee;
    font-family: inherit; font-size: 15px; transition: 0.3s; border-radius: 4px;
}
.modal-window input:focus { border-color: var(--accent); background: var(--white); outline: none;}

/* Mobile Responsive */
.burger-menu { display: none; }
@media (max-width: 1024px) {
    .desktop-menu, .header-btn, .lang-switch { display: none; }
    .currency-switch { margin-right: 10px; }
    .currency-toggle { padding: 5px 10px; font-size: 11px; }
    .burger-menu { display: block; width: 30px; cursor: pointer; z-index: 1100; }
    .burger-menu span { display: block; height: 2px; background: var(--black); margin-bottom: 6px; }
    
    h1 { font-size: 42px; }
    .hero-section { padding: 150px 0 100px; }
    .hero-content p { font-size: 18px; }
    
    section { padding: 80px 0; }
    .grid-2, .stats-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    
    /* Мобильные кнопки коллекций */
    .explore-grid { flex-direction: column; align-items: center; gap: 20px; }
    .explore-card { width: 100%; max-width: 300px; padding: 20px; }

    .img-col { order: -1; }
}
/* =========================================
   7. INTERNAL PAGES STYLES (Add to bottom)
   ========================================= */

/* Заголовки внутренних страниц */
.page-header {
    padding: 160px 0 80px; /* Отступ сверху для фиксированного хедера */
    text-align: center;
    background: #f8f8fa;
    margin-bottom: 0;
}
.page-header h1 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;}
.page-header p { margin: 0 auto; color: var(--text-muted); font-size: 18px; max-width: 600px; }

/* Карточки адресов (About Us) */
.address-section { background: var(--black); color: var(--white); text-align: center; }
.address-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; margin-top: 50px;
}
.address-card {
    border: 1px solid rgba(255,255,255,0.1); padding: 50px;
    transition: var(--transition-smooth);
}
.address-card:hover { border-color: var(--accent); background: rgba(255,255,255,0.02); }
.address-card h3 { color: var(--white); font-size: 18px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.address-card p { color: #999; margin: 0 auto; font-size: 16px; line-height: 1.8; }

/* Адаптив для адресов */
@media (max-width: 768px) {
    .address-grid { grid-template-columns: 1fr; gap: 30px; }
    .page-header { padding: 120px 0 60px; }
}
/* =========================================
   8. COLLECTIONS PAGE (CATALOG)
   ========================================= */

/* Навигация внутри коллекции (Tabs) */
.collection-tabs {
    display: flex; justify-content: center; gap: 20px;
    margin: -40px auto 60px; /* Поднимаем к заголовку */
    position: sticky; top: 90px; z-index: 90;
    padding: 15px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px);
    border-radius: 50px; border: 1px solid rgba(0,0,0,0.05);
    width: fit-content; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.tab-btn {
    padding: 10px 30px; border-radius: 30px; font-weight: 700; text-transform: uppercase;
    font-size: 12px; letter-spacing: 1px; cursor: pointer; transition: 0.3s;
    color: var(--text-muted); border: 1px solid transparent; background: transparent;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--black); color: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Адаптивная сетка */
    gap: 50px 30px; /* Вертикальный и горизонтальный отступы */
}

/* Карточка товара */
.product-card {
    group; /* Для tailwind-like ховеров, здесь просто контейнер */
    transition: var(--transition-smooth);
}

/* Контейнер картинки */
.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* Модный формат для одежды (вертикальный) */
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 20px;
    border-radius: 4px;
}

.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Оверлей с кнопкой (появляется снизу) */
.product-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0; visibility: hidden;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 30px;
    transition: 0.4s;
}

.overlay-btn {
    background: var(--white); color: var(--black);
    padding: 12px 30px; font-weight: 700; text-transform: uppercase; font-size: 11px;
    letter-spacing: 1px; transform: translateY(20px); transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.overlay-btn:hover { background: var(--accent); color: var(--black); }

/* Эффекты ховера на карточку */
.product-card:hover .product-img-wrap img { transform: scale(1.08); } /* Зум картинки */
.product-card:hover .product-overlay { opacity: 1; visibility: visible; }
.product-card:hover .overlay-btn { transform: translateY(0); }

/* "NEW" бейдж на карточке */
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: var(--black);
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
    padding: 6px 12px; border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(196, 160, 96, 0.35);
    z-index: 2;
}

/* Плавная смена главного фото при выборе цвета */
#mainProductImage { transition: opacity 0.18s ease; }

/* Тексты карточки */
.product-info { text-align: center; }
.product-info h3 { font-size: 16px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.product-info p { 
    font-size: 14px; color: #888; line-height: 1.5; 
    max-width: 90%; margin: 0 auto;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; /* Обрезка текста до 2 строк */
}

/* Мобайл фиксы */
@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
    .collection-tabs { top: 70px; margin-bottom: 40px; }
    .product-overlay { opacity: 1; visibility: visible; background: transparent; padding-bottom: 10px; justify-content: flex-end; padding-right: 10px;}
    .overlay-btn { transform: translateY(0); padding: 8px 15px; font-size: 10px; background: rgba(255,255,255,0.9); }
}
/* =========================================
   9. CONTACT PAGE STYLES
   ========================================= */

/* Основной контейнер-обертка */
.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr; /* Форма шире, инфо уже */
    background: var(--white);
    box-shadow: var(--shadow-premium);
    margin-bottom: 80px;
    overflow: hidden; /* Чтобы фон не вылезал */
}

/* Левая часть: Форма */
.contact-form-area {
    padding: 80px;
    background: var(--white);
}

/* Правая часть: Информация (Темная) */
.contact-info-area {
    background: var(--black);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
/* Золотая линия-акцент слева от темного блока */
.contact-info-area::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 6px; background: var(--accent);
}

/* Стилизация полей ввода (Material/Fashion style) */
.form-group { margin-bottom: 40px; position: relative; }

.form-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: var(--text-main);
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition-smooth);
    border-radius: 0; /* Убираем скругление iOS */
}

.form-input:focus {
    border-bottom-color: var(--black);
}

.form-label {
    position: absolute;
    top: 15px; left: 0;
    font-size: 14px; color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease;
}

/* Эффект: когда поле в фокусе или заполнено, лейбл улетает вверх */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Инфо-список */
.info-list { margin-top: 40px; }
.info-item { margin-bottom: 30px; }
.info-item h4 { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; opacity: 0.8; }
.info-item p { color: var(--white); margin: 0; font-size: 16px; line-height: 1.6; }
.info-item a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.2); }
.info-item a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Карта (Черно-белая) */
.map-section { height: 450px; width: 100%; filter: grayscale(100%) contrast(1.2); transition: 0.5s; }
.map-section:hover { filter: grayscale(0%); } /* Цветная при наведении */

/* Адаптив Контактов */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-area, .contact-info-area { padding: 50px 30px; }
    .contact-info-area::before { width: 100%; height: 6px; bottom: auto; left: 0; top: 0; } /* Линия сверху */
}
/* =========================================
   10. SINGLE PRODUCT PAGE
   ========================================= */

.product-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    margin-bottom: 80px; align-items: start;
}

/* Левая колонка - Фото */
.product-gallery {
    position: sticky; top: 100px;
    background: #f4f4f4; border-radius: 8px; overflow: hidden;
}

/* Правая колонка - Инфо */
.product-details h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; line-height: 1.1; }

/* Рейтинг */
.rating-block { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.stars-lg { color: #FFD700; font-size: 18px; letter-spacing: 2px; }
.review-count { font-size: 13px; color: var(--text-muted); text-decoration: underline; }

/* Описание */
.product-desc { font-size: 16px; line-height: 1.6; color: #555; margin-bottom: 30px; }

/* Свотчи (Общие стили) */
.swatch-group { margin-bottom: 25px; }
.swatch-label { font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.swatch-container { display: flex; flex-wrap: wrap; gap: 10px; }

/* Текстовые свотчи (Плотность, Размер) */
.swatch-btn {
    padding: 10px 20px; border: 1px solid #e0e0e0; background: var(--white);
    font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.2s;
    min-width: 50px; text-align: center;
}
.swatch-btn:hover, .swatch-btn.active {
    border-color: var(--black); background: var(--black); color: var(--white);
}

/* Цветные свотчи */
.color-btn {
    width: 35px; height: 35px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer; position: relative; transition: 0.2s;
}
.color-btn:hover { transform: scale(1.1); }
.color-btn.active::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1px solid var(--black);
}

/* Цена на первом экране */
.main-price { font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 30px; }

/* Таблица цен внизу */
.price-table-section { background: #f9f9f9; padding: 60px 0; border-top: 1px solid #eee; }
.custom-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-premium); }
.custom-table th, .custom-table td {
    padding: 15px 25px; text-align: left; border-bottom: 1px solid #eee;
}
.custom-table th { background: var(--black); color: var(--white); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.custom-table tr:last-child td { border-bottom: none; }
.custom-table tr:hover td { background: #fcfcfc; }
.price-col { font-weight: 700; color: var(--accent-dark); text-align: right !important; }

/* Адаптив */
@media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
}