/* =========================================
   Premium Dark Chocolate & Antique Gold Theme
   Inspired by BB "Flavours of Southeast Asia" Branding
========================================= */
:root {
    /* ── Core Brand Palette ── */
    --primary-color: #C9A96E;
    /* Antique Gold — from BB logo metallic */
    --primary-dark: #A8823F;
    /* Deeper burnished gold */
    --primary-light: #E8D5A8;
    /* Champagne highlight */

    /* ── Accent Colours ── */
    --accent-cream: #F5ECD7;
    /* Parchment / badge background */
    --accent-rust: #8B4513;
    /* Sarawak spice rust */
    --accent-green: #6B8C5A;
    /* Subtle herb green badge */
    --accent-yellow: #D4A853;
    /* Warm honey */
    --accent-blue: #2563EB;
    /* Rich Royal Blue */

    /* ── Text ── */
    --text-dark: #2C1A0E;
    /* Deep espresso */
    --text-mid: #5C3317;
    /* Warm chocolate brown */
    --text-light: #FDF8F0;
    /* Off-white parchment */
    --text-gold: #C9A96E;
    /* Gold for accents on dark */

    /* ── Backgrounds ── */
    --bg-white: #FDF8F0;
    /* Warm parchment (main bg) */
    --bg-light: #F7F0E3;
    /* Soft champagne parchment for smooth blend */
    --bg-dark: #1E0F06;
    /* Near-black espresso */
    --bg-mid: #3D1F0D;
    /* Rich chocolate brown */

    /* ── Typography ── */
    --font-chunky: 'Playfair Display', Georgia, serif;
    --font-hand: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* ── Borders & Shadows ── */
    --border-thick: 3px solid var(--primary-color);
    --border-subtle: 1px solid rgba(201, 169, 110, 0.3);

    --shadow-gold: 0 8px 32px rgba(168, 130, 63, 0.25);
    --shadow-pop: 6px 6px 0px rgba(201, 169, 110, 0.35);
    --shadow-solid: 5px 5px 0px var(--primary-dark);
    --shadow-solid-hover: 8px 8px 0px var(--primary-dark);
    --shadow-deep: 0 20px 60px rgba(44, 26, 14, 0.3);

    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Typography & Utilities
========================================= */
.chunky-heading {
    font-family: var(--font-chunky);
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.handwritten-heading {
    font-family: var(--font-hand);
    color: var(--text-dark);
    font-size: 2.5rem;
    transform: rotate(-3deg);
    display: inline-block;
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

.text-accent {
    color: var(--primary-color);
}

.bg-highlight {
    background-color: var(--bg-white);
    padding: 0.2em 0.5em;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transform: rotate(-2deg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Elegant gold text glow */
.text-shadow-pop {
    text-shadow: 0 2px 12px rgba(201, 169, 110, 0.5);
}

/* Premium 3D Cards */
.card-3d {
    border: var(--border-thick);
    box-shadow: var(--shadow-pop);
    transition: var(--transition);
}

.card-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-solid-hover);
}

.card-tilt-left {
    transform: rotate(-1.5deg);
}

.card-tilt-right {
    transform: rotate(1.5deg);
}

.card-tilt-left:hover {
    transform: translateY(-8px) scale(1.02) rotate(-2.5deg);
}

.card-tilt-right:hover {
    transform: translateY(-8px) scale(1.02) rotate(2.5deg);
}

/* Wavy Dividers */
.wave-divider {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.wave-top {
    top: -1px;
    transform: scaleY(-1);
}

.wave-top-reverse {
    top: -1px;
}

.wave-bottom {
    bottom: -1px;
}

/* Subtle Gold Dot Background */
.polka-bg {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(201, 169, 110, 0.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}


/* =========================================
   Playful Floating Crumbs
========================================= */
.decorations-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.crumb {
    position: absolute;
    fill: var(--primary-color);
    opacity: 0.15;
    animation: float-crumb 20s infinite linear;
}

.crumb-1 {
    top: 15%;
    left: 5%;
    width: 25px;
    animation-duration: 25s;
}

.crumb-2 {
    top: 30%;
    right: 10%;
    width: 18px;
    animation-direction: reverse;
    fill: var(--text-dark);
    opacity: 0.1;
}

.crumb-3 {
    top: 70%;
    left: 15%;
    width: 30px;
    animation-duration: 30s;
}

.crumb-4 {
    top: 80%;
    right: 20%;
    width: 15px;
}

.crumb-5 {
    top: 50%;
    left: 80%;
    width: 20px;
    animation-duration: 22s;
    fill: var(--text-dark);
    opacity: 0.1;
}

.crumb-6 {
    top: 40%;
    left: 10%;
    width: 25px;
    animation-direction: reverse;
}

.crumb-7 {
    top: 10%;
    left: 50%;
    width: 15px;
    animation-duration: 28s;
}

.crumb-8 {
    top: 90%;
    left: 40%;
    width: 20px;
}

@keyframes float-crumb {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* =========================================
   Buttons
========================================= */
.btn-chunky {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-chunky);
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-3d {
    border: var(--border-thick);
    box-shadow: var(--shadow-solid);
}

.btn-3d:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-solid-hover);
    color: var(--text-light);
}

.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

.btn-small {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-width: 2px;
}

/* =========================================
   Header & Modern Artisanal Branding
========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

header.scrolled {
    box-shadow: 0 10px 40px rgba(44, 26, 14, 0.18);
}

/* Announcement Clip Wrapper — collapses height, clipping bar upward */
.announcement-clip {
    overflow: hidden;
    height: 36px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

header.scrolled .announcement-clip {
    height: 0;
}

/* Announcement Top Bar — stays at top of clip, gets clipped from below as wrapper collapses */
.top-announcement-bar {
    background: var(--bg-dark);
    color: var(--primary-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    white-space: nowrap;
    user-select: none;
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
}

.top-announcement-bar:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
    animation: infiniteTicker 28s linear infinite;
    padding-left: 2rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ticker-item i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.ticker-dot {
    color: var(--primary-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

@keyframes infiniteTicker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Main Header Container */
.header-main {
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

header.scrolled .header-main {
    padding: 0.5rem 0;
    background: rgba(253, 248, 240, 0.99);
}

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

/* Social Media Icons (Left) */
.header-socials {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
}

.header-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 31, 18, 0.05);
    color: var(--text-dark);
    font-size: 1.15rem;
    border: 1px solid rgba(201, 169, 110, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}

.header-social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.35);
}

/* Brand Logo (Center) */
.brand-logo-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.brand-logo-center:hover {
    transform: translateY(-1px);
}

/* BB Logo image in header */
.header-bb-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo-center:hover .header-bb-logo {
    transform: scale(1.04);
    opacity: 0.95;
}

/* Header Utilities (Right Side) */
.header-utils {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Header Nav Strip (Navbar items under announcement bar) */
.header-nav-strip {
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.22);
    padding: 0.65rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(253, 248, 240, 0.85);
    letter-spacing: 2.2px;
    position: relative;
    padding: 0.2rem 0;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.4) 0%, rgba(245, 236, 215, 1) 50%, rgba(201, 169, 110, 0.4) 100%);
    border-radius: 50px;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
    color: #F5ECD7;
}

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

/* Header CTA Button */
.btn-header-cta {
    background: linear-gradient(135deg, #D4A853 0%, #C9A96E 50%, #A8823F 100%);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 18px rgba(168, 130, 63, 0.35);
    transition: all 0.25s ease;
}

.btn-header-cta:hover {
    background: linear-gradient(135deg, #E8D5A8 0%, #C9A96E 50%, #B8924B 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(168, 130, 63, 0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    background: var(--bg-light);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--text-dark);
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Hero Section (Clean Single Column with BG Image)
========================================= */
.hero-section {
    padding: 3.2rem 0 10rem;
    background: url('images/hero_bg_cookies.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 15, 8, 0.65);
    /* Dark overlay */
    z-index: 1;
}

/* Warm Glows */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    bottom: 0;
    right: 0;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-text {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    top: 5%;
    left: 2%;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--bg-mid);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.6;
}

.p-1 {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 10%;
}

.p-2 {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 5%;
}

.p-3 {
    width: 15px;
    height: 15px;
    top: 30%;
    right: 40%;
}

.p-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 45%;
}

.p-5 {
    width: 18px;
    height: 18px;
    top: 15%;
    right: 15%;
}

/* Custom Hero Tag (Dripping Chocolate Style) */
.dripping-tag {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.dripping-tag .tag-content {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-mid);
    color: var(--bg-white);
    font-family: var(--font-chunky);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px 6px 0 0;
}

.dripping-tag i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.dripping-tag .drip-edge {
    width: 100%;
    height: 24px;
    display: block;
    margin-top: -1px;
    /* Prevent tiny gaps */
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 993px) {
    .hero-section .hero-container {
        margin-left: 0;
        padding-left: 4rem;
        max-width: 100%;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    padding-left: 1.5rem;
}

.highlight-text-light {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Brush Underline */
.brush-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
    opacity: 0.9;
}

.brush-underline path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: draw-underline 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes draw-underline {
    to {
        stroke-dashoffset: 0;
    }
}

/* Mouse Crumb Trail */
.mouse-crumb {
    position: absolute;
    background: #5c3018;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic crumb shape */
    pointer-events: none;
    z-index: 9999;
    animation: crumb-fall 0.8s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes crumb-fall {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: scale(0) translateY(40px) rotate(180deg);
    }
}

/* Certification Logos in Hero Section (No Background, Display As-Is) */
.hero-logos-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
}

.hero-cert-logo {
    height: 55px;
    /* Clean, prominent height */
    width: auto;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
}

.hero-cert-halal {
    height: 85px;
    /* Much bigger Halal logo on Hero */
}

.hero-cert-mesti {
    height: 60px;
}

.hero-cert-logo:hover {
    transform: scale(1.08);
}

.hero-title {
    font-family: var(--font-chunky);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -webkit-font-smoothing: antialiased;
}

.hero-title-accent {
    position: relative;
    display: inline-block;
    font-family: var(--font-chunky);
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5ECD7 35%, #E8D5A8 70%, #C9A96E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.15em;
    padding-bottom: 0.12em;
    filter: drop-shadow(0 4px 18px rgba(201, 169, 110, 0.35));
}

.hero-title-underline {
    position: absolute;
    bottom: -4px;
    left: 2%;
    width: 96%;
    height: 2.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, 0.9) 15%, rgba(245, 236, 215, 1) 50%, rgba(201, 169, 110, 0.9) 85%, transparent 100%);
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
    pointer-events: none;
}

.hero-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #D4A853 0%, #C9A96E 50%, #A8823F 100%);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 28px rgba(168, 130, 63, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: buttonShine 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #E8D5A8 0%, #C9A96E 50%, #B8924B 100%);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(201, 169, 110, 0.55), 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Fixed Hero Pouch Backdrop (Behind Cookie) */
.hero-pouch-backdrop-wrap {
    position: absolute;
    bottom: -10px;
    right: 12%;
    z-index: 1;
    /* Positioned behind parallax cookie (z-index: 2) and curve (z-index: 3) */
    pointer-events: none;
}

.hero-pouch-backdrop {
    width: 520px;
    /* BIG & PROMINENT POUCH */
    height: auto;
    display: block;
    transform: rotate(-6deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
}

/* Mockup swap — stacks both images, premium scale+fade transition */
.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
}

.mockup-slide--1 {
    position: relative;
    /* holds wrapper dimensions */
    animation: mockupSwap1 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Jar is intentionally smaller than the pouch, shifted right */
.mockup-slide--2 {
    width: 280px;
    left: 110px;
    opacity: 0;
    animation: mockupSwap2 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image 1 (Pouch): visible → scales+fades out → hidden → scales+fades back in */
@keyframes mockupSwap1 {
    0% {
        opacity: 1;
        transform: rotate(-6deg) scale(1);
    }

    35% {
        opacity: 1;
        transform: rotate(-6deg) scale(1);
    }

    47% {
        opacity: 0;
        transform: rotate(-6deg) scale(0.92);
    }

    50% {
        opacity: 0;
        transform: rotate(-6deg) scale(0.92);
    }

    88% {
        opacity: 0;
        transform: rotate(-6deg) scale(1.06);
    }

    100% {
        opacity: 1;
        transform: rotate(-6deg) scale(1);
    }
}

/* Image 2 (Jar): hidden → scales+fades in → visible → scales+fades out */
@keyframes mockupSwap2 {
    0% {
        opacity: 0;
        transform: rotate(-6deg) scale(1.06);
    }

    35% {
        opacity: 0;
        transform: rotate(-6deg) scale(1.06);
    }

    47% {
        opacity: 1;
        transform: rotate(-6deg) scale(1);
    }

    85% {
        opacity: 1;
        transform: rotate(-6deg) scale(1);
    }

    97% {
        opacity: 0;
        transform: rotate(-6deg) scale(0.92);
    }

    100% {
        opacity: 0;
        transform: rotate(-6deg) scale(0.92);
    }
}

/* Decorative Parallax Cookie Container */
.parallax-cookie-container {
    position: absolute;
    bottom: -100px;
    right: 2%;
    width: 450px;
    z-index: 2;
    pointer-events: none;
    /* Disabled when scrolling */
}

.parallax-cookie-container .cookie-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.parallax-cookie-container.at-top {
    pointer-events: auto;
}

.parallax-cookie-container.at-top .cookie-img {
    cursor: grab;
}

.parallax-cookie-container.at-top:active .cookie-img {
    cursor: grabbing;
}

.parallax-cookie-container.at-top:hover .cookie-img {
    transform: scale(1.08) rotate(-4deg) translateY(-10px);
    filter: drop-shadow(0 40px 50px rgba(232, 110, 28, 0.5));
}

/* Tooltip Styles */
.cookie-tooltip {
    position: absolute;
    top: -5%;
    left: 5%;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--text-dark);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 6px 6px 0px var(--primary-color);
    opacity: 0;
    transform: translateY(100px) rotate(-25deg) scale(0.5);
    transform-origin: bottom center;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    /* Renders on top of the cookie */
}

.parallax-cookie-container.at-top:hover .cookie-tooltip {
    opacity: 1;
    transform: translateY(0) rotate(5deg) scale(1);
    pointer-events: auto;
}

/* Cookie Annotation */
.cookie-annotation {
    position: absolute;
    top: -30px;
    right: 20px;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg-white);
    font-family: var(--font-chunky);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transform: rotate(8deg);
    z-index: 5;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: float-annotation 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.cookie-annotation svg {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

@keyframes float-annotation {

    0%,
    100% {
        transform: rotate(8deg) translateY(0);
    }

    50% {
        transform: rotate(8deg) translateY(-8px);
    }
}

/* Hide annotation when tooltip appears */
.parallax-cookie-container.at-top:hover .cookie-annotation {
    opacity: 0;
}

/* Tooltip internal styling */
.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-name {
    font-family: var(--font-chunky);
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.cookie-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.price-prefix {
    font-family: var(--font-chunky);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 2px;
}

.cookie-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
    white-space: nowrap;
    line-height: 1;
}

.cookie-desc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-quick-add {
    width: 100%;
    padding: 0.6rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--text-dark);
    border-radius: 6px;
    font-family: var(--font-chunky);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-quick-add:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 3px 3px 0px var(--text-dark);
}

/* Bottom Curve */
.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

.hero-bottom-curve path {
    fill: url(#hero-polka-pattern);
}

/* =========================================
   Interactive Showcase Section ("Our Signature Flavors")
========================================= */
.showcase-section {
    padding: 3rem 0 4.5rem;
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(201, 169, 110, 0.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
}

/* Title wrapper — sits behind the cookie card */
.showcase-title-wrap {
    position: relative;
    z-index: 0;
}

.showcase-title {
    font-family: var(--font-chunky);
    font-size: 4.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 auto 2.5rem auto;
    position: relative;
    display: block;
    width: fit-content;
    text-shadow: 2px 2px 4px rgba(201, 169, 110, 0.2);
}

/* Add a subtle glow behind the grid */
.showcase-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 110, 28, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    /* Reduced gap slightly to ensure they fit in one line */
    margin-top: 4rem;
    flex-wrap: nowrap;
    /* Force one line */
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* 2-Column Split Layout (Video on Left, Pouch Cookie on Right) */
.showcase-split-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Left Column Wrapper */
.showcase-left-col {
    flex: 1.2;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
    z-index: 2;
}

/* Halal, MeSTI & SSM Certification Header (Outside & Above Video Card) */
.video-cert-header {
    background: var(--bg-white);
    border: 2px solid var(--text-dark);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    box-shadow: 4px 4px 0px var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-cert-header:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px var(--primary-color);
}

.cert-logos-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.video-cert-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.cert-logo-halal {
    height: 42px;
}

.cert-logo-mesti {
    height: 34px;
}

.cert-info {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex-shrink: 0;
}

.cert-heading {
    font-family: var(--font-chunky);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    margin: 0;
    white-space: nowrap;
}

.cert-heading i {
    color: #25D366;
    /* Verified green checkmark */
    font-size: 1.15rem;
}

.cert-subtext {
    font-size: 0.78rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 600;
    white-space: nowrap;
}

/* Video Card Styling (Left Column - Abnormal Overlapping Sticker Badges) */
.showcase-video-card {
    flex: 1.2;
    max-width: 560px;
    background: var(--bg-white);
    border: 3px solid var(--text-dark);
    border-radius: 24px;
    padding: 0;
    box-shadow: 8px 8px 0px var(--primary-color);
    position: relative;
    overflow: visible;
    /* Allow sticker badges to hang over edges! */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 12px 12px 0px var(--primary-color);
}

.video-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 21px;
    /* Rounded inner video frame */
    display: flex;
}

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

/* Abnormal Artisanal Sticker Badges Styling */
.sticker-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    border: 2px solid var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
    z-index: 5;
    pointer-events: auto;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.sticker-badge:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 6px 6px 0px var(--text-dark);
    cursor: pointer;
}

/* 1. Top-Left Badge: Gold Chunky Ribbon (Tilted -7deg, Overhanging Top-Left) */
.tag-sticker-top-left {
    top: -14px;
    left: -14px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: var(--font-chunky);
    font-size: 0.88rem;
    transform: rotate(-7deg);
}

.tag-sticker-top-left i {
    color: var(--text-dark);
}

/* 2. Top-Right Badge: Handwritten Sarawak Pepper Tag (Tilted 5deg, Overhanging Right) */
.tag-sticker-top-right {
    top: 8px;
    right: -16px;
    background: #E86E1C;
    /* Sarawak Pepper Orange/Rust */
    color: #FFFFFF;
    border-color: var(--text-dark);
    font-family: var(--font-hand);
    font-size: 1.3rem;
    font-weight: 700;
    transform: rotate(5deg);
    box-shadow: 4px 4px 0px var(--text-dark);
}

.tag-sticker-top-right i {
    color: #FFFFFF;
    font-size: 1.1rem;
}

/* 3. Bottom-Left Badge: Dark Chocolate Cookie Stamp (Tilted -5deg, Overhanging Left) */
.tag-sticker-bottom-left {
    bottom: 10px;
    left: -16px;
    background: #3D1F0D;
    /* Dark Chocolate */
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    font-family: var(--font-chunky);
    font-size: 0.85rem;
    transform: rotate(-5deg);
}

.tag-sticker-bottom-left i {
    color: var(--primary-color);
}

/* 4. Bottom-Right Badge: Cream Parchment Butter Tag (Tilted 7deg, Overhanging Bottom) */
.tag-sticker-bottom-right {
    bottom: -14px;
    right: 14px;
    background: var(--accent-cream);
    color: var(--text-dark);
    font-family: var(--font-hand);
    font-size: 1.3rem;
    font-weight: 700;
    transform: rotate(7deg);
}

.tag-sticker-bottom-right i {
    color: #D4A853;
    font-size: 1.1rem;
}

.showcase-single-card {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    /* Position cookie pouch card ON TOP of mascot girl */
}

/* Pointing Mascot Girl (Positioned further right near the right end edge) */
.showcase-mascot-wrapper {
    position: absolute;
    right: -260px;
    bottom: -90px;
    /* Pushed lower so she peeks from the bottom */
    height: 580px;
    /* Big & prominent */
    z-index: 1;
    /* BEHIND cookie layer */
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.showcase-mascot-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 30px rgba(44, 26, 14, 0.15));
    transition: transform 0.4s ease;
}

@media (max-width: 992px) {
    .showcase-split-container {
        flex-direction: column;
        gap: 3rem;
    }

    .showcase-video-card {
        width: 100%;
        max-width: 500px;
    }

    .showcase-mascot-wrapper {
        display: none;
    }
}

.showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
}

.showcase-wrapper {
    position: relative;
    width: 320px;
    /* BIGGER */
    height: 380px;
    /* BIGGER */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.showcase-cookie {
    position: absolute;
    bottom: 40px;
    width: 280px;
    /* HUGE COOKIE */
    height: auto;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
    z-index: 1;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25));
}

/* CSS Filters to fake flavors */
.cookie-matcha {
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25)) hue-rotate(-120deg) brightness(1.1) saturate(1.5) sepia(0.3);
}

