.hero-headline em {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: 900 !important;
    letter-spacing: 0.015em !important;
    display: inline-block !important;
    transform: rotate(-5deg) scale(1.05) !important;
    text-decoration: none !important;
    text-shadow: 
        2px 2px 0px rgba(184, 121, 79, 0.3),
        4px 4px 0px rgba(184, 121, 79, 0.2),
        6px 6px 0px rgba(184, 121, 79, 0.1),
        8px 8px 12px rgba(15, 23, 42, 0.15) !important;
}

/* ========================================
   BUZZBAR × DEUX INSPIRED DESIGN
   Minimal, clean, product-focused
   ======================================== */

/* Core Brand Colors */
:root {
    --cream: #F5F1E8;
    --dark-cream: #E8E3D8;
    --espresso: #2C1810;
    --caramel: #B8794F;
    --white: #FDFCFA;
    --text: #3E3530;
    --text-light: #6B635A;
}

/* Reset aggressive defaults */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body - Cream background like DEUX */
body {
    background: var(--cream) !important;
    color: var(--text) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
}

/* Hero - Minimal, product-focused */
.hero,
.hero--colorblock {
    background: var(--white) !important;
    min-height: 100vh !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    /* Allow drips to hang outside the section like slime */
    overflow: visible !important;
    z-index: 1 !important;
    margin-top: -60px !important;
}

/* Gooey background effect - disabled for clean look */
.hero::before {
    display: none !important;
}

.hero::after {
    display: none !important;
}

@keyframes gooey-morph {
    0%, 100% { 
        border-radius: 48% 52% 58% 42% / 45% 48% 52% 55% !important;
        transform: rotate(0deg) scale(1) !important;
    }
    25% { 
        border-radius: 58% 42% 48% 52% / 52% 45% 55% 48% !important;
        transform: rotate(5deg) scale(1.05) !important;
    }
    50% { 
        border-radius: 42% 58% 52% 48% / 48% 52% 48% 52% !important;
        transform: rotate(-3deg) scale(0.98) !important;
    }
    75% { 
        border-radius: 52% 48% 42% 58% / 55% 48% 52% 45% !important;
        transform: rotate(3deg) scale(1.02) !important;
    }
}

.hero-colorblock-wrapper {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 60px !important;
}

.hero-details {
    padding: 0 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.hero-details .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
    min-height: 90vh !important;
    max-width: 100% !important;
    padding: 140px 80px 80px 80px !important;
}

