/* ==========================================================================
   Tahira Bliss - Premium CSS Design System
   ========================================================================== */

/* Custom Properties / Design Tokens */
:root {
    /* Color Palette (HSL for advanced control and shading) */
    --color-primary: hsl(22, 100%, 53%);       /* Carrot Orange */
    --color-primary-light: hsl(22, 100%, 94%); /* Light Creamy Orange */
    --color-primary-dark: hsl(22, 100%, 43%);  /* Deep Orange */
    
    --color-secondary: hsl(355, 80%, 46%);     /* Apple Red */
    --color-secondary-light: hsl(355, 80%, 94%);/* Light Pinkish Apple */
    
    --color-accent: hsl(125, 45%, 41%);        /* Leaf Green */
    --color-accent-light: hsl(125, 45%, 92%);  /* Soft Green */

    /* Luxury Brushed Gold */
    --color-gold: hsl(43, 62%, 53%);           /* Brushed Gold */
    --color-gold-light: hsl(43, 62%, 94%);     /* Soft Gold */
    --color-gold-dark: hsl(43, 62%, 38%);      /* Deep Luxury Gold */
    
    --color-text: hsl(20, 30%, 13%);           /* Deep Warm Charcoal */
    --color-text-light: hsl(20, 15%, 42%);     /* Muted Greyish Brown */
    
    --color-bg: hsl(33, 40%, 98%);             /* Crisp Cream */
    --color-card: hsl(0, 0%, 100%);            /* Ice White */
    --color-border: hsl(20, 18%, 88%);         /* Subtle Warm Border */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 50%, var(--color-secondary) 100%);
    --gradient-primary-glow: linear-gradient(135deg, hsl(22, 100%, 63%) 0%, var(--color-gold) 50%, hsl(355, 80%, 56%) 100%);
    --gradient-bg: linear-gradient(180deg, hsl(33, 40%, 98%) 0%, hsl(22, 100%, 96%) 100%);
    --gradient-dark-card: linear-gradient(135deg, hsl(20, 35%, 16%) 0%, hsl(20, 30%, 10%) 100%);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Shadows & Depths */
    --shadow-sm: 0 4px 12px rgba(22, 10, 0, 0.04);
    --shadow-md: 0 12px 28px rgba(22, 10, 0, 0.06);
    --shadow-lg: 0 24px 50px rgba(22, 10, 0, 0.1);
    --shadow-glow: 0 12px 30px rgba(238, 77, 42, 0.2);
    
    /* Transitions */
    --transition-fast: 0.18s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- CUSTOM CURSOR ---------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1.8px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.22s var(--transition-smooth), height 0.22s var(--transition-smooth), border-color 0.22s var(--transition-smooth), background-color 0.22s var(--transition-smooth);
    display: none;
    will-change: transform;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.08s, background-color 0.22s;
    display: none;
    will-change: transform;
}

body.cursor-hover .custom-cursor {
    width: 56px;
    height: 56px;
    background-color: rgba(238, 77, 42, 0.06);
    border-color: var(--color-gold);
}

body.cursor-hover .custom-cursor-dot {
    transform: translate(-50%, -50%) scale(2.0);
    background-color: var(--color-gold);
}

/* Hide default cursor on desktop when custom cursor is successfully active */
body.custom-cursor-active, body.custom-cursor-active * {
    cursor: none !important;
}
body.custom-cursor-active .custom-cursor,
body.custom-cursor-active .custom-cursor-dot {
    display: block;
}




/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #0f0a07; /* Start dark to match video playback on wide screens */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 1.5s ease-in-out;
}

@media (min-width: 769px) {
    body.video-ended {
        background-color: var(--color-bg); /* Smooth transition to light cream once video ends */
    }
}

/* Utilities & Helpers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(238, 77, 42, 0.15);
}

.text-center {
    text-align: center;
}

/* Scroll Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-card);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(238, 77, 42, 0.4);
    background: var(--gradient-primary-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--color-card);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: transform 0.5s, opacity 0.8s;
}

.btn-pulse:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    transition: 0s;
}

/* Sections Structure */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    font-weight: 450;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    padding: 8px 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

