* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'PP Fragment Glare';
    src: url('/assets/font/PPFragment-GlareLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Fragment Glare';
    src: url('/assets/font/PPFragment-GlareRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Fragment Glare';
    src: url('/assets/font/PPFragment-GlareExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-yellow: #DAA520;
    --dark-yellow: #B8860B;
    --deep-blue: #1B263B;
    --light-blue: #415A77;
    --cream: #FFF8E7;
    --white: #FFF;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --light-gray: #F8F9FA;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    --font-primary: 'PP Fragment Glare', 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    --text-7xl: 4.5rem;    /* 72px */
    
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    --space-32: 8rem;      /* 128px */
    
    --btn-border-radius: 6px;
    --btn-transition: all 0.2s ease-in-out;
    --btn-font-weight: 600;
    --btn-letter-spacing: 0.025em;
    
    /* Common Transitions */
    --transition-standard: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Common Gradients */
    --gold-gradient: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
}
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-center-y { display: flex; align-items: center; }
.flex-center-x { display: flex; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gold-glossy {
    background: var(--gold-gradient);
    background-size: 300% 300%;
    animation: goldShimmer 4s ease-in-out infinite;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 0 15px rgba(212,175,55,0.3);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0,0,0,0.3);
}
.gold-text {
    color: var(--primary-yellow);
    background: var(--gold-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.2));
    
    will-change: background-position;
    transform: translateZ(0); /* Hardware acceleration */
}
@media (prefers-reduced-motion: reduce) {
    .gold-text,
    .buy-now .buy-now-btn,
    .hero .buy-now-btn {
        animation: none !important;
    }
}
@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--dark-gray);
    overflow-x: hidden;
    background: white;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 24px,
        #f5f5f5 24px,
        #f5f5f5 28px
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 1s ease-in-out;
}
body.stripes-active::before {
    opacity: 1;
    animation: stripeSlide 15s linear infinite;
}
body.stripes-entrance::before {
    opacity: 1;
    animation: stripeEntrance 3s ease-out forwards;
}
@keyframes stripeSlide {
    0% {
        transform: translateX(-28px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes stripeEntrance {
    0% {
        opacity: 0;
        transform: translateX(-28px) scaleX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-28px) scaleX(1);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scaleX(1);
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px - mobile first, better mobile spacing */
}
@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-8); /* 32px - tablet */
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-12); /* 48px - desktop */
    }
}
@media (min-width: 1440px) {
    .container {
        padding: 0 var(--space-16); /* 64px - large desktop */
        max-width: 1400px;
    }
}
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 38, 59, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
    pointer-events: none;
}
.age-modal.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.age-modal.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.age-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-12);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}
.age-modal.hidden .age-modal-content {
    transform: scale(0.8);
}
.age-logo {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-6);
    border-radius: 50%;
}
.age-modal-header h2 {
    font-family: var(--font-secondary);
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
    font-size: var(--text-3xl);
}
.age-modal-header p {
    color: var(--gray);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}
.age-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.age-inputs select {
    padding: var(--space-4);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-gray);
    transition: border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}
.age-inputs select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}
.age-inputs select:hover {
    border-color: var(--dark-yellow);
    background: #f9f9f9;
}
.age-inputs select option {
    padding: var(--space-2);
    background: var(--white);
    color: var(--dark-gray);
}
.age-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.btn-verify, .btn-exit {
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-standard);
}
.btn-verify {
    background: var(--primary-yellow);
    color: var(--deep-blue);
}
.btn-verify:hover {
    background: var(--dark-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(244, 208, 63, 0.4);
    animation: pulse-glow 0.6s ease-in-out;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 15px 35px rgba(244, 208, 63, 0.4); }
    50% { box-shadow: 0 20px 45px rgba(244, 208, 63, 0.6); }
}
.btn-exit {
    background: var(--gray);
    color: var(--white);
}
.btn-exit:hover {
    background: var(--dark-gray);
    transform: translateY(-3px) rotateX(10deg);
    box-shadow: 0 10px 25px rgba(52, 58, 64, 0.3);
}
.age-disclaimer {
    color: var(--gray);
    font-size: 0.9rem;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-standard);
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px - mobile first - matches container */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) {
    .nav-container {
        padding: 0 var(--space-8); /* 32px - tablet */
    }
}
@media (min-width: 1024px) {
    .nav-container {
        padding: 0 var(--space-12); /* 48px - desktop */
    }
}
@media (min-width: 1440px) {
    .nav-container {
        padding: 0 var(--space-16); /* 64px - large desktop */
        max-width: 1400px;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-family: var(--font-primary);
    font-weight: 300;
    color: var(--deep-blue);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}
.logo:hover {
    opacity: 0.8;
    text-decoration: none;
    color: var(--deep-blue);
}
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-6);
    align-items: center;
}
.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 300;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.nav-menu a:hover {
    color: var(--dark-yellow);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    overflow: visible;
}
.nav-actions .buy-now-btn {
    background: var(--primary-yellow);
    border: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    min-height: 44px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-actions .buy-now-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid transparent;
    font-size: var(--text-2xl);
    color: var(--deep-blue);
    cursor: pointer;
    padding: var(--space-2);
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--btn-border-radius);
    transition: var(--btn-transition);
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:hover {
    background: rgba(27, 38, 59, 0.1);
    color: var(--primary-yellow);
}
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}
.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;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-yellow);
    color: var(--deep-blue);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 600;
}
.skip-link:focus {
    top: 6px;
}
.account-btn, .cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.7rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-btn:hover, .cart-btn:hover {
    background: var(--light-gray);
    color: var(--deep-blue);
}
.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 10002;
}
/* Language Selector */
.lang-selector {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    background: var(--light-gray);
    padding: 0.25rem;
    border-radius: var(--btn-border-radius);
}
.lang-btn {
    background: transparent;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.2s ease;
    min-height: 36px;
}
.lang-btn:hover {
    background: rgba(218, 165, 32, 0.1);
    color: var(--dark-yellow);
}
.lang-btn.active {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    font-weight: 600;
}
.lang-selector-mobile {
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
}
.lang-selector-mobile .lang-selector {
    width: 100%;
    max-width: 200px;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    position: relative;
}
.search-container input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1.5rem;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.search-close {
    position: absolute;
    top: 6.5rem;
    right: 3rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}