.cookie-strawberry {
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25)) hue-rotate(-50deg) saturate(2) brightness(1.2);
}

.cookie-classic {
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25)) hue-rotate(40deg) brightness(1.4) saturate(1.3);
}

/* The Plastic Pouch (Metallic Foil) */
.plastic-pouch {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    /* HUGE POUCH */
    height: 250px;
    /* HUGE POUCH */
    background-image: url('images/metallic_pouch.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* We don't need the CSS glare anymore since the image is metallic, but we can keep a subtle hover tint */
.pouch-glare {
    display: none;
}

/* BB Logo Badge Sticker on Pouch */
.pouch-badge-sticker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg);
    width: 110px;
    height: 110px;
    object-fit: contain;
    z-index: 3;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    pointer-events: none;
}

.showcase-card.active .pouch-badge-sticker {
    transform: translate(-50%, -50%) rotate(-6deg) scale(1.12);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

@media (hover: hover) {
    .showcase-card:hover .pouch-badge-sticker {
        transform: translate(-50%, -50%) rotate(-6deg) scale(1.12);
        filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
    }

    .showcase-card:hover .showcase-cookie {
        transform: translateY(-140px) rotate(8deg) scale(1.15);
    }

    .showcase-card:hover .plastic-pouch {
        transform: translateX(-50%) scaleY(0.98);
    }

    .showcase-card:hover .showcase-name {
        color: var(--text-dark);
        background: var(--primary-color);
        border-color: var(--text-dark);
        box-shadow: 7px 7px 0px var(--text-dark);
        transform: rotate(0deg) scale(1.08) translateY(-4px);
    }
}

.showcase-name {
    font-family: var(--font-chunky);
    font-size: 1.45rem;
    color: var(--text-dark);
    margin: 0;
    padding: 0.65rem 1.8rem;
    background: var(--bg-white);
    border-radius: 30px;
    border: 3px solid var(--text-dark);
    box-shadow: 5px 5px 0px var(--primary-color);
    transform: rotate(-3deg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.showcase-name i {
    color: #E86E1C;
    /* Sarawak Pepper Rust Accent */
    font-size: 1.3rem;
}

.showcase-tap-badge {
    display: none;
}

/* TOUCH ACTIVE ANIMATION - Controlled explicitly by JS tap toggle */
.showcase-card.active .showcase-cookie {
    transform: translateY(-140px) rotate(8deg) scale(1.15);
}

.showcase-card.active .plastic-pouch {
    transform: translateX(-50%) scaleY(0.98);
}

.showcase-card.active .showcase-name {
    color: var(--text-dark);
    background: var(--primary-color);
    border-color: var(--text-dark);
    box-shadow: 7px 7px 0px var(--text-dark);
    transform: rotate(0deg) scale(1.08) translateY(-4px);
}

/* =========================================
   Horizontal Slider Journey
========================================= */
.journey-container {
    height: 400vh;
    /* 4 slides */
    background: #111;
    position: relative;
}

.journey-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.journey-track {
    display: flex;
    height: 100vh;
    width: 400vw;
    will-change: transform;
}

.journey-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.journey-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--text-light);
}

.journey-title {
    font-family: var(--font-chunky);
    font-size: 5rem;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.journey-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* =========================================
   Ribbon Banner
========================================= */
.ribbon-section {
    padding: 3.5rem 0 3rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-light);
    width: 100%;
}

.ribbon-title {
    font-family: var(--font-chunky);
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.ribbon-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
}

.ribbon-badge {
    position: absolute;
    left: 5%;
    z-index: 10;
    width: 240px;
    height: 240px;
    background: var(--accent-yellow);
    border: var(--border-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-solid);
    transform: rotate(-10deg);
}

.badge-text-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.badge-text-curve text {
    font-family: var(--font-chunky);
    font-size: 10px;
    fill: var(--text-dark);
    letter-spacing: 1.2px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.badge-center {
    width: 160px;
    height: 160px;
    background: var(--bg-white);
    border: var(--border-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-chunky);
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.1;
    text-align: center;
}

.ribbon-strip {
    background: var(--primary-color);
    width: 100%;
    padding: 3rem 2rem 3rem 280px;
    position: relative;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.ribbon-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ribbon-item {
    font-family: var(--font-chunky);
    color: var(--text-light);
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.2;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.ribbon-tail {
    position: absolute;
    top: -4px;
    width: 60px;
    height: calc(100% + 8px);
    background: var(--primary-dark);
    z-index: -1;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.tail-left {
    left: -40px;
    border-left: var(--border-thick);
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.tail-right {
    right: -40px;
    border-right: var(--border-thick);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* =========================================
   Products Menu
========================================= */
/* =========================================
   Gourmet Cookie Products Menu
========================================= */
.menu-section {
    padding: 8rem 0 7rem;
    background: var(--bg-white);
    position: relative;
}

.menu-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-family: var(--font-chunky);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.menu-eyebrow::before,
.menu-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    opacity: 0.6;
}

.menu-title {
    font-family: var(--font-chunky);
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.menu-intro {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Category Filter Bar */
.menu-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-tab {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-chunky);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--text-dark);
    box-shadow: 3px 3px 0px var(--text-dark);
    transform: translateY(-2px);
}

/* =========================================
   Editorial Menu Grid (Fixed & Polished)
========================================= */
.editorial-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    /* slightly taller base row for breathing room */
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.edi-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(62, 31, 18, 0.04);
    border: 1px solid rgba(62, 31, 18, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.edi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(62, 31, 18, 0.08);
}

/* Choice Number Badge (Top-Left Corner) */
.card-number-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: var(--font-chunky);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
    border: 2px solid var(--text-dark);
    box-shadow: 3px 3px 0px var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 3px;
    padding-left: 1px;
    transition: transform 0.3s ease, background 0.3s ease;
    user-select: none;
    pointer-events: none;
}

.edi-card:hover .card-number-badge {
    transform: scale(1.15) rotate(-6deg);
    background: var(--accent-yellow);
}

.edi-card .menu-eyebrow {
    margin-left: 2.8rem;
}

.edi-price del {
    font-size: 1.1rem;
    opacity: 0.65;
    margin-left: 0.6rem;
    text-decoration: line-through;
    font-weight: 500;
    display: inline-block;
}

.edi-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-only-br {
    display: none !important;
}

/* Base Image Wrap (Now Relative/Flex by default, unless overridden) */
.edi-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.edi-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.edi-card:hover .edi-image-wrap>img:not([class*="stack-"]):not(.edi-img-main) {
    transform: scale(1.08) rotate(4deg);
}

.edi-title {
    font-family: var(--font-chunky);
    font-size: 2.4rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: inherit;
    letter-spacing: -0.5px;
}

.edi-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.edi-price {
    font-family: var(--font-chunky);
    font-size: 1.5rem;
    font-weight: 700;
}

.edi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #D4A853 0%, #C9A96E 50%, #A8823F 100%);
    color: var(--text-light) !important;
    text-decoration: none;
    padding: 0.72rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(168, 130, 63, 0.35);
    transition: all 0.25s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
}

.edi-btn:hover {
    background: linear-gradient(135deg, #E8D5A8 0%, #C9A96E 50%, #B8924B 100%);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(168, 130, 63, 0.5);
}

/* 
   Interlocking Grid Layout
*/
.edi-feature {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.edi-tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.edi-wide {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.edi-square {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.edi-pano {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
}


/* Feature 150G - Signature Masterpiece */
.edi-feature {
    background: radial-gradient(circle at 75% 45%, #8B5029 0%, #522912 55%, #35170A 100%);
    color: var(--bg-white);
    padding: 3.5rem 0.1rem 3.5rem 3.5rem;
    flex-direction: row;
    /* content left, image right */
    align-items: center;
    overflow: visible;
}

.edi-feature .edi-content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.edi-feature .edi-image-wrap {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.edi-feature .edi-img-main {
    width: 145%;
    max-width: 580px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    position: absolute;
    right: -30px;
    bottom: -65px;
    top: auto;
    transform: none;
    transform-origin: bottom center;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.edi-feature:hover .edi-img-main {
    transform: scale(1.06) rotate(-3deg) translateY(-10px);
}

.edi-feature .edi-title {
    font-size: 3.2rem;
}

.edi-feature .edi-price {
    color: var(--accent-yellow);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0;
}

.edi-feature .menu-eyebrow {
    margin: 0 0 1rem 0;
    align-self: flex-start;
}

.edi-feature .menu-eyebrow::before {
    display: none;
}

.edi-feature .edi-btn {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.edi-feature .edi-btn:hover {
    background: var(--bg-white);
    color: #1a0d07 !important;
}

/* Tall 340G */
.edi-tall {
    background: #FDF8F3;
    color: var(--text-dark);
    padding: 2.5rem;
    flex-direction: column;
}

.edi-tall .edi-content {
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
}

.edi-tall .edi-image-wrap {
    flex: 1;
    margin-top: 1rem;
    position: relative;
}

.edi-tall img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.edi-tall .menu-eyebrow {
    margin: 0 auto 1rem auto;
}

.edi-tall .edi-btn {
    margin-top: auto;
}

/* Wide Bundle 3x150G */
.edi-wide {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 2rem 2.5rem;
    flex-direction: row;
    /* Image left, content right */
    align-items: center;
}

.edi-wide .edi-image-wrap {
    flex: 0 0 40%;
    position: relative;
    height: 100%;
}

.edi-wide .edi-content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    padding-left: 1.5rem;
}

.edi-wide .edi-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.edi-wide .edi-desc {
    margin-bottom: 1rem;
}

.edi-wide .menu-eyebrow {
    margin: 0 0 0.8rem 0;
    align-self: flex-start;
}

.edi-wide .menu-eyebrow::before {
    display: none;
}

/* Square Bundle 3x340G */
.edi-square {
    background: #FDF8F3;
    color: var(--text-dark);
    padding: 2rem;
    flex-direction: column;
}

.edi-square .edi-content {
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
}

.edi-square .edi-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.edi-square .edi-title {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.edi-square .edi-price {
    font-size: 1.2rem;
}

.edi-square .edi-image-wrap {
    flex: 1;
    position: relative;
    margin-top: 1rem;
    height: 120px;
}

/* Pano Mixed Bundle */
.edi-pano {
    background: radial-gradient(circle at 75% 45%, #522912 0%, #35170A 60%, #1E0F06 100%);
    color: var(--text-light);
    padding: 2.5rem 3.5rem 2.5rem 5.5rem;
    flex-direction: row;
    align-items: center;
}

.edi-pano .edi-content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    max-width: 50%;
}

.edi-pano .edi-image-wrap {
    flex: 1;
    position: relative;
    height: 100%;
}

.edi-pano .edi-title {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.edi-pano .edi-price {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    font-weight: 700;
}

.edi-pano .edi-desc {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.edi-pano .menu-eyebrow {
    margin: 0 0 0.8rem 0;
    align-self: flex-start;
}

.edi-pano .menu-eyebrow::before {
    display: none;
}

.edi-pano .edi-btn {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.edi-pano .edi-btn:hover {
    background: var(--bg-white);
    color: var(--text-dark) !important;
}


/* Stacks Adjustments - Positioning relative to their wrapper now */
.bundle-stack-3x img {
    position: absolute;
    width: 170px;
    height: 210px;
    object-fit: contain;
}

.bundle-stack-3x .stack-3 {
    transform: translateX(-35px) translateY(5px) rotate(-15deg);
    z-index: 1;
    opacity: 0.8;
    filter: blur(2px) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.bundle-stack-3x .stack-2 {
    transform: translateX(35px) translateY(5px) rotate(15deg);
    z-index: 2;
    opacity: 0.9;
    filter: blur(1px) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.bundle-stack-3x .stack-1 {
    transform: translateX(0) translateY(-10px) rotate(0deg);
    z-index: 3;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.edi-card:hover .bundle-stack-3x .stack-3 {
    transform: translateX(-45px) translateY(0px) rotate(-20deg);
    opacity: 1;
    filter: blur(0);
}

.edi-card:hover .bundle-stack-3x .stack-2 {
    transform: translateX(45px) translateY(0px) rotate(20deg);
    opacity: 1;
    filter: blur(0);
}

.edi-card:hover .bundle-stack-3x .stack-1 {
    transform: translateX(0) translateY(-15px) rotate(0deg) scale(1.05);
}

/* Mini stack for square */
.mini-stack img {
    width: 140px;
    height: 170px;
    object-fit: contain;
}

/* Mixed stack */
.bundle-mixed img {
    position: absolute;
    object-fit: contain;
}

.bundle-mixed .stack-bg {
    transform: translateX(-70px) translateY(20px) rotate(-12deg);
    z-index: 1;
    width: 230px;
    height: 260px;
    opacity: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.bundle-mixed .stack-fg {
    transform: translateX(40px) translateY(45px) rotate(8deg);
    z-index: 2;
    width: 190px;
    height: 220px;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.4));
}

.edi-card:hover .bundle-mixed .stack-bg {
    transform: translateX(-85px) translateY(5px) rotate(-16deg) scale(1.05);
    opacity: 1;
    filter: blur(0);
}

.edi-card:hover .bundle-mixed .stack-fg {
    transform: translateX(45px) translateY(35px) rotate(15deg) scale(1.05);
}

/* Responsive Editorial Grid */
@media (max-width: 1024px) {
    .editorial-menu-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .edi-feature,
    .edi-tall,
    .edi-wide,
    .edi-square,
    .edi-pano {
        grid-column: span 1;
        grid-row: span 1;
        padding: 2.5rem;
        flex-direction: column;
        text-align: center;
    }

    .edi-feature .edi-content,
    .edi-wide .edi-content,
    .edi-pano .edi-content {
        max-width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    .edi-feature .menu-eyebrow,
    .edi-wide .menu-eyebrow,
    .edi-pano .menu-eyebrow {
        align-self: center;
    }

    .edi-image-wrap {
        width: 100%;
        height: 250px !important;
        margin-top: 1rem;
    }
}

/* =========================================
   Testimonials & Social Proof
========================================= */
.testimonials-section {
    padding: 6.5rem 0 8rem;
    position: relative;
    background-color: var(--bg-light);
}

.testi-title {
    font-family: var(--font-chunky);
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

/* Rating Summary Bar */
.rating-summary-bar {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-white);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.summary-score {
    font-family: var(--font-chunky);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-stars {
    color: #F1C40F;
    font-size: 1.2rem;
    display: flex;
    gap: 3px;
}

.summary-count {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.8;
}

/* UGC Social Media Reviews Grid */
.ugc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.ugc-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(62, 31, 18, 0.05);
    border: 1px solid rgba(62, 31, 18, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.ugc-card:hover {
    transform: translateY(-8px);
}

.ugc-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

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

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

.ugc-social-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ugc-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s;
}

.ugc-card:hover .ugc-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.ugc-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #F1C40F;
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.verified-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #15803D;
    background: #DCFCE7;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-quote-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(62, 31, 18, 0.1);
}

.reviewer-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
}

.reviewer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-chunky);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    border: 2px solid var(--text-dark);
    box-shadow: 2px 2px 0px var(--text-dark);
    flex-shrink: 0;
}

.avatar-orange {
    background: #E86E1C;
}

.avatar-blue {
    background: #2563EB;
}

.avatar-gold {
    background: #D97706;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   How to Order (3-Step Modern Workflow)
========================================= */
.how-to-section {
    padding: 8rem 0 3rem;
    background: var(--bg-white);
    position: relative;
    background-image: radial-gradient(circle at 50% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
}

.how-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 110, 28, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(232, 110, 28, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-family: var(--font-chunky);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
}

.how-title {
    font-family: var(--font-chunky);
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.how-intro {
    max-width: 620px;
    margin: 0 auto 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.85;
}

/* How To Side Images */
.how-to-layout-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.how-decor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 250px;
}

.how-decor img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(62, 31, 18, 0.2));
}

.how-decor-left {
    transform: rotate(-10deg);
    animation: floatDecorLeft 6s ease-in-out infinite;
}

.how-decor-right {
    transform: rotate(12deg);
    animation: floatDecorRight 7s ease-in-out infinite;
}

@keyframes floatDecorLeft {
    0% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-15px) rotate(-12deg);
    }

    100% {
        transform: translateY(0) rotate(-10deg);
    }
}

@keyframes floatDecorRight {
    0% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-15px) rotate(14deg);
    }

    100% {
        transform: translateY(0) rotate(12deg);
    }
}

/* Bakery Order Receipt Layout */
.receipt-ticket-wrapper {
    max-width: 520px;
    margin: 0 auto 3rem;
    position: relative;
    filter: drop-shadow(0 15px 40px rgba(62, 31, 18, 0.15));
}

.receipt-edge {
    width: 100%;
    height: 16px;
    background-size: 20px 16px;
    background-repeat: repeat-x;
}

.receipt-top {
    background-image: radial-gradient(circle at 10px 0, transparent 10px, #FFFCF7 11px);
}

.receipt-bottom {
    background-image: radial-gradient(circle at 10px 16px, transparent 10px, #FFFCF7 11px);
    background-position: bottom;
}

.receipt-paper {
    background: #FFFCF7;
    padding: 1.5rem 3rem;
    position: relative;
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
}

.receipt-logo-text {
    font-family: var(--font-chunky);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
}

.receipt-meta {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.4;
    font-weight: 700;
}

.receipt-divider-dashed {
    height: 0;
    border-bottom: 2px dashed rgba(62, 31, 18, 0.3);
    margin: 2rem 0;
}

.receipt-items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.receipt-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.item-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.item-row-top .item-qty {
    width: 30px;
    opacity: 0.6;
}

.item-row-top .item-title {
    flex: 1;
    margin: 0;
    font-size: 1.15rem;
}

.item-row-top .item-price {
    opacity: 0.6;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.75;
    padding-left: 30px;
    line-height: 1.5;
    margin: 0;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.receipt-guarantee {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: right;
    margin-bottom: 2rem;
}

.receipt-barcode {
    text-align: center;
    margin-bottom: 2.5rem;
}

.barcode-lines {
    height: 40px;
    background: repeating-linear-gradient(90deg,
            var(--text-dark) 0, var(--text-dark) 3px,
            transparent 3px, transparent 6px,
            var(--text-dark) 6px, var(--text-dark) 12px,
            transparent 12px, transparent 15px,
            var(--text-dark) 15px, var(--text-dark) 18px,
            transparent 18px, transparent 24px,
            var(--text-dark) 24px, var(--text-dark) 27px);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.barcode-numbers {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    opacity: 0.9;
}

.receipt-cta-section {
    text-align: center;
    margin-bottom: 1rem;
}

.cta-prompt {
    font-family: var(--font-chunky);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.receipt-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-receipt-whatsapp,
.btn-receipt-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-receipt-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-receipt-whatsapp:hover {
    background: linear-gradient(135deg, #28E06C 0%, #15A090 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.btn-receipt-form {
    background: linear-gradient(135deg, #3D1F0D 0%, #1E0F06 100%);
    color: #FDF8F0;
    border: 1px solid rgba(201, 169, 110, 0.4);
    box-shadow: 0 8px 24px rgba(30, 15, 6, 0.3);
}

.btn-receipt-form:hover {
    background: linear-gradient(135deg, #522912 0%, #2A1508 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 15, 6, 0.45);
}

/* =========================================
   Footer & Store Information
========================================= */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    position: relative;
    padding: 6rem 0 2.5rem;
    margin-top: 3rem;
}

.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--text-dark);
    mask-image: radial-gradient(circle at 20px -10px, transparent 20px, black 21px);
    mask-size: 40px 40px;
    mask-repeat: repeat-x;
    mask-position: bottom;
    -webkit-mask-image: radial-gradient(circle at 20px -10px, transparent 20px, black 21px);
    -webkit-mask-size: 40px 40px;
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-position: bottom;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px dashed rgba(255, 249, 240, 0.15);
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.footer-brand-logo .logo-icon-wrap {
    width: 44px;
    height: 44px;
}

/* BB Logo image in footer */
.footer-bb-logo {
    height: 120px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-brand-logo:hover .footer-bb-logo {
    transform: scale(1.05);
    opacity: 0.85;
}

.footer-brand-logo .brand-name {
    font-family: var(--font-chunky);
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 1.1;
    display: block;
}

.footer-brand-logo .brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1.8px;
    display: block;
}

.footer-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 249, 240, 0.08);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 249, 240, 0.15);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-4px) rotate(6deg);
    border-color: var(--primary-color);
}

.footer-col-title {
    font-family: var(--font-chunky);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.4rem;
    letter-spacing: 0.5px;
}

.footer-nav-list,
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-list a {
    color: var(--text-light);
    opacity: 0.85;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.footer-nav-list a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.footer-nav-list a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-info-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-info-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-info-list i {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.newsletter-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.85;
    margin-bottom: 1.2rem;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 249, 240, 0.08);
    border: 1px solid rgba(255, 249, 240, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    outline: none;
    transition: all 0.25s ease;
}

.newsletter-input::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 249, 240, 0.12);
}

.btn-newsletter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D4A853 0%, #C9A96E 50%, #A8823F 100%);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.72rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(168, 130, 63, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-newsletter-submit:hover {
    background: linear-gradient(135deg, #E8D5A8 0%, #C9A96E 50%, #B8924B 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(168, 130, 63, 0.5);
}

/* Bottom Legal Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.75;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.dot-sep {
    opacity: 0.4;
}

/* =========================================
   Floating WhatsApp Button
========================================= */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 4px 4px 0px var(--text-dark);
    z-index: 1000;
    text-decoration: none;
    border: 2px solid var(--text-dark);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatWa 3s ease-in-out infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #1EBE57;
    box-shadow: 6px 6px 0px var(--text-dark);
    animation-play-state: paused;
}

@keyframes floatWa {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================
   Responsive
========================================= */
/* =========================================
   Responsive (Strictly Mobile & Tablet Overrides)
========================================= */
@media (max-width: 992px) {

    /* --- Container & Global Spacing --- */
    .container {
        padding: 0 1.2rem;
    }

    /* --- Top Bar & Header Mobile Z-Index Layering --- */
    .header-main {
        position: relative;
        z-index: 1001;
        padding: 1.2rem 0;
    }

    header.scrolled .header-main {
        padding: 0.95rem 0;
    }

    .header-container-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .brand-logo-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .header-utils {
        margin-left: auto;
        position: relative;
        z-index: 15;
    }

    .announcement-clip {
        height: 32px;
    }

    .top-announcement-bar {
        font-size: 0.72rem;
        height: 32px;
    }

    .header-socials {
        display: none !important;
    }

    .header-bb-logo {
        height: 72px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-nav-strip {
        padding: 0;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        border-bottom: 3px solid var(--primary-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
        animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-link {
        padding: 0.9rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px dashed rgba(201, 169, 110, 0.2);
        color: var(--text-light);
    }

    .nav-link::after {
        display: none;
    }

    .btn-header-cta {
        display: none;
    }

    /* --- Hero Section Mobile Moderate Top Padding --- */
    .hero-section {
        min-height: 820px !important;
        padding: 1.5rem 0 5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-container {
        position: relative;
        z-index: 50 !important;
        width: 100%;
        margin: 0 auto;
        padding-top: 0;
    }

    .hero-content {
        position: relative;
        z-index: 55 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 0;
    }

    .hero-logos-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        margin: 0 auto 1.2rem auto;
    }

    .hero-cert-logo {
        height: 38px;
    }

    .hero-cert-halal {
        height: 58px;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.08;
        letter-spacing: -0.5px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.92);
        max-width: 100%;
        margin: 0 auto 1.4rem auto;
        text-align: center;
        padding: 0;
    }

    .hero-cta-group {
        position: relative;
        z-index: 60 !important;
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 100px auto;
    }

    .btn-hero-primary {
        position: relative;
        z-index: 65 !important;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.6rem;
        font-size: 1.05rem;
    }

    /* Position Pouch Half Behind Bottom-Left Wavy Texture on Mobile */
    .hero-pouch-backdrop-wrap {
        display: block !important;
        position: absolute;
        bottom: -15px;
        left: -85px;
        right: auto;
        top: auto;
        z-index: 2;
        /* Sits behind hero-bottom-curve (z-index: 3) */
        pointer-events: none;
    }

    .hero-pouch-backdrop {
        width: 430px;
        height: auto;
        display: block;
        transform: rotate(10deg);
        filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.65));
    }

    /* Make Jar Mockup on Hero smaller on Mobile */
    .mockup-slide--2 {
        width: 210px !important;
        left: 75px !important;
    }

    /* Position Cookie Half Behind Bottom-Right Wavy Texture */
    .parallax-cookie-container {
        position: absolute;
        bottom: -15px;
        right: -35px;
        top: auto;
        left: auto;
        width: 320px;
        z-index: 2;
        /* Sits behind hero-bottom-curve (z-index: 3) */
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        pointer-events: auto;
    }

    .parallax-cookie-container .cookie-img {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6));
        order: 2;
    }

    .cookie-annotation {
        position: relative;
        top: auto;
        right: 45px;
        margin-bottom: -18px;
        order: 1;
        z-index: 4;
        transform: rotate(-6deg);
    }

    .cookie-annotation span {
        font-size: 0.88rem;
    }

    .cookie-tooltip {
        display: none !important;
    }

    .hero-visual-wrapper {
        max-width: 270px;
        margin: 0 auto;
    }

    .card-top-right {
        right: -5%;
        top: 0%;
        padding: 0.4rem 0.7rem;
    }

    .card-bottom-left {
        left: -5%;
        bottom: 2%;
        padding: 0.4rem 0.7rem;
    }

    /* --- Interactive Showcase Section --- */
    .showcase-section {
        padding: 2.5rem 0 3rem;
    }

    .showcase-title {
        font-size: 2.4rem;
        margin-bottom: 1.8rem;
        text-align: center;
    }

    .showcase-title-wrap {
        padding: 0 1rem;
    }

    .showcase-split-container {
        flex-direction: column;
        gap: 2rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .showcase-left-col {
        width: 100%;
        max-width: 100%;
    }

    .video-cert-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.55rem 0.85rem;
        border-radius: 14px;
    }

    .cert-logos-wrap {
        justify-content: flex-start;
        gap: 0.45rem;
        flex-shrink: 0;
    }

    .video-cert-logo {
        height: 22px;
    }

    .cert-logo-halal {
        height: 28px;
    }

    .cert-logo-mesti {
        height: 24px;
    }

    .cert-info {
        text-align: right;
        flex-shrink: 0;
    }

    .cert-heading {
        font-size: 0.78rem;
        gap: 0.25rem;
        white-space: nowrap;
    }

    .cert-heading i {
        font-size: 0.88rem;
    }

    .cert-subtext {
        font-size: 0.62rem;
        white-space: nowrap;
    }

    .showcase-single-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .showcase-tap-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        padding: 0.45rem 1rem;
        background: var(--accent-yellow);
        color: var(--text-dark);
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 800;
        border-radius: 20px;
        border: 2px solid var(--text-dark);
        box-shadow: 3px 3px 0px var(--text-dark);
        white-space: nowrap;
        animation: pulseTap 2s infinite ease-in-out;
        transition: all 0.3s ease;
        pointer-events: auto;
    }

    .showcase-card.active .showcase-tap-badge {
        background: var(--primary-color);
        color: var(--text-light);
        animation: none;
    }

    @keyframes pulseTap {

        0%,
        100% {
            transform: translateX(-50%) scale(1);
        }

        50% {
            transform: translateX(-50%) scale(1.06);
        }
    }

    .showcase-wrapper {
        width: 280px;
        height: 350px;
    }

    .showcase-cookie {
        width: 260px;
        bottom: 30px;
    }

    .showcase-pouch {
        width: 290px;
        height: 225px;
    }

    .showcase-mascot-wrapper {
        display: none !important;
    }

    /* --- Horizontal Journey Section (Fullscreen Sticky Slider on Mobile) --- */
    .journey-container {
        height: 400vh;
        background: #111;
        position: relative;
        padding: 0;
    }

    .journey-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        height: 100dvh;
        width: 100%;
        overflow: hidden;
    }

    .journey-track {
        display: flex;
        flex-direction: row;
        height: 100vh;
        height: 100dvh;
        width: 400vw;
        will-change: transform;
    }

    .journey-slide {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        flex-shrink: 0;
        padding: 2rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .journey-title {
        font-size: 2.4rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        text-align: center;
    }

    .journey-desc {
        font-size: 0.95rem;
        line-height: 1.55;
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    /* --- Ribbon Banner Mobile Optimization --- */
    .ribbon-section {
        padding: 3rem 0;
        text-align: center;
        overflow: hidden;
    }

    .ribbon-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .ribbon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
        margin: 0 auto;
    }

    .ribbon-badge {
        position: relative;
        left: auto;
        top: auto;
        transform: scale(0.82);
        margin: 0 auto -45px auto;
        z-index: 5;
    }

    .ribbon-strip {
        width: 100%;
        padding: 3.8rem 1rem 2.2rem 1rem;
        position: relative;
        z-index: 2;
        border-width: 3px 0;
        border-left: none;
        border-right: none;
    }

    .ribbon-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.8rem;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 0;
        justify-items: center;
    }

    .ribbon-item {
        font-family: var(--font-chunky);
        font-size: 1rem;
        line-height: 1.25;
        text-align: center;
        color: var(--text-light);
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
        background: rgba(0, 0, 0, 0.12);
        padding: 0.75rem 0.5rem;
        border-radius: 16px;
        width: 100%;
        border: 1.5px dashed rgba(255, 255, 255, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ribbon-item:last-child {
        grid-column: span 2;
        max-width: 220px;
    }

    .ribbon-tail {
        display: none !important;
    }

    /* --- Editorial Menu Grid Mobile Smooth Polish --- */
    .menu-section {
        padding: 4rem 0 3.5rem;
    }

    .menu-header {
        margin-bottom: 2rem;
    }

    .menu-title {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .menu-intro {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    .editorial-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 2.2rem;
        margin-top: 2rem;
    }

    .edi-card {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column;
        padding: 2.2rem 1.4rem 1.8rem 1.4rem;
        align-items: center;
        text-align: center;
        position: relative;
        border-radius: 24px;
        box-shadow: 0 10px 25px rgba(62, 31, 18, 0.06);
    }

    .card-number-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 10;
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 3px;
        padding-left: 1px;
    }

    .edi-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 0.2rem;
    }

    .edi-card .menu-eyebrow {
        margin: 0 auto 0.5rem auto;
        align-self: center;
        font-size: 0.72rem;
        letter-spacing: 1.2px;
        padding: 0.35rem 0.85rem;
    }

    .edi-title {
        font-size: 2.15rem;
        line-height: 1.15;
        font-weight: 700;
        text-align: center;
        margin-bottom: 0.6rem;
    }

    .edi-desc {
        font-size: 0.88rem;
        line-height: 1.44;
        text-align: center;
        max-width: 300px;
        margin: 0 auto 0.8rem auto;
        opacity: 0.85;
    }

    .edi-price {
        font-size: 1.45rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .edi-price del {
        font-size: 0.95rem !important;
        opacity: 0.55;
        font-weight: 500;
        margin-left: 0.4rem;
    }

    .edi-btn {
        width: auto;
        min-width: 180px;
        max-width: 230px;
        justify-content: center;
        margin: 0 auto 0.8rem auto;
        padding: 0.65rem 1.4rem;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        border-radius: 50px;
    }

    .desktop-only-br {
        display: none !important;
    }

    .mobile-only-br {
        display: block !important;
    }

    /* Product 1: Feature Card Mobile */
    .edi-feature {
        padding: 1.8rem 1.4rem 0 1.4rem;
    }

    .edi-feature .edi-image-wrap {
        width: 100%;
        height: auto;
        min-height: 360px;
        position: relative;
        margin: 0.8rem auto 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .edi-feature .edi-img-main {
        position: relative;
        right: auto;
        bottom: 0;
        top: auto;
        transform: scale(1.08);
        transform-origin: bottom center;
        width: 105%;
        max-width: 380px;
        max-height: 380px;
        object-fit: contain;
        margin: 0 auto -5px auto;
        filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.45));
    }

    /* Product 2: Tall Card Mobile */
    .edi-tall {
        padding: 2.2rem 1.4rem 0 1.4rem;
    }

    .edi-tall .edi-image-wrap {
        width: 100%;
        height: auto;
        min-height: 240px;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .edi-tall .edi-image-wrap img {
        position: relative;
        bottom: 0;
        width: 100%;
        max-width: 220px;
        max-height: 260px;
        object-fit: contain;
        margin: 0 auto -2px auto;
        filter: drop-shadow(0 18px 30px rgba(62, 31, 18, 0.22));
    }

    /* Product 3: Wide Card Mobile (3x Pouch Bundle) */
    .edi-wide {
        padding: 1.4rem 1.4rem 0 1.4rem;
        min-height: 440px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .edi-wide .edi-content {
        order: 1;
        position: relative;
        z-index: 5;
        width: 100%;
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .edi-wide .bundle-stack-3x {
        order: 2;
        height: 200px !important;
        width: 100%;
        max-width: 320px;
        margin: 0.5rem auto 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        z-index: 2;
    }

    .edi-wide .bundle-stack-3x img {
        position: absolute;
        bottom: 0;
        width: 140px;
        height: 180px;
        object-fit: contain;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
    }

    .edi-wide .bundle-stack-3x .stack-3 {
        transform: translateX(-40px) translateY(8px) rotate(-14deg);
        z-index: 1;
    }

    .edi-wide .bundle-stack-3x .stack-2 {
        transform: translateX(40px) translateY(8px) rotate(14deg);
        z-index: 2;
    }

    .edi-wide .bundle-stack-3x .stack-1 {
        transform: translateX(0) translateY(0deg) rotate(0deg);
        z-index: 3;
    }

    /* Product 4: Square Card Mobile (3x Jar Bundle) */
    .edi-square {
        padding: 1.4rem 1.4rem 0 1.4rem;
        min-height: 430px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .edi-square .edi-content {
        order: 1;
        position: relative;
        z-index: 5;
        width: 100%;
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .edi-square .mini-stack {
        order: 2;
        height: 195px !important;
        width: 100%;
        max-width: 320px;
        margin: 0.5rem auto 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        z-index: 2;
    }

    .edi-square .mini-stack img {
        position: absolute;
        bottom: 0;
        width: 130px;
        height: 170px;
        object-fit: contain;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
    }

    .edi-square .mini-stack .stack-3 {
        transform: translateX(-36px) translateY(8px) rotate(-14deg);
        z-index: 1;
    }

    .edi-square .mini-stack .stack-2 {
        transform: translateX(36px) translateY(8px) rotate(14deg);
        z-index: 2;
    }

    .edi-square .mini-stack .stack-1 {
        transform: translateX(0) translateY(0deg) rotate(0deg);
        z-index: 3;
    }

    /* Product 5: Panoramic Card Mobile (The Mixed Set) */
    .edi-pano {
        background: radial-gradient(circle at 50% 30%, #522912 0%, #35170A 60%, #1E0F06 100%);
        padding: 1.4rem 1.4rem 0 1.4rem;
        min-height: 440px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .edi-pano .edi-content {
        order: 1;
        position: relative;
        z-index: 5;
        width: 100%;
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .edi-pano .bundle-mixed {
        order: 2;
        height: 200px !important;
        width: 100%;
        max-width: 320px;
        margin: 0.5rem auto 0 auto;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        z-index: 2;
    }

    .bundle-mixed .stack-bg {
        position: absolute;
        bottom: 0;
        width: 145px;
        height: 185px;
        transform: translateX(-35px) translateY(5px) rotate(-10deg);
        object-fit: contain;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
        z-index: 1;
    }

    .bundle-mixed .stack-fg {
        position: absolute;
        bottom: 0;
        width: 145px;
        height: 180px;
        transform: translateX(35px) translateY(12px) rotate(8deg);
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
        z-index: 2;
    }

    /* --- Testimonials / UGC Section --- */
    .testimonials-section {
        padding: 2.2rem 0;
    }

    .testi-header {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .rating-summary-bar {
        padding: 0.55rem 1.1rem;
        gap: 0.6rem;
        margin-bottom: 1.8rem;
        max-width: 92%;
        box-shadow: 3px 3px 0px var(--text-dark);
    }

    .summary-score {
        font-size: 1.1rem;
    }

    .summary-stars {
        font-size: 1rem;
    }

    .summary-count {
        font-size: 0.78rem;
    }

    .ugc-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .ugc-card {
        max-width: 300px;
        padding: 0.95rem;
        margin: 0 auto;
        border-radius: 16px;
    }

    .ugc-media {
        margin-bottom: 0.9rem;
        border-radius: 10px;
    }

    .review-quote-text {
        font-size: 0.88rem;
        line-height: 1.48;
        margin-bottom: 1rem;
    }

    .reviewer-info {
        padding-top: 0.8rem;
    }

    /* --- How to Order / Receipt Section --- */
    .how-to-section {
        padding: 3rem 0;
    }

    .how-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .how-to-layout-row {
        flex-direction: column;
        align-items: center;
    }

    .how-decor {
        display: none !important;
    }

    .receipt-ticket-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .receipt-logo-text {
        font-size: 1.8rem;
    }

    .receipt-item {
        padding: 0.8rem 0;
    }

    .receipt-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-receipt-whatsapp,
    .btn-receipt-form {
        width: 100%;
        justify-content: center;
    }

    /* --- Footer Organized Mobile Layout --- */
    .footer {
        padding: 3rem 0 1.8rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 1.8rem;
        border-bottom: 1px dashed rgba(255, 249, 240, 0.12);
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-brand-logo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-bio {
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
        font-size: 0.88rem;
        line-height: 1.55;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .footer-col-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        letter-spacing: 0.8px;
    }

    .footer-nav-list {
        align-items: center;
        gap: 0.65rem;
    }

    .footer-nav-list a {
        justify-content: center;
        font-size: 0.92rem;
    }

    .footer-info-list {
        align-items: center;
        gap: 0.75rem;
    }

    .footer-info-list li {
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 0.9rem;
    }

    .newsletter-sub {
        font-size: 0.88rem;
        line-height: 1.5;
        max-width: 300px;
        margin: 0 auto 1rem auto;
        text-align: center;
    }

    .footer-newsletter-form {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-input {
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }

    .btn-newsletter-submit {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .footer-bottom-bar {
        padding-top: 1.8rem;
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .copyright-text {
        font-size: 0.82rem;
        opacity: 0.8;
    }

    .footer-legal-links {
        font-size: 0.8rem;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* --- Floating Buttons --- */
    .floating-wa-btn {
        width: 54px;
        height: 54px;
        font-size: 1.9rem;
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .header-socials {
        display: none !important;
    }

    .header-bb-logo {
        height: 70px;
    }

    .footer-bb-logo {
        height: 95px;
    }

    .hero-title {
        font-size: 2.9rem;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .card-top-right,
    .card-bottom-left {
        display: none !important;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .journey-title {
        font-size: 1.85rem;
    }

    .journey-slide {
        padding: 2.5rem 1rem;
        min-height: 320px;
    }

    .menu-title,
    .how-title {
        font-size: 1.9rem;
    }

    .card-number-badge {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        line-height: 1;
        top: 0.9rem;
        left: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 2px;
        padding-left: 1px;
    }

    .edi-title {
        font-size: 1.95rem !important;
        line-height: 1.15 !important;
    }

    .edi-btn {
        width: auto !important;
        min-width: 170px !important;
        max-width: 220px !important;
        justify-content: center !important;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.84rem !important;
    }

    .cta-buttons-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-order-whatsapp,
    .btn-order-form {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Sticker Badges scaling */
    .sticker-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.78rem;
    }

    .tag-sticker-top-right,
    .tag-sticker-bottom-right {
        font-size: 1.05rem;
    }

    .tag-sticker-top-left {
        top: -10px;
        left: -6px;
    }

    .tag-sticker-top-right {
        top: 6px;
        right: -6px;
    }

    .tag-sticker-bottom-left {
        bottom: 6px;
        left: -6px;
    }

    .tag-sticker-bottom-right {
        bottom: -10px;
        right: 6px;
    }
}

/* ==========================================================================
   SCROLL REVEAL & SECTION TRANSITION ANIMATIONS (RICH & FLUID)
   ========================================================================== */

.fade-in-up,
.fade-in-left,
.fade-in-right,
.zoom-in {
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up {
    transform: translateY(45px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.88);
}

/* Visible trigger state applied by Intersection Observer */
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.zoom-in.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delay Cascade Utility Classes */
.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-4 {
    transition-delay: 0.48s;
}

/* Interactive Hover Elevation for Cards & Elements */
.edi-card,
.ugc-card,
.showcase-card,
.receipt-paper,
.footer-col {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.ugc-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 35px rgba(224, 86, 36, 0.18);
}

.edi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {

    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .zoom-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}