/* Translucent header override states & transitions */
.site-header .logo,
.site-header .logo-text-tahira,
.site-header .logo-text-bliss,
.site-header .nav-link,
.site-header .cart-btn,
.site-header .mobile-menu-toggle span {
    transition: color 0.8s ease-in-out, background-color 0.8s ease-in-out, border-color 0.8s ease-in-out, transform var(--transition-smooth);
}

/* 1. Header style during video playback (not scrolled, video active) */
body:not(.video-ended) .site-header:not(.scrolled) .logo {
    color: #ffffff;
}
body:not(.video-ended) .site-header:not(.scrolled) .logo-text-tahira {
    color: #ffffff;
}
body:not(.video-ended) .site-header:not(.scrolled) .logo-text-bliss {
    color: #fcd34d;
}
body:not(.video-ended) .site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.75);
}
body:not(.video-ended) .site-header:not(.scrolled) .nav-link:hover {
    color: #ffffff;
}
body:not(.video-ended) .site-header:not(.scrolled) .nav-link.active {
    color: var(--color-primary);
}
body:not(.video-ended) .site-header:not(.scrolled) .cart-btn {
    color: #ffffff;
}
body:not(.video-ended) .site-header:not(.scrolled) .mobile-menu-toggle span {
    background-color: #ffffff;
}
body:not(.video-ended) .site-header:not(.scrolled) .logo-icon {
    color: var(--color-primary);
}

/* 2. Header style when scrolled (transition to solid cream and dark charcoal text) */
.site-header.scrolled .logo {
    color: var(--color-text);
}
.site-header.scrolled .nav-link {
    color: var(--color-text);
}
.site-header.scrolled .nav-link:hover {
    color: var(--color-primary);
}
.site-header.scrolled .nav-link.active {
    color: var(--color-primary-dark);
}
.site-header.scrolled .cart-btn {
    color: var(--color-text);
}
.site-header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-text);
}
.site-header.scrolled .logo-icon {
    width: 108px;
    height: 72px;
    margin-top: -11px;
    margin-bottom: -21px;
    margin-left: -27px;
    margin-right: -32px;
}
.site-header.scrolled {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

/* 3. Header style when video ended on desktop/tablet only (not scrolled) */
@media (min-width: 769px) {
    body.video-ended .site-header:not(.scrolled) .logo {
        color: var(--color-text);
    }
    body.video-ended .site-header:not(.scrolled) .nav-link {
        color: var(--color-text);
    }
    body.video-ended .site-header:not(.scrolled) .nav-link:hover {
        color: var(--color-primary);
    }
    body.video-ended .site-header:not(.scrolled) .nav-link.active {
        color: var(--color-primary-dark);
    }
    body.video-ended .site-header:not(.scrolled) .cart-btn {
        color: var(--color-text);
    }
    body.video-ended .site-header:not(.scrolled) .mobile-menu-toggle span {
        background-color: var(--color-text);
    }
    body.video-ended .site-header:not(.scrolled) {
        background: var(--color-bg); /* Solid light cream to cover baked-in image header */
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-sm);
    }
}
@media (max-width: 768px) {
    .site-header:not(.scrolled) .logo {
        color: #ffffff !important;
    }
    .site-header:not(.scrolled) .logo-text-tahira {
        color: #ffffff !important;
    }
    .site-header:not(.scrolled) .logo-text-bliss {
        color: #fcd34d !important;
    }
    .site-header:not(.scrolled) .nav-link {
        color: rgba(255, 255, 255, 0.75) !important;
    }
    .site-header:not(.scrolled) .nav-link:hover {
        color: #ffffff !important;
    }
    .site-header:not(.scrolled) .nav-link.active {
        color: var(--color-primary) !important;
    }
    .site-header:not(.scrolled) .cart-btn {
        color: #ffffff !important;
    }
    .site-header:not(.scrolled) .mobile-menu-toggle span {
        background-color: #ffffff !important;
    }
    .site-header:not(.scrolled) .logo-icon {
        opacity: 1;
    }
    .site-header:not(.scrolled) {
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}

.site-header:not(.scrolled) .cart-badge {
    border-color: #ffffff;
}

@media (min-width: 769px) {
    .header-container {
        position: relative;
    }
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.btn-header-order {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--color-card) !important;
    border: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    margin-right: 12px;
}

.btn-header-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 77, 42, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 64px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.logo-icon {
    width: 135px;
    height: 90px;
    object-fit: contain;
    margin-top: -14px;
    margin-bottom: -26px;
    margin-left: -34px;
    margin-right: -40px;
    transition: var(--transition-smooth);
}

.site-footer .logo-icon {
    width: 108px;
    height: 72px;
    margin-top: -11px;
    margin-bottom: -21px;
    margin-left: -27px;
    margin-right: -32px;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 0.9;
    margin-left: 2px;
}

.logo-text-tahira {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: #044b36; /* Dark Green */
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1;
}

.logo-text-bliss {
    font-family: 'Dancing Script', 'Satisfy', cursive;
    font-weight: 700;
    font-size: 1.7rem;
    color: #c76a13; /* Copper Orange-brown */
    margin-top: -6px; /* Overlap slightly */
    letter-spacing: normal;
    text-transform: none;
    line-height: 1;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 550;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--color-primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-primary);
    color: var(--color-card);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-card);
    padding: 0 4px;
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0f0a07; /* Fallback dark */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    max-width: 1600px; /* Constrain width to keep background elements aligned with text on zoom */
    margin: 0 auto; /* Center the hero block */
    box-shadow: 0 30px 100px rgba(15, 10, 7, 0.18); /* Premium shadow card look on wide screens */
    container-type: inline-size; /* Enable container query units for typography scaling */
}