.search-results {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-6);
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open {
    right: 0;
}
.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
}
.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}
.cart-items {
    flex: 1;
    padding: var(--space-4);
    overflow-y: auto;
}
.empty-cart {
    text-align: center;
    color: var(--gray);
    margin-top: 2rem;
}
.empty-cart i {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}
.cart-item .product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.cart-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.cart-item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin: 0;
}
.cart-item-info p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: 0.5rem;
}
.quantity-btn {
    background: var(--light-gray);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--light-gray);
}
.cart-total {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-align: center;
}
.checkout-btn {
    width: 100%;
    padding: var(--space-4);
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
}
.checkout-btn:hover {
    background: var(--light-blue);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(65, 90, 119, 0.3);
    animation: pulse-scale 0.6s ease-in-out;
}
@keyframes pulse-scale {
    0% { transform: translateY(-4px) scale(1.02); }
    50% { transform: translateY(-6px) scale(1.05); }
    100% { transform: translateY(-4px) scale(1.02); }
}
.cart-checkout {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 2px solid var(--light-gray);
}
.cart-total-display {
    margin-bottom: var(--space-3);
    text-align: center;
    font-size: var(--text-lg);
    color: var(--deep-blue);
}
.main-content {
    margin-top: 84px;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 100vh;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    transition: all 1s ease-in-out;
}
.hero.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}
.hero.main-page {
    position: relative;
    z-index: 1;
}
.body-video-intro .products,
.body-video-intro .about,
.body-video-intro .buy-now,
.body-video-intro .footer {
    display: none;
}
.body-main-page .products,
.body-main-page .about,
.body-main-page .buy-now,
.body-main-page .footer {
    display: block;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
    background: #000;
}
.hero.video-intro #hero-video {
    opacity: 1;
    z-index: 10;
}
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #CD853F 50%, #A0522D 100%);
    z-index: -2;
}
.skip-video-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 15;
    opacity: 0;
    animation: fadeInSkip 2s ease-in-out 3s forwards;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.skip-video-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.skip-video-indicator p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.skip-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}
.hero.main-page .skip-video-indicator {
    display: none;
}
@keyframes fadeInSkip {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
@media (min-aspect-ratio: 16/9) {
    #hero-video {
        width: 100vw;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #hero-video {
        width: auto;
        height: 100vh;
    }
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/photo/landscape_bottle_onsheets_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease;
}
.hero.main-page .hero-bg-image {
    opacity: 1;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    z-index: 10;
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 3rem 2rem;
    /* opacity: 0; */
    transition: opacity 0.5s ease;
}
.hero.video-intro .hero-content {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}
.hero.video-intro .hero-logo,
.hero.video-intro .hero-slogan,
.hero.video-intro .hero-description,
.hero.video-intro .hero-cta,
.hero.video-intro .hero-text-content {
    opacity: 0 !important;
    visibility: hidden !important;
}
.hero.main-page .hero-content {
    opacity: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
}
.hero.main-page .hero-logo,
.hero.main-page .hero-slogan,
.hero.main-page .hero-description,
.hero.main-page .hero-cta,
.hero.main-page .hero-text-content {
    opacity: 1 !important;
    visibility: visible !important;
}
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-img {
    width: 400px;
    height: auto;
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 90%;
}
.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}
.hero-slogan h1,
.hero-slogan h2 {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    color: black;
    letter-spacing: 1px;
}
.hero-slogan h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}
.hero-slogan h2 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: var(--space-6);
    line-height: 1.4;
}
.hero-description {
    opacity: 0;
}
.hero-description p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    margin: 0;
}
.hero-cta {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
    background-size: 300% 300%;
    animation: goldShimmer 4s ease-in-out infinite;
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    opacity: 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(241, 196, 15, 0.4) 50%,
        transparent 100%
    );
    transition: left 0.7s ease-out;
}
.hero-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
}
.hero-cta:hover::before {
    left: 100%;
}
.hero-cta:hover::after {
    width: 100%;
    background: white;
}
.hero-cta:hover {
    background: rgba(241, 196, 15, 0.9);
    border-bottom: 3px solid transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(241, 196, 15, 0.4);
    animation: story-glow 1.5s ease-in-out infinite;
}
@keyframes story-glow {
    0%, 100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.3),
            0 5px 15px rgba(241, 196, 15, 0.4);
    }
    50% {
        box-shadow: 
            0 20px 45px rgba(0, 0, 0, 0.4),
            0 8px 25px rgba(241, 196, 15, 0.6);
    }
}
.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(50px);
    letter-spacing: 1px;
    line-height: 1.3;
}
.body-main-page .section-title {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.body-main-page .product-card[style*="opacity: 0"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.body-main-page .product-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.products {
    padding: 6rem 0;
    background: transparent;
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.product-filters {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--gray);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-standard);
    font-weight: 500;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--deep-blue);
    transform: scale(1.1);
    border-radius: 50px;
    animation: morph-ripple 0.8s ease-out;
    position: relative;
    overflow: hidden;
}
.filter-btn:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-expand 0.6s ease-out;
}
@keyframes morph-ripple {
    0% { 
        transform: scale(1);
        border-radius: 25px;
    }
    50% { 
        transform: scale(1.15);
        border-radius: 35px;
    }
    100% { 
        transform: scale(1.1);
        border-radius: 50px;
    }
}
@keyframes ripple-expand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-standard);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 15px;
    margin-bottom: var(--space-6);
    position: relative;
    overflow: hidden;
}
/* .product-image::before {
    content: '';
    width: 60px;
    height: 35px;
    background: var(--deep-blue);
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
} */
.product-info {
    text-align: center;
}
.product-badge {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}
.product-badge.premium {
    background: var(--warning);
    color: var(--deep-blue);
}
.product-badge.organic {
    background: var(--success);
}
.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: var(--space-2);
}
.product-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    line-height: 1.4;
}
.product-description {
    margin-bottom: var(--space-4);
}
.product-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}
.product-specs {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
    padding: 0.8rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.spec-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
}
.product-actions {
    display: flex;
    gap: var(--space-2);
}
.add-to-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
}
.add-to-cart:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}
.quick-view {
    padding: 0.75rem;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-standard);
}
.quick-view:hover {
    background: var(--primary-yellow);
}
.load-more {
    text-align: center;
}
.load-more-btn {
    padding: var(--space-4) var(--space-8);
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
}
.load-more-btn:hover {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(27, 38, 59, 0.3);
    animation: shake 0.6s ease-in-out;
}
@keyframes shake {
    0%, 100% { transform: translateY(-3px) scale(1.05) rotateZ(0deg); }
    25% { transform: translateY(-3px) scale(1.05) rotateZ(-2deg); }
    75% { transform: translateY(-3px) scale(1.05) rotateZ(2deg); }
}
.about {
    padding: 7rem 0;
    background: transparent;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text .section-title {
    text-align: left;
}
.lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 65ch;
    text-align: justify;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    margin-top: var(--space-8); /* 32px spacing from title */
}
.feature {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}
.feature i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-top: 0.25rem;
}
.feature h4 {
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}
.feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.feature a {
    color: var(--gray);
    text-decoration: none;
}
.feature a:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    height: 400px;
    display: block;
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.buy-now {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}
.buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(90deg, var(--primary-yellow) 0%, transparent 10%, transparent 90%, var(--primary-yellow) 100%),
        linear-gradient(0deg, var(--primary-yellow) 0%, transparent 5%, transparent 95%, var(--primary-yellow) 100%);
    opacity: 0.1;
    z-index: 1;
}
.buy-now .container {
    position: relative;
    z-index: 2;
}
.buy-now-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 2.5rem;
    border: 1px solid var(--primary-yellow);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}