/* Hero Text Side */
.hero-text-side {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-headline {
    font-size: 7.5rem !important;
    font-weight: 700 !important;
    line-height: 0.95 !important;
    color: var(--espresso) !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 30px 0 !important;
}

.headline-main {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 700 !important;
}

.headline-script {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #2d5016 !important;
}

.hero-description {
    font-size: 1.25rem !important;
    color: var(--text) !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    max-width: 700px !important;
    font-weight: 400 !important;
}

.hero-subtext {
    font-size: 1.5rem !important;
    color: var(--text) !important;
    line-height: 1.5 !important;
    margin: 20px 0 50px 0 !important;
    max-width: 550px !important;
    display: block !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}

/* Hero CTA Button Group */
.hero-cta-group {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
    margin-top: 40px !important;
}

.hero-cta-group .cta-primary {
    background-color: rgba(255, 208, 116) !important;
    background: rgba(255, 208, 116) !important;
    background-image: none !important;
    color: black !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 1em 2em !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
    border: 1px solid black !important;
    box-shadow: 0 0 0 0 black !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.hero-cta-group .cta-primary:hover {
    transform: translateY(-4px) translateX(-2px) !important;
    box-shadow: 2px 5px 0 0 black !important;
    background: #065f46 !important;
    background-color: #065f46 !important;
    background-image: none !important;
    color: black !important;
}

.hero-cta-group .cta-primary:active {
    transform: translateY(2px) translateX(1px) !important;
    box-shadow: 0 0 0 0 black !important;
    background: #065f46 !important;
    background-color: #065f46 !important;
}

.hero-cta-group .cta-secondary {
    background-color: transparent !important;
    color: black !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    padding: 1em 2em !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.hero-cta-group .cta-secondary:hover {
    transform: translateY(-2px) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
}

.hero-cta-group .cta-secondary:active {
    transform: translateY(0px) !important;
    background: rgba(0, 0, 0, 0.1) !important;
}

.hero-cta-group .cta-primary,
.hero-cta-group .cta-secondary {
    text-decoration: none !important;
    white-space: nowrap !important;
}

/* Secondary CTA Button */
.cta-secondary {
    display: inline-block !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid #8b5cf6 !important;
    background: white !important;
    color: #8b5cf6 !important;
    text-transform: none !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-secondary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3) !important;
    border-color: #6d28d9 !important;
}

.cta-secondary:hover::before {
    left: 100% !important;
}

/* Hide the ::before content */
.hero-details::before {
    display: none !important;
}

/* Product Showcase */
.hero-details .hero-product-showcase {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-top: 0 !important;
}

.hero .bar-3d {
    width: 150px !important;
    height: 300px !important;
    transform: scale(1.5) !important;
}

/* Hide product info text */
.hero .product-info {
    display: none !important;
}

/* Just show the product visual */
.hero .product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

.hero .product-visual {
    background: transparent !important;
    width: 100% !important;
    max-width: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Introducing Banner - brown/espresso style at bottom */
.introducing-banner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    background: var(--espresso) !important;
    height: 50px !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.introducing-banner.hidden {
    transform: translateY(100%) !important;
    opacity: 0 !important;
}

.introducing-word {
    color: var(--cream) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

/* Fade-in on scroll animation */
[data-fade-in] {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.6s ease, transform 0.6s ease !important;
}

[data-fade-in].is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Header - Minimal */
.site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    overflow: visible !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
}

.header-inner {
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
}

.main-nav {
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.brand {
    flex-shrink: 0 !important;
}

.cta-contact {
    flex-shrink: 0 !important;
}

.brand-word {
    background: linear-gradient(135deg, var(--espresso) 0%, var(--caramel) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    font-family: 'Belanosima', sans-serif !important;
    letter-spacing: 0.05em !important;
    transition: opacity 0.3s ease !important;
}

.brand-word:hover {
    opacity: 0.8 !important;
}

.brand-sub {
    display: none !important;
}

.nav-link {
    color: var(--text) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-link:hover {
    color: var(--espresso) !important;
    background: rgba(44, 24, 16, 0.08) !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* CTA Button - Appealing and enticing */
.cta-contact,
.cta-primary {
    background: rgba(255, 208, 116) !important;
    color: #1d1d1f !important;
    padding: 16px 40px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.cta-contact::before,
.cta-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(184, 121, 79, 0.3) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
}

.cta-contact:hover,
.cta-primary:hover {
    background: rgba(255, 208, 116) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.cta-contact:hover::before,
.cta-primary:hover::before {
    width: 300px !important;
    height: 300px !important;
}

.cta-contact:active,
.cta-primary:active {
    transform: translateY(-1px) scale(0.98) !important;
}

/* Product Cards - Sharp, modern style */
.product-card {
    background: var(--white) !important;
    border: 1px solid rgba(62, 53, 48, 0.15) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.product-card:hover {
    border-color: var(--espresso) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1) !important;
}

.product-visual {
    background: var(--dark-cream) !important;
    border-bottom: none !important;
    padding: 40px !important;
}

.product-badge {
    background: var(--espresso) !important;
    color: var(--cream) !important;
    font-size: 10px !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
}

.product-info {
    padding: 32px !important;
    text-align: left !important;
}

.product-info h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--espresso) !important;
    margin-bottom: 8px !important;
}

.product-tagline {
    color: var(--caramel) !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 500 !important;
}

.product-description {
    color: var(--text-light) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.spec {
    background: var(--dark-cream) !important;
    color: var(--text) !important;
    border: none !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: 16px !important;
    font-weight: 500 !important;
}

/* Sections - Alternating cream/white */
.science-section,
.nt-section {
    background: var(--white) !important;
    padding: 100px 0 !important;
    position: relative !important;
    /* Allow decorative drips to extend into next section */
    overflow: visible !important;
    z-index: 1 !important;
}

.our-story,
.sp-section {
    background: var(--white) !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 1 !important;
}

/* Bubble transition separators (white → coffee) */
.hero::after,
.science-section::after,
.nt-section::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: var(--bubble-height, 140px) !important;
    background-color: var(--espresso) !important;
    /* Draw white bubbles intruding into the coffee band */
    background-image:
      radial-gradient(closest-side at 6% 60%, var(--white) 0 34px, transparent 35px),
      radial-gradient(closest-side at 18% 40%, var(--white) 0 28px, transparent 29px),
      radial-gradient(closest-side at 32% 70%, var(--white) 0 40px, transparent 41px),
      radial-gradient(closest-side at 48% 42%, var(--white) 0 30px, transparent 31px),
      radial-gradient(closest-side at 62% 68%, var(--white) 0 36px, transparent 37px),
      radial-gradient(closest-side at 78% 46%, var(--white) 0 26px, transparent 27px),
      radial-gradient(closest-side at 92% 66%, var(--white) 0 42px, transparent 43px),
      linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(0,0,0,0) 40%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Bubble transition separators for cream sections (cream → coffee) */
.our-story::after,
.sp-section::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: var(--bubble-height, 140px) !important;
    background-color: var(--espresso) !important;
    background-image:
      radial-gradient(closest-side at 10% 60%, var(--cream) 0 34px, transparent 35px),
      radial-gradient(closest-side at 24% 40%, var(--cream) 0 28px, transparent 29px),
      radial-gradient(closest-side at 38% 70%, var(--cream) 0 40px, transparent 41px),
      radial-gradient(closest-side at 52% 42%, var(--cream) 0 30px, transparent 31px),
      radial-gradient(closest-side at 66% 68%, var(--cream) 0 36px, transparent 37px),
      radial-gradient(closest-side at 80% 46%, var(--cream) 0 26px, transparent 27px),
      radial-gradient(closest-side at 94% 66%, var(--cream) 0 42px, transparent 43px),
      linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(0,0,0,0) 40%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Section badges - Minimal */
.section-eyebrow,
.sc-badge,
.nt-badge,
.sp-badge {
    background: transparent !important;
    color: var(--caramel) !important;
    border: 1px solid var(--caramel) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
}

/* Headings - Clean typography */
h1, h2, .story-title, .sc-title, .nt-title {
    color: var(--espresso) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
}

h2, .story-title, .sc-title, .nt-title {
    font-size: 2.5rem !important;
}

/* Text - Warm gray */
p, .story-lede, .sc-sub, .nt-sub {
    color: var(--text-light) !important;
    line-height: 1.7 !important;
}

/* Cards - Minimal shadows */
.science-card,
.ing-card,
.nt-card,
.founder-card,
.sp-card {
    background: var(--white) !important;
    border: 1px solid rgba(62, 53, 48, 0.06) !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.04) !important;
    padding: 32px !important;
}

.science-card:hover,
.ing-card:hover,
.nt-card:hover,
.founder-card:hover,
.sp-card:hover {
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* Founder avatars */
.founder-avatar {
    background: var(--espresso) !important;
    border: 2px solid var(--cream) !important;
}

/* Footer - Dark green */
footer {
    background: linear-gradient(135deg, #0f2419, #081510) !important;
    color: var(--cream) !important;
    padding: 80px 0 40px !important;
}

.footer-section h3 {
    color: var(--caramel) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

/* Remove color blocks from hero */
.block-tagline,
.block-accent {
    display: none !important;
}

/* Image styling - DEUX style with 3D effect */
.story-visual {
    position: relative !important;
}

.story-image {
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.1) !important;
    transform: perspective(1200px) rotateY(2deg) rotateX(-2deg) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

.story-visual::before {
    content: '' !important;
    position: absolute !important;
    top: 20px !important;
    left: -20px !important;
    right: 20px !important;
    bottom: -20px !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 197, 94, 0.2)) !important;
    border-radius: 20px !important;
    z-index: 1 !important;
    filter: blur(30px) !important;
    animation: float-shadow 4s ease-in-out infinite !important;
}

@keyframes float-shadow {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
}

/* Page gradient - remove */
.page-top-gradient {
    display: none !important;
}

/* Clean spacing */
.container {
    max-width: 1280px !important;
    padding: 0 40px !important;
}

/* Buttons in nutrition/science sections */
.nt-more-btn {
    background: transparent !important;
    border: 1px solid var(--text-light) !important;
    color: var(--text) !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
}

.nt-more-btn:hover {
    background: var(--espresso) !important;
    color: var(--cream) !important;
    border-color: var(--espresso) !important;
}

/* Testimonials */
.sp-card blockquote {
    color: var(--text) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.sp-stars {
    color: var(--caramel) !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px !important;
    }
    
    .hero--colorblock {
        padding-top: 220px !important;
    }
    
    h2, .story-title, .sc-title, .nt-title {
        font-size: 2rem !important;
    }
    
    .container {
        padding: 0 24px !important;
    }
}

/* Disable section separators entirely */
.hero::after,
.science-section::after,
.nt-section::after,
.our-story::after,
.sp-section::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  height: 0 !important;
}


/* ===== PRODUCTS PAGE - COOL & VIBEY ===== */

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E3D8 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 121, 79, 0.15), transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    border-radius: 50%;
    animation: float-blob 25s ease-in-out infinite reverse;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-hero-copy {
    z-index: 2;
}

.page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--caramel);
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--caramel);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.page-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 24px;
    font-weight: 700;
}

.page-hero-title .highlight {
    background: linear-gradient(135deg, var(--caramel), #D97917);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero-sub {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 540px;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(44, 24, 16, 0.06);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--espresso);
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: rgba(44, 24, 16, 0.12);
    transform: translateY(-2px);
}

.tag-pill-dot {
    width: 6px;
    height: 6px;
    background: var(--caramel);
    border-radius: 50%;
}

.product-hero-card {
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

.product-hero-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(44, 24, 16, 0.25);
}

.product-hero-card .bar-3d {
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Page Sections */
.page-section {
    padding: 80px 0;
    position: relative;
}

.page-section--on-white {
    background: #FDFCFA;
}

.page-section--soft {
    background: linear-gradient(180deg, #F5F1E8 0%, #FDFCFA 100%);
    position: relative;
}

.page-section--soft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(184, 121, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--espresso);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 32px;
}

/* Usecase Chips */
.usecase-chips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usecase-chip {
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(44, 24, 16, 0.15);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.usecase-chip:hover {
    border-color: var(--caramel);
    background: rgba(184, 121, 79, 0.05);
    transform: translateX(8px);
}

.usecase-chip.is-active {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
    transform: translateX(12px);
}

/* Info Card */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--caramel), #8b5cf6, var(--caramel));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--caramel);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--espresso);
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--caramel);
    font-weight: 700;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.comparison-card {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 16px;
    border: 2px dashed rgba(44, 24, 16, 0.2);
    transition: all 0.3s ease;
    opacity: 0.85;
    filter: grayscale(0.2);
    position: relative;
}

.comparison-card::after {
    content: '❌';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    opacity: 0.5;
}

.comparison-card:hover {
    opacity: 0.9;
}

.comparison-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.comparison-card .info-eyebrow {
    color: #666;
    font-weight: 600;
}

.comparison-card .info-list li {
    color: #444;
    font-weight: 500;
}

.comparison-card .info-list li::before {
    content: '✗';
    color: #d97917;
}

/* Ampra Card - The Winner! */
.comparison-card--highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: 3px solid #8b5cf6;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

.comparison-card--highlight::after {
    content: '';
    display: none;
}

.comparison-card--highlight::before {
    content: '⭐';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.15) rotate(15deg); }
}

.comparison-card--highlight:hover {
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.5);
    transform: scale(1.08) translateY(-5px);
}