@media (min-width: 993px) {
    .hero-section {
        aspect-ratio: 16 / 9; /* Lock aspect ratio on desktop to keep elements proportional */
        min-height: 600px;
        height: auto;
        max-height: 900px;
        padding-top: 80px; /* Clear fixed header and shift content down */
    }
}

/* Background video styles */
.hero-video-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 0;
    overflow: hidden;
    background-image: url('websitebackgroundpicture.png');
    background-size: cover;
    background-position: right top; /* Align image right-top so bottle cap is fully visible! */
    transform: scale(1.0); /* Start at scale 1.0 during video playback */
    transition: transform 2.0s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s ease-in-out;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.05); /* Soft premium tint */
    transition: opacity 1.5s ease-in-out;
    opacity: 1;
}

.hero-video-bg.ended video {
    opacity: 0;
}

body.video-ended .hero-video-bg {
    transform: scale(1.03); /* Slow premium zoom-in when video transitions to picture */
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.dark-overlay {
    background: linear-gradient(
        to right, 
        rgba(15, 10, 7, 0.72) 0%, 
        rgba(15, 10, 7, 0.45) 45%, 
        rgba(15, 10, 7, 0) 75%
    );
    opacity: 1;
}

.light-overlay {
    /* Shield the dark charcoal text on the left while keeping the product image on the right completely clear and HD */
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 30%, 
        rgba(255, 255, 255, 0.4) 45%, 
        rgba(255, 255, 255, 0) 55%
    );
    opacity: 0;
}

@media (min-width: 769px) {
    body.video-ended .dark-overlay {
        opacity: 0;
    }
    body.video-ended .light-overlay {
        opacity: 1;
    }
}

.hero-video-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.8;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.0rem, 3.8cqw, 3.8rem); /* Proportional scaling via container queries */
    font-weight: 800; /* Outfit Bold */
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #ffffff;
    transition: color 1.2s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title strong {
    font-weight: 800; /* Outfit Bold */
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.25cqw, 1.15rem); /* Proportional scaling via container queries */
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.75;
    transition: color 1.2s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-cta .btn {
    font-size: clamp(0.85rem, 1.05cqw, 1.0rem) !important; /* Proportional scaling */
    padding: clamp(10px, 1.3cqw, 14px) clamp(20px, 2.6cqw, 28px) !important;
}

#hero-cta-order {
    background: var(--color-primary); /* solid orange */
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(238, 77, 42, 0.3);
    border: none;
}

#hero-cta-order:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 77, 42, 0.4);
}