.buy-now-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.product-pricing {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    align-items: flex-start;
}
.price-display {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    font-family: 'Playfair Display', serif;
}
.currency {
    font-size: 1.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}
.price {
    font-size: 3rem;
    color: var(--deep-blue);
    font-weight: 700;
}
.tax-note {
    font-size: 1rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
}
.buy-now .buy-now-btn, .hero .buy-now-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
    background-size: 300% 300%;
    animation: goldShimmer 5s ease-in-out infinite;
    color: var(--deep-blue);
    border: none;
    padding: var(--space-5) var(--space-12); /* 20px 48px - exact same visual spacing */
    border-radius: 50px;
    font-size: var(--text-xl); /* 20px - exact same size */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.1);
    gap: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider); /* 0.05em ≈ 0.5px at this font size */
    
    min-height: auto;
    font-family: var(--font-body);
}
.buy-now .buy-now-btn::before, .hero .buy-now-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        #FFD700 0%,
        #DAA520 50%,
        #B8860B 100%
    );
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.buy-now .buy-now-btn::after, .hero .buy-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 1.2s ease-out;
    z-index: 3;
}
.buy-now .buy-now-btn span, .hero .buy-now-btn span,
.buy-now .buy-now-btn i, .hero .buy-now-btn i {
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
}
.buy-now .buy-now-btn:hover::before, .hero .buy-now-btn:hover::before {
    top: 0;
    animation: liquid-shimmer 2s ease-in-out infinite;
}
.buy-now .buy-now-btn:hover::after, .hero .buy-now-btn:hover::after {
    transform: translateX(100%);
}
.buy-now .buy-now-btn:hover, .hero .buy-now-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
}
@keyframes liquid-shimmer {
    0%, 100% {
        background: linear-gradient(
            180deg,
            #FFD700 0%,
            #DAA520 50%,
            #B8860B 100%
        );
    }
    50% {
        background: linear-gradient(
            180deg,
            #FFED4A 0%,
            #FFD700 50%,
            #DAA520 100%
        );
    }
}
.buy-now .buy-now-btn i, .hero .buy-now-btn i {
    font-size: 1.1rem;
}
.shipping-info {
    font-size: 0.95rem;
    color: var(--gray);
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}
.buy-now-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.bottle-photo {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.bottle-photo:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .buy-now-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .product-pricing {
        align-items: center;
    }
    
    .bottle-photo {
        max-height: 350px;
    }
}
.footer {
    background: #222222;
    color: var(--white);
    padding: 5rem 0 2.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: var(--space-8);
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
    line-height: 1.4;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 1px;
}
.footer-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: 0.95rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.75rem;
}
.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}
.footer-section ul li a:hover {
    color: var(--primary-yellow);
}
.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: 1rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-standard);
}
.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--deep-blue);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-legal span {
    color: var(--gray);
}
.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}
.product-modal, .checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
}
.product-modal.active, .checkout-modal.active {
    opacity: 1;
    visibility: visible;
}
.checkout-modal .modal-content {
    background: var(--white);
    border-radius: 20px;
    width: min(1200px, 95vw) !important;
    max-width: none !important;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    margin: 0 !important;
}
.product-modal.active .modal-content,
.checkout-modal.active .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-standard);
}
.modal-close:hover {
    background: var(--gray);
    color: var(--white);
}
.checkout-form {
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}
.checkout-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: var(--space-8);
    text-align: center;
}
.checkout-sections {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    min-width: 0; /* Prevents grid items from overflowing */
}
.checkout-section {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 0; /* Prevents section from overflowing */
    overflow: hidden;
}
.checkout-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
}
.order-items {
    margin-bottom: var(--space-6);
}
.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}
.order-item:last-child {
    border-bottom: none;
}
.order-totals {
    border-top: 2px solid var(--primary-yellow);
    padding-top: 1rem;
}
.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}
.final-total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--deep-blue);
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}
.checkout-form-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.checkout-form-fields input,
.checkout-form-fields select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}
.checkout-form-fields input:focus,
.checkout-form-fields select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}
.payment-methods {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}
.payment-method {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: var(--transition-standard);
}
.payment-method:hover {
    border-color: var(--primary-yellow);
}
.payment-method input[type="radio"]:checked + span {
    color: var(--deep-blue);
    font-weight: 600;
}
.payment-method input[type="radio"] {
    margin: 0;
}
.credit-card-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}
.age-confirmation,
.terms-agreement {
    margin: 1rem 0;
}
.age-confirmation label,
.terms-agreement label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: 0.9rem;
}
.checkout-submit,
.place-order-btn {
    background: var(--primary-yellow);
    color: var(--deep-blue);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
    width: 100%;
    margin-top: 1rem;
}
.checkout-submit:hover,
.place-order-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.4);
    animation: order-bounce 0.8s ease-in-out;
}
@keyframes order-bounce {
    0% { transform: translateY(-4px) scale(1.03); }
    25% { transform: translateY(-7px) scale(1.06); }
    50% { transform: translateY(-2px) scale(1.01); }
    75% { transform: translateY(-5px) scale(1.04); }
    100% { transform: translateY(-4px) scale(1.03); }
}
@media (max-width: 968px) {
    .checkout-modal .modal-content {
        width: min(95vw, 900px) !important;
    }
    
    .checkout-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .checkout-modal .modal-content {
        width: 95vw !important;
        margin: 0 !important;
    }
    
    .checkout-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkout-form {
        padding: 1rem;
    }
    
    .checkout-section {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}
.success-page {
    padding: 4rem 0;
}
.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}
.success-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}
.success-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}
.next-steps {
    text-align: left;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}