.comparison-card--highlight .info-eyebrow {
    color: #fbbf24;
    font-weight: 700;
}

.comparison-card--highlight h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-card--highlight .info-list li {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.comparison-card--highlight .info-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
}

/* Scroll Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .product-hero-grid,
    .split-layout,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
}


/* ===== HOME PAGE PRODUCTS SECTION ===== */

.products-section {
    padding: 100px 0 100px 0;
    background: var(--white);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
}

.products-section::before {
    display: none;
}

.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.products-title {
    font-size: 3rem;
    color: var(--espresso);
    margin-bottom: 20px;
    font-weight: 700;
}

.products-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
}

/* Product Info Banner */
.product-info-banner {
    background: white;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.banner-bar {
    transform: scale(0.8);
    flex-shrink: 0;
}

.product-info-content h3 {
    font-size: 1.8rem;
    color: var(--espresso);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-features-inline span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

/* Quantity Grid Wrapper */
.products-section .quantity-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 40px 0;
    padding: 20px 0;
    left: 0;
    overflow: visible;
}

.quantity-carousel {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.quantity-card {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) !important;
    height: 650px;
    display: flex;
    flex-direction: column;
    flex: 0 0 380px;
    max-width: 380px;
    margin: 0 !important;
    vertical-align: top;
    align-self: flex-start !important;
    top: 0 !important;
}

.quantity-card-inner {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    border-radius: 20px;
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    padding: 32px 28px;
}

.quantity-card-inner .quantity-amount {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    align-self: start;
}

.quantity-card-inner .quantity-header {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
}

.quantity-card-inner .quantity-visual {
    grid-column: 1 / -1;
    grid-row: 2;
}

.quantity-card-inner .quantity-details {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 60px;
    align-self: end;
}

.quantity-card-inner .quantity-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    text-align: center;
}