#hero-cta-learn {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    box-shadow: none;
    transition: color 1.2s ease-in-out, border-color 1.2s ease-in-out, background-color 1.2s ease-in-out;
}

#hero-cta-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-content .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(60, 140, 80, 0.12); /* soft green tint background */
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent); /* green outline */
    font-size: clamp(0.7rem, 0.9cqw, 0.8rem); /* Proportional scaling */
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: none;
    transition: background-color 0.8s ease-in-out, border-color 0.8s ease-in-out, color 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.badge-leaf-icon {
    color: var(--color-accent);
}

/* Hero Title Divider */
.hero-title-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -8px; /* pull closer to title */
    margin-bottom: 24px;
}

.hero-title-divider .divider-line {
    width: 48px;
    height: 2px;
    background-color: var(--color-primary); /* gold/orange line */
    border-radius: 2px;
}

.hero-title-divider .divider-leaf-icon {
    color: var(--color-accent); /* green leaf icon */
    flex-shrink: 0;
}

/* Hero Bottom Text Tagline */
.hero-bottom-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.15cqw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 24px;
    line-height: 1.6;
    transition: color 1.2s ease-in-out, opacity 0.8s ease-in-out;
    width: 100%;
    text-align: center; /* Centered on mobile */
    max-width: 520px;
}

/* Hero Features Bar (Glassmorphic) */
.hero-features-bar {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.05); /* very light transparent tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px 12px;
    margin-bottom: 24px;
    transition: background-color 0.8s, border-color 0.8s, color 0.8s;
}

.hero-features-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 8px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-item:not(:last-child) {
    border-right: 1.5px solid rgba(255, 255, 255, 0.12);
}

.feature-icon-wrapper {
    color: var(--color-accent); /* Green icon */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.15) translateY(-2px);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    transition: color 0.8s;
}

.feature-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    transition: color 0.8s;
}

/* Hero section light theme transitions when video ends */
@media (min-width: 769px) {
    body.video-ended .hero-title {
        color: var(--color-text);
        opacity: 1; /* Keep visible on clean background */
    }

    body.video-ended .hero-subtitle {
        color: #000000;
        font-weight: 600;
        opacity: 1; /* Keep visible on clean background */
    }

    body.video-ended #hero-cta-learn {
        color: var(--color-text);
        border-color: var(--color-text);
    }

    body.video-ended #hero-cta-learn:hover {
        background-color: rgba(20, 15, 10, 0.05);
        border-color: var(--color-primary);
        color: var(--color-primary-dark);
    }

    /* Light Theme overrides for features bar */
    body.video-ended .hero-features-bar {
        background: rgba(20, 15, 10, 0.03); /* soft warm background on cream */
        border-color: rgba(20, 15, 10, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    body.video-ended .feature-title {
        color: var(--color-text);
    }
    
    body.video-ended .feature-desc {
        color: var(--color-text-light);
    }
    
    body.video-ended .feature-item:not(:last-child) {
        border-color: rgba(20, 15, 10, 0.08);
    }

    /* Desktop overrides for bottom tagline text alignment */
    .hero-bottom-text {
        text-align: left; /* Left-aligned on desktop */
        margin-top: 20px;
    }
    
    body.video-ended .hero-bottom-text {
        color: var(--color-text); /* Transition to charcoal text in light mode */
    }
}

/* Hero Media & Splashes */
.hero-media {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Overlapping Bottom Feature Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    padding: 0 24px;
    z-index: 10;
}

.bottom-bar-container {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 40px;
    box-shadow: 0 30px 60px rgba(15, 10, 7, 0.08), 0 4px 15px rgba(15, 10, 7, 0.02);
    border: 1px solid rgba(20, 15, 10, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: var(--transition-smooth);
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: var(--transition-smooth);
    padding-right: 12px;
}

.feature-block:hover {
    transform: translateY(-2px);
}

.bottom-bar-container > .feature-block:not(:last-child) {
    border-right: 1px solid rgba(20, 15, 10, 0.08);
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary); /* Orange icons */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-block h4 {
    font-family: var(--font-heading);
    font-weight: 750;
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
}

.feature-block p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.4;
    margin: 0;
}

/* Offset for overlapping bar to prevent content collisions on Philosophy section */
@media (min-width: 993px) {
    .about-section {
        padding-top: 160px !important;
    }
}

@media (max-width: 992px) {
    .hero-bottom-bar {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        transform: none;
        left: 0;
        padding: 0 24px;
    }
    
    .bottom-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 30px;
        border-radius: 20px;
    }

    .bottom-bar-container > .feature-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(20, 15, 10, 0.08);
        padding-bottom: 16px;
        padding-right: 0;
    }

    /* remove border-bottom from the last two elements on tablet (2x2 grid) */
    .bottom-bar-container > .feature-block:nth-last-child(-n+2) {
        border-bottom: none !important;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .bottom-bar-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bottom-bar-container > .feature-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(20, 15, 10, 0.08) !important;
        padding-bottom: 16px;
        padding-right: 0;
    }

    /* remove border-bottom only from the very last element on mobile */
    .bottom-bar-container > .feature-block:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }
}