.next-steps h3 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}
.next-steps ul {
    list-style: none;
    padding: 0;
}
.next-steps li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-standard);
    display: inline-block;
}
.btn-primary {
    background: var(--primary-yellow);
    color: var(--deep-blue);
}
.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}
.btn-secondary:hover {
    background: var(--deep-blue);
    color: var(--white);
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: var(--space-4);
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        color: var(--deep-blue);
        text-decoration: none;
        border-bottom: 1px solid rgba(27, 38, 59, 0.1);
        transition: color 0.3s ease;
    }
    
    .nav-menu li a:hover {
        color: var(--primary-yellow);
    }
    
    .nav-menu .nav-actions {
        flex-direction: column;
        gap: var(--space-4);
        margin-top: 2rem;
        width: 100%;
    }
    
    .nav-menu .nav-actions button {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        font-size: 1rem;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-standard);
        z-index: 1000;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
.mobile-menu-toggle {
    position: relative;
    z-index: 1001; /* Above the mobile menu */
}
@media (max-width: 768px) {
    .checkout-sections {
        grid-template-columns: 1fr;
    }
    
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
}
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--space-6);
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero.main-page .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-logo-img {
        width: 300px;
    }
    
    .hero-slogan h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .hero-slogan h2 {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .age-inputs {
        grid-template-columns: 1fr;
    }
    
    .age-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Removed display: none - mobile menu needs to be visible when active */
    
    .hero-buttons {
        justify-content: center;
    }
    
    
    .products-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-filters {
        justify-content: center;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
}
    
    .age-modal-content {
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .age-logo {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
    }

    .age-modal-header h2 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-3);
    }

    .age-modal-header p {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }

    .age-inputs {
        gap: var(--space-3);
        margin-bottom: var(--space-6);
    }

    .age-inputs select {
        padding: var(--space-3);
        font-size: 0.9rem;
    }

    .age-buttons {
        gap: var(--space-3);
        margin-bottom: var(--space-6);
    }

    .btn-verify, .btn-exit {
        padding: var(--space-3) var(--space-6);
        font-size: 0.9rem;
    }

    .age-disclaimer {
        font-size: 0.75rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }


    .footer-legal {
        flex-direction: column;
        gap: var(--space-2);
    }
}
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--primary-yellow);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-yellow);
}
.recipes-page {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
}
.recipes-main {
    margin-top: 64px;
    overflow-x: hidden;
}
.recipes-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, hsla(219, 37.20%, 16.90%, 0.70) 0%, rgba(65, 90, 119, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%),
        url('/assets/photo/barman_offering_trimmed.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.recipes-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    animation: heroContentEntrance 1.5s ease-out forwards;
}
.recipes-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 300;
    margin-bottom: var(--space-6);
    letter-spacing: 3px;
    color: var(--primary-yellow);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite, titleEntrance 1.2s ease-out 0.3s both;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
}
.recipes-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    animation: titleEntrance 1.2s ease-out 0.6s both;
}
.cocktail-recipes {
    padding: 50px 0;
    background: var(--white);
    overflow-x: hidden;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}
.cocktails-grid {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    padding: 0;
    padding-bottom: 3rem;
}
@media (max-width: 768px) {
    .cocktail-recipes .cocktails-grid {
        overflow: hidden;
        padding: 0;
        position: relative;
    }
    
    .cocktails-carousel {
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .cocktail-card {
        flex: 0 0 320px;
        max-width: 320px;
        scroll-snap-align: center;
    }
}
.cocktails-carousel {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    will-change: transform;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: rgba(27, 38, 59, 0.8);
    z-index: 10;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-standard);
    will-change: transform;
}
.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--deep-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.carousel-nav.prev {
    left: 16px;
}
.carousel-nav.next {
    right: 16px;
}
.carousel-nav i {
    transition: var(--transition-standard);
}
.cocktail-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    flex: 0 0 320px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    opacity: 0.6;
    transform: scale(0.85);
    will-change: transform, opacity;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}