.quantity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantity-card:hover::before {
    opacity: 1;
}

.quantity-card:last-child {
    border-right: none;
}

.quantity-card:hover {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
    z-index: 10;
}

.quantity-card.active {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    box-shadow: 0 20px 60px rgba(255, 208, 116, 0.3);
    transform: translateY(0) !important;
}

.quantity-card.popular {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    transform: translateY(0) !important;
}

.quantity-card.prev,
.quantity-card.next {
    opacity: 1;
}

/* Popular Card */
.quantity-card.popular {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    box-shadow: 0 20px 50px rgba(255, 208, 116, 0.3);
    transform: translateY(0) !important;
}

.quantity-card.popular.active {
    background: linear-gradient(135deg, rgba(255, 208, 116, 1) 0%, rgba(255, 180, 80, 0.9) 50%, rgba(255, 208, 116, 1) 100%);
    padding: 50px 4px 4px 4px;
    box-shadow: 0 25px 60px rgba(255, 208, 116, 0.4);
    transform: translateY(0) !important;
}

/* Carousel Navigation */
.carousel-nav {
    display: none;
}

.carousel-prev {
    display: none;
}

.carousel-next {
    display: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: none;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: #8b5cf6;
    width: 32px;
    border-radius: 6px;
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 24px;
    background: transparent;
    color: #000000;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: italic;
    text-shadow: none;
    z-index: 10;
}

.quantity-header {
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
    align-self: flex-start;
}

.quantity-card-inner .quantity-header h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.quantity-card-inner .quantity-subtitle {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 700;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quantity-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    margin-bottom: 35px;
}

.box-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.box-stack.bulk {
    gap: 6px;
}

.product-box {
    width: 120px;
    height: 75px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: box-float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.product-box::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.box-label {
    position: absolute;
    top: 8px;
    left: 12px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-box:nth-child(2) { animation-delay: 0.3s; }
.product-box:nth-child(3) { animation-delay: 0.6s; }

@keyframes box-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.quantity-card-inner .quantity-amount {
    background: transparent;
    color: #000000;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    margin: 0;
    text-align: left;
    display: inline-block;
    align-self: flex-start;
    line-height: 1.1;
}

.quantity-card-inner .quantity-amount::before {
    content: attr(data-number);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: #000000;
}

.quantity-card-inner .quantity-amount::after {
    content: 'BARS';
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #000000;
}



.price-amount {
    display: block;
    font-size: 1.4rem;
    color: var(--caramel);
    font-weight: 700;
    margin-bottom: 4px;
}

.price-per {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.quantity-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.quantity-benefits li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
}

.quantity-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.quantity-cta {
    width: 100%;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

/* Products Footer Info */
.products-footer-info {
    text-align: center;
    padding: 30px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
}

.products-footer-info p {
    font-size: 1rem;
    color: var(--text);
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .quantity-carousel-wrapper {
        padding: 0;
        overflow: hidden;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    
    .quantity-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quantity-card {
        width: 100%;
        max-width: 100%;
    }
    
    .quantity-card.active {
        width: 100%;
        max-width: 100%;
    }
    
    .products-title {
        font-size: 2.2rem;
    }
    
    .product-info-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .product-features-inline {
        justify-content: center;
    }
}


/* ===== SLEEK OUR STORY SECTION ===== */

.story-3d-box {
    background: white;
    padding: 60px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(62, 53, 48, 0.08);
    transition: all 0.3s ease;
}

/* Adjust spacing inside the box */
.story-3d-box .section-eyebrow {
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--caramel);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--caramel);
    letter-spacing: 0.05em;
}

.story-3d-box .story-title {
    margin-bottom: 40px;
    position: relative;
    line-height: 1.2;
    font-size: 2.5rem;
    color: var(--espresso);
    font-weight: 600;
}

/* Story Boxes Grid */
.story-boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.story-box {
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    border: 2px solid rgba(62, 53, 48, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 24px;
}

.story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--caramel);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-box:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
    border-color: var(--caramel);
}

.story-box:hover::before {
    opacity: 1;
}

.story-box-content {
    flex: 1;
}

.story-box h3 {
    font-size: 1.3rem;
    color: var(--espresso);
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.story-box h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--caramel);
    border-radius: 2px;
}

.story-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin: 12px 0 0 0;
    font-weight: 400;
}

/* Add icons/numbers to boxes */
.story-box-problem h3::before {
    content: '01';
    display: inline-block;
    font-size: 0.75rem;
    color: var(--caramel);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-right: 12px;
    padding: 4px 10px;
    background: rgba(184, 121, 79, 0.1);
    border-radius: 4px;
}