/* Floating Elements */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(238, 77, 42, 0.1);
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation: floatBubble 12s infinite ease-in-out;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    background: rgba(227, 26, 28, 0.05);
    animation: floatBubble 18s infinite ease-in-out reverse;
}

@keyframes floatBubble {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
/* ==========================================================================
   Philosophy Section Redesign
   ========================================================================== */
.about-section {
    background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    border-bottom: 1px solid var(--color-border);
}

/* Background Decorations Positioning */
.decor-image {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply; /* Render white background transparent */
    opacity: 0.95;
    transition: transform var(--transition-slow);
}
.decor-leaf-tl {
    top: -20px;
    left: -20px;
    width: 260px;
}
.decor-splash-tr {
    top: 40px;
    right: 0;
    width: 320px;
}
.decor-splash-bl {
    bottom: 80px;
    left: 0;
    width: 280px;
}
.decor-leaf-br {
    bottom: -30px;
    right: -30px;
    width: 240px;
}
.decor-leaf-mr {
    top: 38%;
    right: 2%;
    width: 140px;
    transform: rotate(-60deg) scaleX(-1);
    opacity: 0.85;
}

/* Main Container Width to 85%-90% */
.philosophy-container {
    max-width: 90%;
    width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header Text Styling */
.philosophy-header {
    margin-bottom: 50px;
}
.philosophy-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800; /* Bold */
    color: var(--color-text); /* Dark Brown */
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.philosophy-title-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary); /* Orange */
}
.philosophy-header-leaf {
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.philosophy-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-light); /* Muted Brown */
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Badges Styling - Clean dividers in a horizontal row */
.philosophy-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 90px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.philosophy-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 15px;
    transition: var(--transition-smooth);
}
.philosophy-badge-item:hover {
    transform: translateY(-2px);
}
.badge-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary); /* Orange outline */
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(238, 77, 42, 0.05);
}
.badge-content {
    display: flex;
    flex-direction: column;
}
.badge-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
}
.badge-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 550;
}
.badge-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
    opacity: 0.7;
    flex-shrink: 0;
}

/* Process Section Header */
.process-section-header {
    margin-bottom: 50px;
}
.process-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text); /* Dark Brown */
}
.process-title-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary); /* Orange */
}

/* Process Cards Styling */
.process-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 40px;
    margin-bottom: 80px;
}
/* Orange Dotted Connection Line */
.process-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2.5px dotted var(--color-primary);
    z-index: 1;
    transform: translateY(-50%);
}
.process-card {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #f2ece4; /* Thin warm beige border */
    border-radius: 20px; /* rounded corners */
    padding: 50px 30px 40px 30px;
    box-shadow: 0 10px 40px rgba(20, 15, 10, 0.04); /* soft shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2; /* Cover the dotted line */
    transition: var(--transition-smooth);
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(20, 15, 10, 0.08);
    border-color: rgba(238, 77, 42, 0.25);
}
.process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-card-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}
.process-card:hover .process-card-img {
    transform: scale(1.08) translateY(-4px);
}
.process-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--color-text); /* Bold Dark Brown */
    margin-bottom: 16px;
}
.process-card-desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
}