.cocktail-card.active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
}
.cocktail-card:not(.active):hover {
    transform: scale(0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.cocktail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cocktail-illustration {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
    position: relative;
}
.cocktail-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}
.cocktail-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ingredients {
    margin-top: 1rem;
}
.cocktail-details h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
    letter-spacing: 1px;
    line-height: 1.4;
}
.cocktail-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--space-2);
}
.ingredients h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
    letter-spacing: 0.5px;
}
.ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ingredients li {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.6;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}
.ingredients li::before {
    content: '•';
    color: var(--primary-yellow);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
    line-height: 1;
}
.ingredients li em {
    color: var(--gray);
    font-style: italic;
}
.kitchen-recipes {
    padding: 100px 0;
    background: var(--light-gray);
}
.recipe-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 5rem;
    margin-top: 3rem;
}
.recipe-category {
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.category-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--deep-blue);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4;
}
.note {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}
.recipe-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.recipe-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--cream);
    border-radius: 15px;
    transition: var(--transition-standard);
}
.recipe-item:hover {
    background: var(--primary-yellow);
    transform: translateX(5px);
}
.recipe-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.recipe-item p {
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}
.recipes-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    color: var(--deep-blue);
    text-align: center;
}
.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--space-4);
    letter-spacing: 1px;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
    background-size: 300% 300%;
    animation: goldShimmer 6s ease-in-out infinite;
    color: var(--deep-blue);
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-standard);
    border: 2px solid var(--primary-yellow);
}
.cta-button:hover {
    background: transparent;
    color: var(--primary-yellow);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    
    .recipes-hero {
        padding: 80px 0 60px;
    }
    
    .recipes-hero-title {
        font-size: 2rem;
    }
    
    .recipes-hero-subtitle {
        font-size: 1rem;
    }
    
    .cocktail-recipes,
    .kitchen-recipes,
    .recipes-cta {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .cocktails-grid .carousel-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
    
    .cocktails-grid .carousel-nav.prev {
        left: 8px;
    }
    
    .cocktails-grid .carousel-nav.next {
        right: 8px;
    }
    
    .cocktails-carousel .cocktail-illustration {
        padding: 0;
        min-height: 180px;
    }
    
    .cocktails-carousel .cocktail-illustration img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .cocktail-details {
        padding: 2rem;
    }
    
    .cocktail-details h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .cocktails-carousel .ingredients li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
        line-height: 1.5;
    }
    
    .cocktails-carousel .ingredients li::before {
        left: 0;
        top: 0.35rem;
        font-size: 1rem;
    }
    
    .recipe-categories {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .recipe-category {
        padding: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    
    .cocktails-grid {
        gap: var(--space-10);
    }
    
    .cocktail-illustration {
        padding: 0;
        min-height: 180px;
    }
    
    .cocktail-illustration img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .cocktail-details {
        padding: 2rem;
    }
    
    .cocktail-details h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .cocktail-description {
        font-size: 0.95rem;
        margin-bottom: var(--space-8);
    }
    
    .ingredients li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .recipe-categories {
        gap: 2rem;
    }
    
    .recipe-category {
        padding: 1.5rem;
    }
    
    .recipe-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .recipe-emoji {
        align-self: center;
    }
}
.story-page {
    background: var(--white);
}
.story-main {
    margin-top: 64px;
}
.story-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    color: var(--deep-blue);
    text-align: center;
}
.story-hero-content {
    position: relative;
    padding: 2rem 0;
}
@keyframes heroContentEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.story-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 300;
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
    color: var(--deep-blue);
}
.story-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: var(--space-4);
    opacity: 0.8;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.hero-accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #F4E19C 0%, #E6D05A 20%, #D4AF37 40%, #C9A96E 60%, #B8860B 80%, #8B6914 100%);
    background-size: 300% 300%;
    animation: goldShimmer 8s ease-in-out infinite;
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    animation: goldShimmer 8s ease-in-out infinite, titleEntrance 1.2s ease-out 0.9s both;
}
.sustainability-page {
    background: var(--white);
}
.sustainability-main {
    margin-top: 64px;
}
.sustainability-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}
.sustainability-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    animation: heroContentEntrance 1.5s ease-out forwards;
}
.sustainability-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 300;
    margin-bottom: var(--space-6);
    letter-spacing: 3px;
    color: var(--dark-gray);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: titleEntrance 1.2s ease-out 0.3s both;
}
.sustainability-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    animation: titleEntrance 1.2s ease-out 0.6s both;
}
.content-placeholder {
    padding: 120px 0;
    text-align: center;
    background: var(--light-gray);
}
.placeholder-content h2 {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: var(--space-4);
    font-family: var(--font-primary);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.placeholder-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.story-section {
    padding: 5rem 0;
    position: relative;
}
.story-section.yuzu-origin {
    padding: 5rem 0;
}
.story-section.shizuoka-yuzu {
    padding: 5rem 0;
}
.story-section.shizuoka-yuzu {
    position: relative;
    overflow: hidden;
    background: url('/assets/photo/yuzu-tree-kawane.jpg') center/cover no-repeat;
}
.story-section.shizuoka-yuzu {
    margin: 2rem 0;
    box-shadow: 
        inset 0 6px 0 rgba(212, 175, 55, 0.4),
        inset 0 12px 0 rgba(255, 255, 255, 0.3),
        inset 0 -6px 0 rgba(212, 175, 55, 0.4),
        inset 0 -12px 0 rgba(255, 255, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.15);
}
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.story-content.reverse {
    grid-template-columns: 1fr 1fr;
}
.story-content.reverse .story-text {
    order: 2;
}
.story-content.reverse .story-image {
    order: 1;
}
.shizuoka-yuzu .story-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.story-text {
    padding: 2rem 0;
}
.shizuoka-yuzu .story-text {
    background: transparent;
    padding: var(--space-12);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 235, 59, 0.3);
    max-width: 600px;
    text-align: left;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
}
.shizuoka-yuzu .story-text h2 {
    color: white;
    margin-bottom: var(--space-6);
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.shizuoka-yuzu .story-text p {
    color: white;
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.shizuoka-yuzu .story-image {
    display: none;
}
.shizuoka-yuzu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 1;
    opacity: 1;
}
.shizuoka-yuzu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
}
.story-text .section-title {
    text-align: left;
    margin-bottom: var(--space-8);
}
.subsection-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-yellow);
    margin-bottom: var(--space-6);
    letter-spacing: 0.5px;
}
.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--space-6);
    text-align: justify;
}
.story-paragraph.highlight {
    font-weight: 400;
    color: var(--dark-gray);
}
.discover-more-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #415a77 0%, #1b263b 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-standard);
    box-shadow: 0 4px 15px rgba(65, 90, 119, 0.3);
}
.discover-more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 90, 119, 0.4);
    background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
    color: white !important;
}
.ninki-logo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}
.ninki-logo-overlay .ninki-logo {
    height: 75px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
@media (max-width: 768px) {
    .ninki-logo-overlay {
        top: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
    }
    
    .ninki-logo-overlay .ninki-logo {
        height: 55px;
    }
}
.story-section.how-its-carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
}
.story-section.how-its-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.08)"/><circle cx="80" cy="40" r="1.5" fill="rgba(212,175,55,0.06)"/><circle cx="40" cy="70" r="1" fill="rgba(212,175,55,0.04)"/></svg>') repeat;
    background-size: 120px 120px;
    opacity: 0.6;
}
.carousel-header {
    text-align: center;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}
