/* ===== DESIGN SYSTEM ===== */
:root {
    /* Colors */
    --color-white: #FEFEFE;
    --color-off-white: #F8F7F4;
    --color-pearl: #F2F0EB;
    --color-light-gray: #E8E6E1;
    --color-mid-gray: #9A9890;
    --color-dark-gray: #4A4A45;
    --color-ink: #1A1A18;
    --color-black: #0D0D0C;

    --color-green: rgba(28, 56, 41, 0.85);
    --color-green-deep: #1C3829;
    --color-green-light: rgba(28, 56, 41, 0.12);
    --color-green-glow: rgba(42, 82, 60, 0.3);

    --color-gold: #C9A96E;
    --color-gold-light: #DFC093;
    --color-gold-shimmer: rgba(201, 169, 110, 0.15);

    /* Typography */
    --font-serif: 'Noto Serif SC', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Layout */
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-off-white);
    color: var(--color-ink);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
}

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

/* ===== DYNAMIC BACKGROUND TEXTURE ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(28, 56, 41, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.02) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: soft-light;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
        height 0.4s var(--ease-out-expo),
        opacity 0.4s var(--ease-out-expo);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, rgba(201, 169, 110, 0.08) 30%, transparent 70%);
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-glow.hover-expand {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.5) 0%, rgba(201, 169, 110, 0.15) 40%, transparent 70%);
    mix-blend-mode: screen;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(248, 247, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-ink);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--color-dark-gray);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width 0.5s var(--ease-out-expo);
    box-shadow: 0 0 8px var(--color-gold-shimmer);
}

.nav-link:hover {
    color: var(--color-ink);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-ink);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(13, 13, 12, 0.4) 100%);
}

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

.hero-title {
    margin-bottom: var(--space-sm);
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 200;
    letter-spacing: 0.08em;
    line-height: 1.2;
    display: inline-block;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(201, 169, 110, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.2));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
}

.hero-scroll-hint {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-scroll-hint span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-ink);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: var(--space-md) auto 0;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-off-white);
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1200px;
}

/* Product Card */
.product-card {
    position: relative;
    height: 400px;
    cursor: pointer;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.product-card.flipped .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front,
.product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

/* Front Face */
.product-card-front {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.product-card:hover .product-card-front {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px var(--color-gold-shimmer);
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    overflow: hidden;
}

.product-image {
    width: 90%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    transition: transform 0.8s var(--ease-out-expo);
}

.product-card:hover .product-image {
    transform: scale(1.03) rotate(0.5deg);
}

.product-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            transparent 40%,
            rgba(201, 169, 110, 0.06) 45%,
            rgba(201, 169, 110, 0.12) 50%,
            rgba(201, 169, 110, 0.06) 55%,
            transparent 60%);
    transform: translateX(-100%) translateY(-100%);
    transition: none;
    pointer-events: none;
}

.product-card:hover .product-shine {
    animation: shineSwipe 1.2s var(--ease-out-expo) forwards;
}

@keyframes shineSwipe {
    from {
        transform: translateX(-100%) translateY(-100%);
    }

    to {
        transform: translateX(100%) translateY(100%);
    }
}

.product-info {
    padding: var(--space-xs) var(--space-sm) var(--space-sm);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-ink);
    margin-bottom: 4px;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* Back Face */
.product-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, var(--color-green-deep) 0%, #0F2218 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.product-back-content {
    text-align: center;
    color: var(--color-white);
}

.product-back-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: var(--space-sm);
}

.product-back-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.product-back-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-md);
}

.product-back-ingredients {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.product-back-ingredients span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    color: var(--color-gold-light);
}

/* ===== NEWS SECTION ===== */
.news-section {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-white);
    z-index: 1;
}

.news-section .section-header {
    position: relative;
    z-index: 2;
}

.news-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto var(--space-xl);
    align-items: center;
    min-height: 500px;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.news-item:hover .news-image {
    transform: scale(1.03);
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 12, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-image-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.news-image-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: imageShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes imageShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.news-content {
    padding: var(--space-lg);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.news-date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-mid-gray);
}

.news-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 4px 12px;
    border: 1px solid var(--color-gold-shimmer);
    border-radius: 2px;
}

.news-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.news-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.news-link:hover {
    gap: 16px;
}

.news-link svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.news-link:hover svg {
    transform: translateX(4px);
}

/* ===== EXPLORE SECTION ===== */
.explore-section {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.explore-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(28, 56, 41, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(28, 56, 41, 0.15) 0%, transparent 50%);
    animation: exploreBgPulse 12s ease-in-out infinite alternate;
}

@keyframes exploreBgPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.explore-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    color: var(--color-white);
}

.explore-content .section-label {
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.explore-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-text {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.explore-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 40px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.explore-cta:hover {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.1);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
    pointer-events: none;
}

.explore-cta:hover .cta-glow {
    width: 300px;
    height: 300px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: var(--color-white);
    display: block;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-nav {
    display: flex;
    gap: var(--space-xl);
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-link-small {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.footer-link-small:hover {
    color: var(--color-gold);
}

/* ===== ANIMATION CLASSES ===== */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo),
        filter 0.8s var(--ease-out-expo);
}

.reveal-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Char animation */
.char-wrapper {
    display: inline-block;
    overflow: hidden;
}

.char-wrapper .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    filter: blur(4px);
}

.char-wrapper .char.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 0.6s var(--ease-out-expo),
        transform 0.6s var(--ease-out-expo),
        filter 0.6s var(--ease-out-expo);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-item-store {
        direction: ltr;
    }

    .news-item-store .news-content {
        order: 2;
    }

    .news-item-store .news-image-wrapper {
        order: 1;
    }

    .news-image-wrapper {
        height: 350px;
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }

    body {
        cursor: auto;
    }

    .cursor-glow {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(248, 247, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s var(--ease-out-expo);
        z-index: 1000;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .product-card {
        height: 480px;
    }

    .news-image-wrapper {
        height: 280px;
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .product-card {
        height: 440px;
    }
}