/* Stats Pill Bar Styling */
.philosophy-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 100px; /* large rounded pill-shaped */
    padding: 32px 64px;
    box-shadow: 0 15px 50px rgba(20, 15, 10, 0.05); /* soft shadow */
    gap: 30px;
    position: relative;
    z-index: 10;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.stat-item-integrity {
    flex: 1.3;
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary); /* Orange line icons */
}
.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--color-text); /* Dark Brown */
    line-height: 1.05;
}
.stat-number-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-text); /* Dark Brown */
    line-height: 1.05;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 550;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 45px;
    background-color: var(--color-border); /* soft dividers */
    flex-shrink: 0;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    background-color: var(--color-bg);
}

.benefits-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.benefits-media {
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-card);
}

.benefits-marketing-poster {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.benefits-marketing-poster:hover {
    transform: scale(1.03);
}

.benefits-content {
    display: flex;
    flex-direction: column;
}

.benefits-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(20, 15, 10, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    overflow: hidden;
    padding: 6px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.benefit-item:hover {
    transform: translateY(-4px) translateX(4px);
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-md);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   Ingredients Explorer
   ========================================================================== */
.ingredients-section {
    background-color: var(--color-card);
    border-bottom: 1px solid var(--color-border);
}

.ingredients-explorer {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.ingredients-nav {
    display: flex;
    background-color: rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.ing-nav-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ing-nav-btn:hover {
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.3);
}

.ing-nav-btn.active {
    color: var(--color-gold-dark);
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.ing-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.ingredients-details-box {
    padding: 40px;
    min-height: 420px;
    position: relative;
}

.ingredient-detail-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s, transform 0.5s;
}

.ingredient-detail-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ing-pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.ing-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
}

.ing-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.ing-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-primary-dark);
}

.ing-benefits-list {
    list-style: none;
}

.ing-benefits-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.ing-benefits-list li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.ing-pane-image {
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ing-showcase-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 320px;
}

/* ==========================================================================
   Product Showcase / Gallery
   ========================================================================== */
.gallery-section {
    background-color: var(--gradient-bg);
}

.video-container-wrapper {
    max-width: 680px; /* Reduced from 900px to make it compact and elegant */
    margin: 0 auto 60px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.18); /* delicate champagne gold border */
    border-radius: 28px; /* elegant rounded border wrapper */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 
                0 0 35px rgba(212, 175, 55, 0.04); /* soft luxury gold glow */
    transition: var(--transition-smooth);
}

.video-container-wrapper:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35); /* glows brighter on hover */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18), 
                0 0 45px rgba(212, 175, 55, 0.08);
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1.77;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0b0a09;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.8); /* deep inner shadow for high-end depth */
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%); /* luxury radial vignette overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
}

.video-play-btn {
    width: 72px; /* slightly smaller for elegance */
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary); /* warm orange brand tone */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 
                0 0 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    padding-left: 4px;
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.08);
    background: var(--gradient-primary); /* gold gradient */
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(238, 77, 42, 0.35), 
                0 0 25px rgba(212, 175, 55, 0.25);
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.video-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 0.77;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background-color: var(--color-card);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(238, 77, 42, 0) 40%, rgba(238, 77, 42, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.zoom-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    align-self: flex-start;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-hover-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-card);
    font-size: 1.25rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .zoom-icon,
.gallery-item:hover .gallery-hover-text {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 5, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    user-select: none;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: var(--color-primary);
}

.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
}

/* ==========================================================================
   Order / Store Section & Interactive Widget
   ========================================================================== */
.order-section {
    background-color: var(--color-card);
    border-bottom: 1px solid var(--color-border);
}

.order-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.order-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* Pack Option Selectors */
.pack-selector {
    margin-bottom: 32px;
}

.selector-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.pack-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pack-option {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 145px;
}

.best-value-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text-light);
    color: var(--color-card);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.pack-option:nth-child(2) .best-value-tag {
    background: var(--color-gold-dark);
}

.pack-option:nth-child(3) .best-value-tag {
    background: var(--color-accent);
}

.pack-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 8px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.pack-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.pack-per-bottle {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.pack-option:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-md);
}