.carousel-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
}
.carousel-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}
.carousel-title-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #2c3e50;
    margin-top: 0.3rem;
    position: relative;
}
.carousel-title-switcher::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 2px;
    transition: transform 0.4s ease;
    transform: translateX(0%);
}
.carousel-title-switcher.slide-1::before {
    transform: translateX(100%);
}
.title-option {
    cursor: pointer;
    transition: var(--transition-standard);
    position: relative;
    padding: 0.4rem 1.5rem;
    font-weight: 300;
    z-index: 1;
    flex: 1;
    text-align: center;
    font-family: 'PPFragment Glare Light', var(--font-secondary);
    font-style: normal;
    letter-spacing: 0.5px;
}
.title-option.active {
    color: var(--primary-yellow);
    transform: scale(1.05);
}
.title-option:not(.active) {
    color: #888;
}
.title-option:not(.active):hover {
    color: var(--primary-yellow);
    transform: scale(1.02);
}
.title-divider {
    width: 1px;
    height: 20px;
    background: rgba(212, 175, 55, 0.3);
    align-self: center;
}
.how-its-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}
.carousel-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 2rem;
}
.slide-text {
    z-index: 2;
    position: relative;
}
.slide-subtitle {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 0.8rem;
}
.slide-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 2px;
}
.slide-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.slide-image:hover {
    transform: scale(1.02);
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-navigation {
    text-align: center;
    margin-top: 1rem;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-standard);
}
.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}
.dot:hover {
    background: #d4af37;
}
@media (max-width: 768px) {
    .carousel-title-switcher {
        flex-direction: row;
        gap: 0;
        margin-top: 0.5rem;
    }
    
    .title-option {
        padding: 0.3rem 1rem;
        font-size: 1.2rem;
    }
    
    .title-divider {
        width: 1px;
        height: 16px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 1.5rem;
    }
    
    .slide-image {
        order: -1;
    }
}
.story-image {
    position: relative;
    border-radius: 20px;
}
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    line-height: 0;
}
.yuzu-origin .story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.yuzu-origin .story-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
}
.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 768px) {
    
    .story-hero-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    
    .story-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .story-section {
        padding: 5rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-content.reverse {
        direction: ltr;
    }
    
    .story-text .section-title {
        text-align: center;
        margin-bottom: var(--space-8);
    }
    
    .story-paragraph {
        text-align: left;
        font-size: 1rem;
    }
    
    .story-paragraph.highlight {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }
    
    .story-image img {
        height: 300px;
    }
}
.customer-testimonial {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 0 1rem;
}
.testimonial-quote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}
.testimonial-quote i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: var(--space-4);
}
.testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.testimonial-author {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}
.rating {
    display: flex;
    gap: 0.2rem;
}
.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}
.certifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
@media (max-width: 768px) {
    
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: var(--space-2);
    }
}
@media (max-width: 480px) {
    .customer-testimonial {
        margin-top: 1.5rem;
    }
}
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }
.text-7xl { font-size: var(--text-7xl); }
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }
.tracking-tighter { letter-spacing: var(--tracking-tighter); }
.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }
h1, .h1 {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    font-weight: 600;
    margin-bottom: var(--space-6);
}
h2, .h2 {
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    font-weight: 600;
    margin-bottom: var(--space-5);
}
h3, .h3 {
    font-family: var(--font-secondary);
    font-size: var(--text-3xl);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
    font-weight: 600;
    margin-bottom: var(--space-4);
}
h4, .h4 {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
    font-weight: 600;
    margin-bottom: var(--space-4);
}
h5, .h5 {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-normal);
    font-weight: 600;
    margin-bottom: var(--space-3);
}
h6, .h6 {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-wide);
    font-weight: 600;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
}
p, .p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}
.lead {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    font-weight: 400;
    margin-bottom: var(--space-6);
    text-align: justify;
}
.small {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.m-10 { margin: var(--space-10); }
.m-12 { margin: var(--space-12); }
.m-16 { margin: var(--space-16); }
.m-20 { margin: var(--space-20); }
.m-24 { margin: var(--space-24); }
.m-32 { margin: var(--space-32); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mt-20 { margin-top: var(--space-20); }
.mt-24 { margin-top: var(--space-24); }
.mt-32 { margin-top: var(--space-32); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-20 { margin-bottom: var(--space-20); }
.mb-24 { margin-bottom: var(--space-24); }
.mb-32 { margin-bottom: var(--space-32); }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }
.p-16 { padding: var(--space-16); }
.p-20 { padding: var(--space-20); }
.p-24 { padding: var(--space-24); }
.p-32 { padding: var(--space-32); }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-1); }
.pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-6 { padding-top: var(--space-6); }
.pt-8 { padding-top: var(--space-8); }
.pt-10 { padding-top: var(--space-10); }
.pt-12 { padding-top: var(--space-12); }
.pt-16 { padding-top: var(--space-16); }
.pt-20 { padding-top: var(--space-20); }
.pt-24 { padding-top: var(--space-24); }
.pt-32 { padding-top: var(--space-32); }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-10 { padding-bottom: var(--space-10); }
.pb-12 { padding-bottom: var(--space-12); }
.pb-16 { padding-bottom: var(--space-16); }
.pb-20 { padding-bottom: var(--space-20); }
.pb-24 { padding-bottom: var(--space-24); }
.pb-32 { padding-bottom: var(--space-32); }
.gap-0 { gap: 0; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }
.btn, button[type="button"], button[type="submit"], .cta-button {
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: 2px solid transparent;
    border-radius: var(--btn-border-radius);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--btn-font-weight);
    letter-spacing: var(--btn-letter-spacing);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--btn-transition);
    min-height: 44px; /* Touch target minimum */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.btn:focus,