.story-box-realization h3::before {
    content: '02';
    display: inline-block;
    font-size: 0.75rem;
    color: var(--caramel);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-right: 12px;
    padding: 4px 10px;
    background: rgba(184, 121, 79, 0.1);
    border-radius: 4px;
}

.story-box-solution h3::before {
    content: '03';
    display: inline-block;
    font-size: 0.75rem;
    color: var(--caramel);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-right: 12px;
    padding: 4px 10px;
    background: rgba(184, 121, 79, 0.1);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 968px) {
    .story-boxes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .story-3d-box {
        padding: 30px;
    }
    
    .story-3d-box .story-title {
        font-size: 2rem;
    }
}


/* ===== CLEANER SOCIAL PROOF SECTION ===== */

.sp-section {
    background: linear-gradient(180deg, #FDFCFA 0%, #F5F1E8 100%) !important;
    padding: 80px 0 !important;
}

.sp-head {
    text-align: center;
    margin-bottom: 50px;
}

.sp-badge {
    background: rgba(139, 92, 246, 0.1) !important;
    color: #6d28d9 !important;
    border: 2px solid rgba(139, 92, 246, 0.2) !important;
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
}

.sp-head h2 {
    font-size: 2.5rem !important;
    color: var(--espresso) !important;
    margin: 16px 0 12px !important;
    font-weight: 700 !important;
}

.sp-sub {
    font-size: 1.1rem !important;
    color: #666 !important;
}

.sp-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.sp-card {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.sp-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

.sp-card blockquote {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 0 16px !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.sp-who {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.sp-name {
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 0.9rem !important;
}

.sp-meta {
    font-size: 0.8rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.sp-band {
    margin-top: 50px !important;
    background: white !important;
    border: 2px solid rgba(139, 92, 246, 0.1) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.sp-stat {
    text-align: center !important;
    padding: 10px !important;
}

.sp-num {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #8b5cf6 !important;
    margin-bottom: 8px !important;
}

.sp-label {
    font-size: 0.9rem !important;
    color: #666 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

@media (max-width: 968px) {
    .sp-grid {
        grid-template-columns: 1fr !important;
    }
    
    .sp-band {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* ===== COMPREHENSIVE MOBILE FIXES ===== */

@media (max-width: 768px) {
    /* Hero Section */
    .hero-headline {
        font-size: 6rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-subtext {
        font-size: 1.2rem !important;
    }
    
    .hero-details .hero-product-showcase {
        margin-top: 60px !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .hero-cta-group .cta-primary,
    .hero-cta-group .cta-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Products Section */
    .products-section {
        padding: 80px 0 60px 0 !important;
    }
    
    .products-title {
        font-size: 2rem !important;
    }
    
    .products-subtitle {
        font-size: 1rem !important;
    }
    
    /* Story Section */
    .story-3d-box {
        padding: 24px !important;
        transform: none !important;
    }
    
    .story-3d-box .section-eyebrow {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
    }
    
    .story-3d-box .story-title {
        font-size: 2rem !important;
    }
    
    .story-boxes-grid {
        gap: 16px !important;
    }
    
    .story-box {
        padding: 20px !important;
    }
    
    /* Image */
    .story-image {
        transform: none !important;
    }
    
    .story-visual::before {
        display: none !important;
    }
    
    /* Social Proof */
    .sp-head h2 {
        font-size: 1.8rem !important;
    }
    
    .sp-card {
        padding: 20px !important;
    }
    
    /* Navigation */
    .nav-link {
        font-size: 16px !important;
    }
    
    /* Container padding */
    .container {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-headline {
        font-size: 5rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .products-title {
        font-size: 1.8rem !important;
    }
    
    .story-3d-box .story-title {
        font-size: 1.8rem !important;
    }
    
    .quantity-card {
        padding: 24px 20px !important;
    }
}


/* ===== SCIENCE SECTION REDESIGN ===== */
.science-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin: 40px 0;
}

.science-text h3 {
  font-size: 2rem;
  color: var(--deep-plum);
  margin-bottom: 16px;
}

.science-intro {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.science-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.science-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
  border-radius: 12px;
  border: 2px solid #e9d5ff;
}

.point-content h4 {
  font-size: 1.2rem;
  color: var(--deep-plum);
  margin-bottom: 6px;
  font-weight: 600;
}

.point-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.science-graph {
  background: linear-gradient(135deg, #faf8ff 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
  border: 2px solid #e9d5ff;
}

.curve-enhanced {
  margin: 0;
}

.curve-enhanced svg {
  width: 100%;
  height: auto;
  display: block;
}

.curve-enhanced figcaption {
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 16px;
  font-style: italic;
}

/* Mobile responsive */
@media (max-width: 968px) {
  .science-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .science-text h3 {
    font-size: 1.6rem;
  }
  
  .science-intro {
    font-size: 1rem;
  }
  
  .point-icon {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .point-content h4 {
    font-size: 1.1rem;
  }
  
  .point-content p {
    font-size: 0.9rem;
  }
  
  .science-graph {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .science-text h3 {
    font-size: 1.4rem;
  }
  
  .science-points {
    gap: 20px;
  }
  
  .point-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .point-content h4 {
    font-size: 1rem;
  }
  
  .curve-enhanced figcaption {
    font-size: 0.85rem;
  }
}


/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */

/* Reduce animations on mobile for better performance */
@media (max-width: 768px) {
  /* Simplify or disable heavy animations */
  .bar-3d,
  .product-box,
  .story-3d-box {
    transform: none !important;
    transition: transform 0.2s ease !important;
  }
  
  /* Reduce animation complexity */
  * {
    animation-duration: 0.3s !important;
  }
  
  /* Optimize transforms for mobile */
  .quantity-card,
  .ing-card,
  .science-point {
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize images */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
  
  /* Reduce carousel complexity on mobile */
  .quantity-carousel {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Simplify hover effects on mobile (use tap instead) */
  .quantity-card:hover,
  .ing-card:hover {
    transform: none !important;
  }
  
  /* Optimize SVG rendering */
  svg {
    shape-rendering: optimizeSpeed;
  }
  
  /* Reduce shadow complexity */
  .quantity-card,
  .ing-card,
  .story-3d-box,
  .science-graph {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  /* Further reduce animations */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Keep only essential transitions */
  a, button, .nav-link {
    transition: opacity 0.2s ease !important;
  }
  
  /* Optimize font rendering */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  button,
  a,
  .nav-link,
  .carousel-nav,
  .indicator {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
  }
  
  /* Larger touch areas for carousel */
  .carousel-nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(217, 121, 23, 0.3);
  }
  
  .carousel-prev {
    left: -8px;
  }
  
  .carousel-next {
    right: -8px;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
  }
}

/* Prevent layout shift on mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Fixed aspect ratios to prevent reflow */
  .curve svg,
  .bar-3d,
  .product-box {
    aspect-ratio: auto;
  }
  
  /* Optimize grid layouts */
  .ing-grid,
  .science-points,
  .quantity-carousel {
    gap: 16px;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===== PREVENT HORIZONTAL SCROLL ON MOBILE ===== */

/* Lock viewport width */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Ensure all containers respect viewport width */
* {
  max-width: 100%;
}

/* Fix common overflow culprits */
.container,
.hero-details,
.products-section,
.science-section,
.our-story,
.sp-section {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Prevent SVG overflow */
svg {
  max-width: 100%;
  height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Fix carousel overflow */
.quantity-carousel-wrapper {
  overflow: hidden;
  max-width: 100%;
}

.quantity-carousel {
  max-width: 100%;
}

/* Fix grid overflow on mobile */
@media (max-width: 768px) {
  .ing-grid,
  .nt-grid,
  .story-grid,
  .products-header,
  .science-points {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix any absolute positioned elements */
  .page-top-gradient,
  .hero::after,
  .science-section::after {
    max-width: 100vw;
    overflow: hidden;
  }
  
  /* Prevent marquee overflow */
  .introducing-banner,
  .introducing-marquee {
    max-width: 100vw;
    overflow: hidden;
  }
}

/* Extra safety for small screens */
@media (max-width: 480px) {
  body {
    overflow-x: hidden !important;
    width: 100vw;
  }
  
  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
  }
}


/* ===== HERO MOBILE FIX - STACK VERTICALLY ===== */
@media (max-width: 768px) {
  .hero-details .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    min-height: auto !important;
    padding: 40px 20px !important;
  }
  
  .hero-text-side {
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: contents !important;
  }
  
  .hero-headline {
    font-size: 6rem !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    order: 1 !important;
    text-align: center !important;
    max-width: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-subtext {
    font-size: 1rem !important;
    margin: 16px 0 24px !important;
    order: 2 !important;
    text-align: center !important;
  }
  
  .hero-product-showcase {
    display: flex !important;
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    margin: 20px 0 !important;
  }
  
  .hero-product-card-large {
    max-width: 320px !important;
    width: 100% !important;
  }
  
  .hero-cta-group {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
    order: 4 !important;
  }
  
  .hero-cta-group a {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
  }
  
  .hero-colorblock-wrapper {
    margin-top: 40px !important;
  }
  
  .color-block {
    padding: 30px 20px !important;
  }
  
  .block-text {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  .hero-details .container {
    padding: 30px 16px !important;
    gap: 30px !important;
  }
  
  .hero-headline {
    font-size: 5rem !important;
  }
  
  .hero-subtext {
    font-size: 0.95rem !important;
  }
  
  .block-text {
    font-size: 1.25rem !important;
  }
  
  .hero-cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100% !important;
    text-align: center !important;
  }
  
  .block-text {
    font-size: 1.25rem !important;
  }
}


/* ===== SPLIT IMAGE PROMO SECTION ===== */
.split-promo-section {
  padding: 80px 80px;
  margin: 0;
  background: white;
}

.split-promo-grid {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.split-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-promo-row-reverse {
  direction: ltr;
}

.split-promo-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.split-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 100px;
  background: #f8f6f3;
}

.split-promo-row-reverse .split-promo-content {
  background: #f5f0eb;
}

.split-promo-eyebrow {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.split-promo-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2C1810;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.split-promo-divider {
  width: 60px;
  height: 2px;
  background: #2C1810;
  margin: 0 0 30px 0;
}

.split-promo-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px 0;
  max-width: 450px;
}

.split-promo-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #2C1810;
  background: transparent;
  color: #2C1810;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.split-promo-btn:hover {
  background: #2C1810;
  color: #f8f6f3;
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .split-promo-section {
    padding: 60px 40px;
  }
  
  .split-promo-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .split-promo-row-reverse {
    direction: ltr;
  }
  
  .split-promo-row-reverse .split-promo-content {
    order: 1;
  }
  
  .split-promo-row-reverse .split-promo-image {
    order: 2;
  }
  
  .split-promo-image {
    min-height: 350px;
  }
  
  .split-promo-content {
    padding: 60px 40px;
  }
  
  .split-promo-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .split-promo-section {
    padding: 40px 20px;
  }
  
  .split-promo-content {
    padding: 40px 24px;
  }
  
  .split-promo-title {
    font-size: 2rem;
  }
  
  .split-promo-text {
    font-size: 0.95rem;
  }
  
  .split-promo-image {
    min-height: 300px;
  }
}


/* Story Section - Simple Format */
.story-section-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 40px;
}

.story-box-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px;
    border: 1px solid rgba(62, 53, 48, 0.15);
}

.story-headline-top {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    text-align: left;
}

.story-grid-simple {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-photo {
    background: #e8e8e8;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

.story-content-simple {
    padding: 20px 40px 20px 0;
}

.story-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.story-content-simple p {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: #000000 !important;
    margin-bottom: 26px !important;
    font-weight: 500 !important;
}

.story-signature {
    font-size: 1rem !important;
    color: #000000 !important;
    margin-top: 30px !important;
    font-style: italic !important;
}

@media (max-width: 968px) {
    .story-grid-simple {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-headline {
        font-size: 2rem;
    }
}


/* ===== HAMBURGER MENU (MOBILE ONLY) ===== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when open */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-top: 80px;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--espresso);
  text-decoration: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-nav-link:hover {
  background: rgba(217, 121, 23, 0.1);
  color: var(--caramel);
}

.mobile-nav-link.mobile-cta {
  background: linear-gradient(135deg, var(--caramel), var(--coffee-orange));
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: 700;
}

.mobile-nav-link.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(217, 121, 23, 0.3);
}

/* Show hamburger and hide desktop nav on mobile */
@media (max-width: 760px) {
  .hamburger-menu {
    display: flex;
  }

  .main-nav,
  .cta-contact {
    display: none !important;
  }
}




/* ===== REVIEWS MARQUEE ANIMATION ===== */
.customer-reviews-section .reviews-carousel-wrapper {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 40px 0 !important;
    position: relative !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    -webkit-overflow-scrolling: auto !important;
    scroll-behavior: auto !important;
}

.customer-reviews-section .reviews-carousel-track {
    display: flex !important;
    gap: 24px !important;
    animation: scroll-reviews 40s linear infinite !important;
    width: max-content !important;
    will-change: transform !important;
}

.customer-reviews-section .reviews-carousel-track:hover {
    animation-play-state: paused !important;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0) !important;
    }
    100% {
        transform: translateX(-50%) !important;
    }
}

.customer-reviews-section .customer-review-card {
    min-width: 380px !important;
    max-width: 380px !important;
    flex-shrink: 0 !important;
    background: var(--white) !important;
    padding: 32px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.customer-reviews-section .customer-review-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1) !important;
}

@media (max-width: 768px) {
    .customer-reviews-section .customer-review-card {
        min-width: 300px !important;
        max-width: 300px !important;
    }
    
    .customer-reviews-section .reviews-carousel-track {
        animation: scroll-reviews 18s linear infinite !important;
    }
}


/* Quantity Buy Now Buttons - Extra appealing */
.quantity-cta {
    background: linear-gradient(135deg, #2C1810 0%, #3E2723 100%) !important;
    color: #F5F1E8 !important;
    padding: 18px 48px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(44, 24, 16, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    width: 100% !important;
}

.quantity-cta::after {
    content: '→' !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(0) !important;
    transition: transform 0.3s ease !important;
    font-size: 1.3rem !important;
}

.quantity-cta:hover {
    background: linear-gradient(135deg, #3E2723 0%, #4E3329 100%) !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.quantity-cta:hover::after {
    transform: translateY(-50%) translateX(5px) !important;
}

.quantity-cta:active {
    transform: translateY(-2px) scale(1.01) !important;
}

/* Popular card button - same as others for consistency */
.quantity-card.popular .quantity-cta {
    background: linear-gradient(135deg, #2C1810 0%, #3E2723 100%) !important;
    box-shadow: 0 6px 20px rgba(44, 24, 16, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.quantity-card.popular .quantity-cta:hover {
    background: linear-gradient(135deg, #3E2723 0%, #4E3329 100%) !important;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}


/* Mobile Product Cards Layout */
@media (max-width: 768px) {
    .products-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .quantity-carousel-wrapper {
        display: block !important;
        padding: 20px 0 !important;
        overflow: visible !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .carousel-nav {
        display: none !important;
    }
    
    .quantity-carousel {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 12px !important;
        padding: 0 !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .quantity-card {
        min-width: unset !important;
        max-width: unset !important;
        width: 100% !important;
        padding: 16px 10px !important;
        box-sizing: border-box !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    /* First two cards side by side */
    .quantity-card[data-index="0"],
    .quantity-card[data-index="1"] {
        grid-column: span 1 !important;
    }
    
    /* Family Pack spans full width */
    .quantity-card[data-index="2"] {
        grid-column: span 2 !important;
    }
    
    /* Adjust card content for mobile */
    .quantity-card .quantity-visual {
        padding: 4px !important;
        margin: 4px 0 !important;
    }
    
    .quantity-card .product-box {
        transform: scale(0.6) !important;
    }
    
    .quantity-card .quantity-header {
        margin-bottom: 6px !important;
    }
    
    .quantity-card .quantity-header h3 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }
    
    .quantity-card .quantity-subtitle {
        font-size: 0.7rem !important;
    }
    
    .quantity-card .quantity-details {
        margin-top: 6px !important;
    }
    
    .quantity-card .quantity-price {
        font-size: 1.1rem !important;
        margin-bottom: 6px !important;
    }
    
    .quantity-cta {
        padding: 8px 6px !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .quantity-cta::after {
        display: none !important;
    }
    
    /* Family Pack button stretches full width */
    .quantity-card[data-index="2"] .quantity-cta {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        white-space: normal !important;
        display: block !important;
    }
    
    .quantity-card[data-index="2"] .quantity-details {
        width: 100% !important;
    }
    
    .quantity-card .quantity-amount {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .popular-badge {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        top: -12px !important;
    }
}

    
    /* Fix Duo Pack subtitle to stay on one line */
    .quantity-card[data-index="1"] .quantity-subtitle {
        white-space: nowrap !important;
    }

    
    /* Fix Our Story section spacing on mobile */
    .our-story .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }
    
    .our-story .story-box-wrapper {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .our-story .story-headline-top {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 24px !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .our-story .story-grid-simple {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 20px !important;
        padding: 0 !important;
    }
    
    .our-story .story-content-simple {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .our-story .story-content-simple p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
    }
    
    .our-story .story-signature {
        margin-top: 24px !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    
}

/* Cart Button */
.site-header .cart-btn {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--espresso);
    background: white;
    border: 2px solid rgba(44, 24, 16, 0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
}

.site-header .cart-btn svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5;
}

.site-header .cart-btn:hover {
    background: var(--cream);
    border-color: var(--caramel);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 24, 16, 0.15);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    border: 2px solid white;
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
    animation: pop-in 0.3s ease;
}

@keyframes pop-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .site-header .cart-btn {
        display: flex !important;
        margin-left: 8px !important;
    }
    
    .site-header .header-inner {
        display: flex !important;
        align-items: center !important;
    }


/* Wavy Border Container for Our Story Section */
.wavy-border-container {
    position: relative !important;
    background: #F5F1E8 !important;
    padding: 60px 40px !important;
    border: 6px solid #2d5f3f !important;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px !important;
}

@media (max-width: 768px) {
    .wavy-border-container {
        padding: 40px 24px !important;
        border-radius: 155px 15px 125px 15px/15px 125px 15px 155px !important;
    }
}

/* ===== NEW OUR STORY SECTION STYLES ===== */
.our-story-new {
  min-height: 100vh !important;
  background: #0b5e3a !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 80px 24px !important;
}

.our-story-container {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Bold graphic elements */
.our-story-graphics {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}

.graphic-star {
  position: absolute;
  font-size: 300px;
  transform: rotate(-12deg);
  left: -80px;
  top: 40px;
  color: #f9f6ef;
  user-select: none;
}

.graphic-bolt {
  position: absolute;
  font-size: 200px;
  transform: rotate(12deg);
  right: 40px;
  bottom: 80px;
  color: #f9f6ef;
  user-select: none;
}

.graphic-circle {
  position: absolute;
  font-size: 150px;
  transform: rotate(-6deg);
  right: 25%;
  top: 25%;
  color: #f9f6ef;
  user-select: none;
}

.our-story-content {
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Title - Big and Bold */
.our-story-header {
  margin-bottom: 48px;
}

.our-story-title {
  color: #f9f6ef;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.our-story-title-highlight {
  display: block;
  background: linear-gradient(to right, #6B9F3E, #8FD14F, #6B9F3E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 0;
  animation: pulse 2s ease-in-out infinite;
}

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

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Left side - Text content */
.our-story-text-wrapper {
  position: relative;
}

.our-story-text-box {
  background: #f9f6ef !important;
  padding: 40px !important;
  position: relative !important;
  border: 4px solid black !important;
  box-shadow: 8px 8px 0px 0px rgba(107, 159, 62, 1) !important;
  transition: box-shadow 0.3s ease !important;
}

.our-story-text-box:hover {
  box-shadow: 12px 12px 0px 0px rgba(107, 159, 62, 1);
}

.corner-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  background: #6B9F3E;
  color: black;
  padding: 8px 16px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid black;
}

.our-story-text-content {
  color: #0b5e3a;
}

.our-story-text-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-highlight {
  background: #6B9F3E;
  color: white;
  padding: 2px 8px;
  transform: rotate(-1deg);
  display: inline-block;
}

.our-story-tagline {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.our-story-tagline svg {
  color: #6B9F3E;
  flex-shrink: 0;
}

.our-story-tagline p {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.decorative-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
  background: #8FD14F;
  z-index: -1;
  transform: rotate(12deg);
}

/* Right side - Image with polaroid style */
.our-story-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.polaroid-container {
  position: relative;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.polaroid-container:hover {
  transform: rotate(0deg);
}

.polaroid-frame {
  background: white;
  padding: 24px;
  padding-bottom: 64px;
  box-shadow: 12px 12px 0px 0px rgba(0, 0, 0, 1);
  border: 2px solid black;
}

.polaroid-image {
  overflow: hidden;
  border: 2px solid black;
}

.polaroid-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  object-fit: cover;
}

.polaroid-caption {
  text-align: center;
  margin-top: 24px;
  color: black;
  font-size: 1.125rem;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* Sticker-style accents */
.sticker-bolt {
  position: absolute;
  top: -24px;
  right: -24px;
  background: #6B9F3E;
  color: white;
  padding: 8px 16px;
  border-radius: 50%;
  border: 2px solid black;
  transform: rotate(12deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sticker-est {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #8FD14F;
  color: black;
  padding: 4px 12px;
  transform: rotate(-8deg);
  border: 2px solid black;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .our-story-title {
    font-size: 4.5rem;
  }
  
  .our-story-title-highlight {
    margin-left: 32px;
  }
  
  .our-story-header {
    margin-bottom: 64px;
  }
  
  .our-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .our-story-image-wrapper {
    justify-content: flex-end;
  }
}

@media (min-width: 1280px) {
  .our-story-title {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .our-story-new {
    padding: 60px 16px;
  }
  
  .our-story-title {
    font-size: 2.5rem;
  }
  
  .our-story-text-box {
    padding: 32px;
  }
  
  .graphic-star {
    font-size: 150px;
    left: -40px;
  }
  
  .graphic-bolt {
    font-size: 100px;
  }
  
  .graphic-circle {
    font-size: 80px;
  }
}