.pack-option.active {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
    transform: translateY(-5px);
}

.pack-option.active .pack-price {
    color: var(--color-gold-dark);
}

/* Subscription Switcher */
.sub-selector {
    margin-bottom: 32px;
}

.sub-toggle-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: var(--border-radius-md);
    border: 1.5px dashed rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22, 10, 0, 0.15);
    transition: 0.3s;
    border-radius: 34px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .slider {
    background-color: var(--color-accent);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(22px);
}

.sub-toggle-text {
    display: flex;
    flex-direction: column;
}

.sub-toggle-text strong {
    font-size: 0.95rem;
    color: var(--color-text);
}

.sub-subtext {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.frequency-options {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.freq-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    background-color: var(--color-card);
    transition: var(--transition-fast);
}

.freq-label input {
    accent-color: var(--color-accent);
}

.freq-label:hover {
    background-color: var(--color-bg);
}

/* Order Summary Box */
.order-summary-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.price-val {
    font-weight: 600;
    color: var(--color-text);
}

.price-val.discount {
    color: var(--color-accent);
}

.summary-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 16px 0;
}

.total-row {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-val.total {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-gold-dark);
    font-size: 1.35rem;
}

/* Showcase Section */
.order-showcase {
    display: flex;
    justify-content: center;
}

.order-card-inner {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.order-showcase-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    margin-bottom: 24px;
    animation: bottleFloat 5s ease-in-out infinite;
}

.showcase-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(44, 160, 44, 0.3);
}

.showcase-badge-number {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.showcase-badge-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-pill {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ==========================================================================
   Shopping Cart Drawer
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--color-card);
    z-index: 1100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
}

.cart-close:hover {
    color: var(--color-primary);
}

/* Cart States */
.cart-empty-state {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 16px;
    color: var(--color-text-light);
}

.cart-empty-state svg {
    color: rgba(0,0,0,0.1);
}

.cart-shop-now {
    margin-top: 12px;
}

.cart-filled-state {
    display: flex;
    flex-direction: column;
    height: calc(100% - 85px);
    flex-grow: 1;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Cart Item Card */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.cart-item-img-wrapper {
    background: var(--gradient-bg);
    border-radius: var(--border-radius-sm);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.cart-item-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-desc {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.cart-item-qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

.qty-num {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-item-price-side {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    margin-top: 16px;
    text-decoration: underline;
}

/* Cart Checkout Footer */
.cart-checkout-section {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 24px;
}

.cart-totals {
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.cart-total-row.final-row {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}

.cart-total-row.final-row strong {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Checkout Modal
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 5, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.checkout-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal {
    background-color: var(--color-card);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
}

.checkout-modal-overlay.active .checkout-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-light);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* Form Styles */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-bg);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-card);
    box-shadow: 0 0 0 3px rgba(238, 77, 42, 0.1);
}

.payment-selector {
    margin-bottom: 4px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary-light);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-method input {
    accent-color: var(--color-primary);
}

.form-row {
    display: flex;
    gap: 16px;
}

.col-8 { flex: 2; }
.col-4 { flex: 1; }

/* Success Pane */
.success-pane {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(44, 160, 44, 0.3);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-pane h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
}

.success-pane p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

/* ==========================================================================
   FAQ Section Accordions
   ========================================================================== */
.faq-section {
    background-color: var(--color-bg);
}

.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text-light);
    transition: transform var(--transition-smooth);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 30px;
}

.accordion-content p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Accordion Active States */
.accordion-item.active {
    border-color: rgba(238, 77, 42, 0.25);
    box-shadow: var(--shadow-md);
}

