/* ========================================
   ЭЛИСТЕЛЬ — elistel.ru
   Цветовая палитра из брендбука
   ======================================== */

:root {
    /* Основные цвета */
    --color-bg: #FAF8F6;
    --color-bg-warm: #FCFAF9;
    --color-beige: #C7B8AA;
    --color-beige-light: #ECE6DE;
    --color-beige-gradient: #D2CDC6;
    --color-gray-light: #B8B6B3;
    --color-gray: #6C6C6C;
    --color-dark: #424242;
    --color-white: #FFFFFF;

    /* Типографика */
    --font-heading: 'Jun', 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Размеры */
    --header-height: 5rem;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (min-width: 992px) {
    html {
        font-size: 0.93vw;
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 17.856px; /* 0.93vw at 1920px */
    }
}

body {
    font-family: var(--font-body);
    font-weight: 200;
    color: var(--color-dark);
    background-color: var(--color-bg);
    line-height: 1.6;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-beige);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-gray);
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--color-gray-light);
}

/* ========================================
   Header
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(250, 248, 246, 0.97);
    box-shadow: 0 1px 0 rgba(199, 184, 170, 0.2);
}

.site-header .container {
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    font-family: 'Jun', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header-on-hero .site-logo {
    color: var(--color-white);
}

.header-on-hero.scrolled .site-logo {
    color: var(--color-dark);
}

.mobile-menu-close,
.main-nav-home {
    display: none;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    position: relative;
    padding: 0.25rem 0;
}

.header-on-hero .main-nav > a,
.header-on-hero .main-nav > .nav-catalog > a {
    color: var(--color-white);
}

.header-on-hero.scrolled .main-nav > a,
.header-on-hero.scrolled .main-nav > .nav-catalog > a {
    color: var(--color-dark);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-dark);
    position: relative;
}

.header-on-hero .header-icon {
    color: var(--color-white);
}

.header-on-hero.scrolled .header-icon {
    color: var(--color-dark);
}

.header-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--color-beige);
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-dark);
    transition: 0.3s ease;
}

.header-on-hero .menu-toggle span {
    background-color: var(--color-white);
}

.header-on-hero.scrolled .menu-toggle span {
    background-color: var(--color-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
}

.hero-section .swiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(66, 66, 66, 0.15) 0%,
        rgba(66, 66, 66, 0.05) 50%,
        rgba(66, 66, 66, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
}

.hero-content .subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.btn-elistel {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.btn-elistel:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-elistel-dark {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

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

.btn-elistel-filled {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.btn-elistel-filled:hover {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
    color: var(--color-white);
}

/* Hero pagination */
.hero-section .swiper-pagination-bullet {
    width: 2rem;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--color-white);
    width: 3rem;
}

/* ========================================
   Section Spacing
   ======================================== */
.section {
    padding: 6rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* ========================================
   Product Card
   ======================================== */
.product-card {
    display: block;
    text-decoration: none;
}

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--color-beige-light);
    margin-bottom: 1rem;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.product-card-img .product-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

.product-card:hover .product-img-main {
    opacity: 0;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: rgba(250, 248, 246, 0.9);
    padding: 0.3rem 0.8rem;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 246, 0.9);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--color-dark);
    fill: none;
    stroke-width: 1.5;
}

.product-card-info {
    text-align: center;
}

.product-card-name {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.product-card-price {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-gray);
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.product-color-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: 1px solid var(--color-beige-light);
}

/* ========================================
   Categories Grid
   ======================================== */
.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.category-card-img {
    aspect-ratio: 6 / 7;
    overflow: hidden;
    background-color: var(--color-beige-light);
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.03);
}

.category-card-name {
    text-align: center;
    padding: 1.2rem 0;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-dark);
    letter-spacing: 0.03em;
}

/* ========================================
   About Section (split layout)
   ======================================== */
.about-section {
    background-color: var(--color-bg-warm);
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.about-text-col .subtitle {
    margin-bottom: 1.5rem;
}

.about-text-col h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.about-text-col p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

.about-signature {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-beige);
    margin-top: 1rem;
}

/* ========================================
   Lookbook / Story Banner
   ======================================== */
.story-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(66, 66, 66, 0.2);
}

.story-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.story-banner-content .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.story-banner-content h2 {
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
}

/* ========================================
   Brand Values
   ======================================== */
.values-section {
    background-color: var(--color-bg);
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ========================================
   Newsletter / Subscribe
   ======================================== */
.newsletter-section {
    background-color: var(--color-beige);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-beige-light);
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-family: 'Jun', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--color-beige);
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-weight: 200;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-links a:hover {
    color: var(--color-beige);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--color-beige-light);
    color: var(--color-gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-beige);
    color: var(--color-beige);
}