.btn:focus-visible,
button:focus,
button:focus-visible {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}
.btn-primary, .cta-button {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: white;
    border-color: var(--primary-yellow);
}
.btn-primary:hover, .cta-button:hover {
    background: linear-gradient(135deg, var(--dark-yellow) 0%, #9A7B0A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}
.btn-primary:active, .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
    background: white;
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}
.btn-secondary:hover {
    background: var(--deep-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 38, 59, 0.2);
}
.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn-outline {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}
.btn-outline:hover {
    background: var(--primary-yellow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}
.btn-danger {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}
.btn-danger:hover {
    background: #C82333;
    border-color: #C82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    min-height: 36px;
}
.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    min-height: 52px;
}
.btn-xl {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-xl);
    min-height: 60px;
}
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
.btn:disabled:hover,
.btn.disabled:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn.loading {
    color: transparent;
}
.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.btn-icon {
    padding: var(--space-3);
    min-width: 44px;
}
.btn-icon i {
    font-size: var(--text-lg);
}
.nav-actions .btn,
.nav-actions button {
    min-height: 40px;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}
.account-btn, .cart-btn {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid transparent;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--btn-border-radius);
    transition: var(--btn-transition);
    min-height: 44px;
    min-width: 44px;
    position: relative;
}
.account-btn:hover, .cart-btn:hover {
    background: rgba(27, 38, 59, 0.1);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}