.accordion-item.active .accordion-header {
    color: var(--color-primary-dark);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: hsl(20, 30%, 10%); /* Custom extra dark warm charcoal */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-brand .logo {
    color: #fff;
}

.footer-brand .logo-text-tahira {
    color: #ffffff;
}

.footer-brand .logo-text-bliss {
    color: var(--color-primary); /* warm orange-gold */
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    color: var(--color-card);
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

/* Footer Links & Contact */
.site-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Footer Newsletter */
.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.newsletter-form .btn {
    padding: 12px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Responsive Breakpoints & Adjustments
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.1rem;
    }

    .light-overlay {
        background: radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 60%,
            rgba(255, 255, 255, 0.7) 100%
        ) !important;
    }
    
    /* Hero */
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    /* Philosophy Section Responsive */
    .decor-image {
        display: none; /* Hide decorations on smaller screens */
    }
    .philosophy-badges-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
    }
    .philosophy-badge-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10px;
    }
    .badge-divider {
        display: none; /* Hide vertical dividers on tablet */
    }
    .process-row {
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 60px;
    }
    .process-row::before {
        display: none; /* Hide connection line on tablet */
    }
    .process-card {
        flex: 1 1 calc(50% - 30px);
        min-width: 260px;
        padding: 40px 24px 30px 24px;
    }
    .philosophy-stats-bar {
        flex-wrap: wrap;
        border-radius: 40px;
        padding: 30px 40px;
        gap: 24px;
        justify-content: center;
    }
    .stat-item {
        flex: 1 1 calc(50% - 24px);
        min-width: 200px;
        justify-content: center;
    }
    .stat-item-integrity {
        flex: 1 1 calc(50% - 24px);
        justify-content: center;
    }
    .stat-divider {
        display: none; /* Hide dividers in 2x2 grid */
    }
    
    /* Benefits Grid */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-media {
        max-width: 500px;
        margin: 0 auto;
        order: 1; /* Poster moves below description on tablets */
    }
    
    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Order Grid */
    .order-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .order-showcase {
        order: -1; /* Product image moves above input selector on tablet */
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile View (Max 768px) */
@media (max-width: 768px) {
    .btn-header-order {
        display: none !important;
    }

    .hero-video-bg {
        background-image: url('websitebackgroundpicture.png') !important;
        background-position: center !important;
    }

    /* Hero Left Alignment and Compact Spacing */
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-title {
        font-size: clamp(2.0rem, 7vw, 2.4rem) !important;
        text-align: left !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle {
        margin: 0 0 20px 0 !important;
        text-align: left !important;
        font-size: 0.95rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 24px !important;
        justify-content: flex-start !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        max-width: 240px !important;
        justify-content: center !important;
        padding: 12px 24px !important;
    }

    .hero-bottom-text {
        text-align: left !important;
        background: rgba(15, 10, 7, 0.65) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-left: 3px solid var(--color-primary) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 4px 16px 16px 4px !important;
        padding: 14px 18px !important;
        margin-top: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
    }

    /* Navbar Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 80px);
        background-color: var(--color-card);
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform var(--transition-smooth);
        z-index: 999;
    }
    
    .site-header.scrolled .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--color-text) !important;
    }
    
    .nav-link.active {
        color: var(--color-primary) !important;
    }
    
    /* Burger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-primary);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-primary);
    }
    
    /* Explorer Section */
    .ing-pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ing-pane-image {
        order: -1;
    }
    
    /* Order Selector Widget */
    .pack-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Philosophy Section Responsive */
    .decor-image {
        display: none; /* Hide background images on mobile */
    }
    .philosophy-title {
        font-size: 2.2rem;
    }
    .philosophy-subtitle {
        font-size: 1rem;
    }
    .philosophy-badges-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 50px;
    }
    .philosophy-badge-item {
        width: 100%;
        flex: none;
        padding: 12px 20px;
        justify-content: flex-start;
    }
    .badge-divider {
        display: none;
    }
    .process-section-title {
        font-size: 1.8rem;
    }
    .process-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    .process-card {
        width: 100%;
        flex: none;
        padding: 30px 20px 24px 20px;
    }
    .process-card-img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    .philosophy-stats-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 24px 20px;
        gap: 16px;
        align-items: stretch;
    }
    .stat-item, .stat-item-integrity {
        width: 100%;
        flex: none;
        justify-content: center;
    }
}

/* Small Screens (Max 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.1rem !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }

    /* Philosophy Section Small Mobile */
    .philosophy-title {
        font-size: 1.8rem;
    }
    .philosophy-subtitle {
        font-size: 0.95rem;
    }
    .process-section-title {
        font-size: 1.5rem;
    }
}