.footer-social svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--color-beige-light);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-gray-light);
}

/* ========================================
   Mega Menu (Catalog dropdown)
   ======================================== */
.nav-catalog {
    position: relative;
}

.mega-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-catalog:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-col h5 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
}

.mega-menu-col ul {
    list-style: none;
    padding: 0;
}

.mega-menu-col li {
    margin-bottom: 0.6rem;
}

.mega-menu-col a {
    font-weight: 200;
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0.02em;
}

.mega-menu-col a:hover {
    color: var(--color-beige);
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-beige-light);
    color: var(--color-dark);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ========================================
   Mobile Bottom Navigation
   ======================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-beige-light);
    z-index: 9997;
    justify-content: space-around;
    align-items: center;
    height: 3.5rem;
    padding: 0 0 env(safe-area-inset-bottom);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--color-gray);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.5rem;
    transition: color 0.2s ease;
}

.mobile-nav-item svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

button.mobile-nav-item {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-item.active {
    color: var(--color-dark);
}

.mobile-nav-item:hover {
    color: var(--color-beige);
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 991.98px) {
    html {
        font-size: 16px;
    }

    :root {
        --header-height: 3.5rem;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    /* Header mobile — only logo visible */
    .site-logo {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }

    .header-right {
        display: none;
    }

    .header-inner {
        justify-content: center;
    }

    /* Main nav — hidden, opens from bottom menu button */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 9999;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        font-size: 1.3rem;
        color: var(--color-dark) !important;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .main-nav .mega-menu {
        display: none;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-dark);
        cursor: pointer;
        line-height: 1;
    }

    .main-nav-home {
        display: block;
    }

    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex !important;
    }

    /* Extra padding bottom so content not hidden behind bottom nav */
    .site-footer {
        padding-bottom: 6rem;
    }

    .cookie-banner {
        bottom: 4rem;
    }

    .scroll-top {
        bottom: 5rem;
    }

    /* Hero */
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    .section-lg {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* About */
    .about-text-col {
        padding: 2.5rem 1.5rem;
    }

    /* Story banner */
    .story-banner {
        height: 50vh;
        min-height: 350px;
    }

    .story-banner-content h2 {
        font-size: 2rem;
    }

    /* Newsletter */
    .newsletter-form-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Mega menu - full screen on mobile */
    .mega-menu {
        position: fixed;
        top: var(--header-height);
        bottom: 0;
        overflow-y: auto;
        padding: 2rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about-text-col {
        padding: 2rem 1rem;
    }

    .newsletter-section {
        padding: 3rem 1rem;
    }
}

/* ========================================
   Animations (subtle, on scroll)
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Loading
   ======================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    animation: pulse 2s ease-in-out infinite;
}

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

/* ========================================
   Inline styles moved to CSS
   ======================================== */
.section-new-arrivals {
    background-color: var(--color-bg-warm);
}

.section-values {
    background-color: var(--color-beige-light);
}

.mega-menu-card {
    aspect-ratio: 4 / 3;
}

.mega-menu-card-name {
    font-size: 0.85rem;
}

.newsletter-form {
    flex-direction: column;
    align-items: center;
}

.newsletter-form-row {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 0;
}

.newsletter-consent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 200;
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    accent-color: #fff;
    flex-shrink: 0;
}

.newsletter-consent a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.footer-description {
    font-size: 0.85rem;
    max-width: 300px;
}

.footer-city {
    font-weight: 200;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-bottom a,
.footer-bottom-links a {
    color: var(--color-gray-light);
}

/* ========================================
   Mobile Bottom Navigation
   ======================================== */

/* ========================================
   Cookie Banner (152-ФЗ, 168-ФЗ)
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    padding: 1.5rem 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-inner p {
    font-size: 0.8rem;
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0;
    flex: 1;
}

.cookie-banner-inner p a {
    color: var(--color-beige);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn-accept {
    padding: 0.7rem 1.8rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-dark);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    background: var(--color-beige);
    border-color: var(--color-beige);
}

.cookie-btn-settings {
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-beige-light);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-settings:hover {
    border-color: var(--color-beige);
    color: var(--color-beige);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(66, 66, 66, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--color-white);
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-beige-light);
}

.cookie-modal-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-beige-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option strong {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.cookie-option p {
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-option input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: var(--color-beige);
    cursor: pointer;
}

.cookie-modal-footer {
    padding: 1.2rem 2rem;
    border-top: 1px solid var(--color-beige-light);
    text-align: right;
}

@media (max-width: 991.98px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