.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    min-width: 18px;
    width: 18px;
    height: 18px;
    font-size: var(--text-xs);
    font-weight: 700;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10002;
}
:root {
    --mobile-max: 480px;
    --tablet-min: 481px;
    --tablet-max: 768px;
    --desktop-min: 769px;
    --desktop-lg-min: 1024px;
    --desktop-xl-min: 1440px;
}
@media (max-width: 1200px) {
    .nav-menu {
        gap: var(--space-5); /* 20px - slightly smaller for medium screens */
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    
    .nav-menu {
        width: min(70vw, 280px);
        gap: var(--space-4); /* 16px - smaller gap for tablet */
    }
    
    h1, .h1 { font-size: var(--text-4xl); }
    h2, .h2 { font-size: var(--text-3xl); }
    h3, .h3 { font-size: var(--text-2xl); }
    
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}
@media (min-width: 769px) and (max-width: 1023px) {
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        height: auto;
        width: auto;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0 var(--space-3);
    }
    
    .nav-actions {
        flex-direction: row;
        margin-top: 0;
        gap: var(--space-3);
    }
    
    .desktop-actions {
        display: flex;
    }
}
@media (min-width: 1024px) {
    
    h1, .h1 { font-size: var(--text-6xl); }
    h2, .h2 { font-size: var(--text-5xl); }
    h3, .h3 { font-size: var(--text-4xl); }
    
    .lead {
        font-size: var(--text-xl); /* 20px instead of 24px for better readability */
    }
}
@media (min-width: 1440px) {
    
    h1, .h1 { font-size: var(--text-7xl); }
    h2, .h2 { font-size: var(--text-6xl); }
}
.nav-menu.active a:first-child {
    margin-top: var(--space-4);
}
@media (max-width: 768px) {
    .btn, button {
        min-height: 48px;
        padding: var(--space-4) var(--space-6);
    }
    
    .btn-sm {
        min-height: 44px;
        padding: var(--space-3) var(--space-5);
    }
    
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}
@media (max-width: 768px) {
    
    h1, h2, h3, h4, h5, h6, p, div {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    h1, .h1 {
        font-size: var(--text-3xl); /* 30px instead of 36px */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-4);
    }
    
    h2, .h2 {
        font-size: var(--text-2xl); /* 24px instead of 30px */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-4);
    }
    
    h3, .h3 {
        font-size: var(--text-xl); /* 20px instead of 24px */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-3);
    }
    
    h4, .h4 {
        font-size: var(--text-lg); /* 18px */
        line-height: var(--leading-normal);
        margin-bottom: var(--space-3);
    }
    
    .section-title {
        font-size: var(--text-2xl); /* 24px instead of 32-45px */
        line-height: var(--leading-tight);
    }
    
    .recipes-hero-title,
    .sustainability-hero-title {
        font-size: var(--text-4xl); /* 36px instead of 56-96px */
        line-height: var(--leading-tight);
    }
    
    .carousel-main-title {
        font-size: var(--text-3xl); /* 30px instead of 40-56px */
        line-height: var(--leading-tight);
    }
    
    .story-hero-title {
        font-size: var(--text-xl); /* 20px - keep smaller for story page */
        line-height: var(--leading-tight);
    }
    
    .lead {
        font-size: var(--text-lg); /* 18px instead of 20px/24px */
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-4);
    }
    
    .content-section,
    .text-content,
    .description,
    .narrative-text,
    .story-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .grid,
    .flex-container {
        max-width: 100%;
        overflow-x: hidden;
    }
}
@media (max-width: 480px) {
    
    .content-section,
    .text-content,
    .description,
    .narrative-text,
    .story-text {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    h1, .h1 {
        font-size: var(--text-2xl); /* 24px for very small screens */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-3);
    }
    
    h2, .h2 {
        font-size: var(--text-xl); /* 20px for very small screens */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-3);
    }
    
    h3, .h3 {
        font-size: var(--text-lg); /* 18px for very small screens */
        line-height: var(--leading-tight);
        margin-bottom: var(--space-2);
    }
    
    h4, .h4 {
        font-size: var(--text-base); /* 16px for very small screens */
        line-height: var(--leading-normal);
        margin-bottom: var(--space-2);
    }
    
    .section-title {
        font-size: var(--text-xl); /* 20px for very small screens */
        line-height: var(--leading-tight);
    }
    
    .recipes-hero-title,
    .sustainability-hero-title {
        font-size: var(--text-3xl); /* 30px for very small screens */
        line-height: var(--leading-tight);
    }
    
    .carousel-main-title {
        font-size: var(--text-2xl); /* 24px for very small screens */
        line-height: var(--leading-tight);
    }
    
    .story-hero-title {
        font-size: var(--text-lg); /* 18px for very small screens */
        line-height: var(--leading-tight);
    }
    
    .lead {
        font-size: var(--text-base); /* 16px for small mobile devices */
        line-height: var(--leading-normal);
        margin-bottom: var(--space-3);
    }
}
.how-to-cards {
    display: flex;
    gap: var(--space-4);
    margin: var(--space-6) 0;
    justify-content: center;
}
.how-to-card {
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 12px;
    padding: var(--space-4) var(--space-3);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-standard);
    min-width: 120px;
    max-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.how-to-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(218, 165, 32, 0.15);
}
.how-to-card i {
    font-size: var(--text-xl);
    color: var(--primary-yellow);
    margin-bottom: var(--space-2);
    display: block;
}
.how-to-card h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--deep-blue);
    margin: 0;
    font-family: var(--font-primary);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    color: var(--deep-blue);
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.modal-header h3 i {
    color: var(--primary-yellow);
}
.close {
    color: var(--gray);
    font-size: var(--text-2xl);
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: var(--space-1);
    border-radius: 4px;
    transition: all 0.2s ease;
}
.close:hover {
    color: var(--deep-blue);
    background-color: var(--cream);
}
.modal-body {
    padding: var(--space-4) var(--space-6) var(--space-6);
}
.modal-body p {
    margin-bottom: var(--space-3);
    line-height: var(--leading-relaxed);
    color: var(--dark-gray);
}
.modal-body p:last-child {
    margin-bottom: 0;
}
.modal-body ul {
    margin: var(--space-3) 0;
    padding-left: var(--space-5);
}
.modal-body li {
    margin-bottom: var(--space-2);
    line-height: var(--leading-relaxed);
    color: var(--dark-gray);
}
.modal-body strong {
    color: var(--deep-blue);
    font-weight: 600;
}
@media (max-width: 480px) {
    .how-to-cards {
        gap: var(--space-3);
        margin: var(--space-4) 0;
    }
    
    .how-to-card {
        padding: var(--space-3) var(--space-2);
        min-width: 100px;
        max-width: 120px;
    }
    
    .how-to-card h4 {
        font-size: var(--text-xs);
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
}
/* ======================
   NOTIFICATION SYSTEM
   ====================== */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}
.notification {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    overflow: hidden;
    transform: translateX(100%);
    transition: var(--transition-standard);
    animation: slideIn 0.3s ease forwards;
    border-left: 4px solid var(--primary-yellow);
}
.notification-success {
    border-left-color: #10b981;
}
.notification-error {
    border-left-color: #ef4444;
}
.notification-warning {
    border-left-color: #f59e0b;
}
.notification-info {
    border-left-color: var(--primary-blue);
}
.notification-content {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}
.notification-content i {
    font-size: 18px;
    flex-shrink: 0;
}
.notification-success .notification-content i {
    color: #10b981;
}
.notification-error .notification-content i {
    color: #ef4444;
}
.notification-warning .notification-content i {
    color: #f59e0b;
}
.notification-info .notification-content i {
    color: var(--primary-blue);
}
.notification-message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
}
.notification-close {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background-color 0.2s;
}
.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.2s ease;
}
.confirmation-dialog {
    background: var(--white);
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.2s ease;
}
.confirmation-content {
    padding: 32px;
    text-align: center;
}
.confirmation-content i {
    font-size: 48px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}
.confirmation-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.prompt-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 24px;
    transition: border-color 0.2s;
}
.prompt-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}
.confirmation-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.confirmation-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary {
    background: var(--background-secondary);
    color: var(--text-primary);
}
.btn-secondary:hover {
    background: var(--border-color);
}
.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-primary);
}
.btn-primary:hover {
    background: var(--accent-gold);
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 640px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        margin-bottom: 8px;
    }
    
    .notification-content {
        padding: 12px;
        gap: 8px;
    }
    
    .notification-message {
        font-size: 13px;
    }
    
    .confirmation-dialog {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .confirmation-content {
        padding: 24px 20px;
    }
    
    .confirmation-buttons {
        flex-direction: column;
    }
    
    .confirmation-buttons button {
        width: 100%;
    }
}