@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
/* =========================================
   1. VARIABLES & RESET (GLOBAL)
   ========================================= */
:root {
    --primary-yellow: #FFCB05;  
    --accent-orange: #FF9E16;   
    --primary-brown: #3B1C0A;   
    --secondary-brown: #5C3A21; 
    --text-light: #FFF9E5;      
    --white: #ffffff;
    --font-heading: "Impact", "Arial Black", sans-serif; 
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--primary-brown);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* --- UTILITY CLASSES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}
button { font-family: inherit; }

/* =========================================
   2. DIVISION 1: HEADER & HERO
   ========================================= */
.top-bar {
    background-color: var(--accent-orange);
    color: var(--primary-brown);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.sticky-header {
    background: linear-gradient(to bottom, #FFCB05 0%, #FFCB05 85%, #e6a500 100%);
    padding: 10px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(59, 28, 10, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px; 
}

.logo-wrapper img {
    height: 150px !important; 
    width: auto !important;
    min-height: 150px !important;
    object-fit: contain !important;
}

.logo-wrapper img:hover { transform: rotate(-3deg) scale(1.05); }

.nav-pill-btn {
    background-color: var(--white);
    border: 2px solid var(--primary-brown);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-brown);
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 3px 3px 0px var(--primary-brown); 
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.nav-pill-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0px var(--primary-brown); }

.icon-btn {
    width: 150px !important;
    height: 150px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-right: -90px !important; 
}

.icon-btn img {
    width: 95px !important;    
    height: auto !important;   
    object-fit: contain !important;
    transform: none !important; 
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 85vh; 
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    text-align: left; 
    background-color: #3e1a0a; 
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; 
    overflow: hidden; 
}

.hero-background img {
    width: 100%; height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}

.hero-background::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(62, 26, 10, 0.4); 
    pointer-events: none; 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px; 
    margin-left: 8%; 
}

.hero-content .text-yellow {
    color: var(--primary-yellow) !important; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    font-weight: 900;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 6.5rem !important; 
    line-height: 0.9; 
    margin-bottom: 20px;
    color: #ffffff; 
    text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-section { justify-content: center; text-align: center; }
    .hero-content { margin-left: 0; padding: 0 20px; max-width: 100%; }
}

.hero-content .highlight {
    color: var(--primary-yellow);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.hero-content p, .hero-content .hero-subtext {
    text-transform: none !important; 
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-brown);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.4);
    transition: transform 0.2s ease, background-color 0.2s;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-btn:hover { transform: scale(1.05); background-color: #ffe066; }

/* --- Features Bar --- */
.features-bar {
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--accent-orange) 100%);
    padding: 10px 0 !important; 
    color: var(--primary-brown);
    border-bottom: 4px solid var(--primary-brown);
    overflow: visible !important;
}

.features-grid {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    width: 22%; 
}

/* =========================================
   FEATURES BAR REPAIR (Smaller & Spaced)
   ========================================= */

/* 1. RESET ALL ICONS (30% Smaller + Margins) */
.feature-item img {
    /* WAS: 160px -> NEW: 110px (30% Smaller) */
    height: 110px !important; 
    width: auto !important;
    
    /* ADDED MARGINS: 20px Top & Bottom */
    margin: 20px 0 !important; 
    
    object-fit: contain !important;
    
    /* Smooth Bouncy Transition */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    z-index: 1;
}

/* 2. UNIVERSAL HOVER EFFECT (Restored for ALL icons) */
.feature-item img:hover {
    /* Pops up slightly larger when hovered */
    transform: scale(1.2) rotate(-3deg) !important; 
    filter: drop-shadow(0 10px 10px rgba(59, 28, 10, 0.2));
}

/* 3. HALAL LOGO ADJUSTMENT */
/* Since circles look smaller than squares, we keep this just 10px bigger than the rest */
.features-grid .feature-item:nth-child(2) img {
    height: 120px !important; /* Slightly larger than the 110px standard */
}

.feature-item p {
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #3e1a0a; 
    text-transform: uppercase;
    margin: 0;
}

/* Feature 2 (Halal) Specific */
.features-grid .feature-item:nth-child(2) img:hover { transform: scale(1.1) !important; }

@media (max-width: 768px) {
    .features-grid { flex-wrap: wrap; }
    .feature-item { flex: 1 1 40%; margin-bottom: 10px; }
}

@media (min-width: 1025px) {
    .hero-content h1 { font-size: 4.5rem; }
}

/* =========================================
   DIVISION 2: NEW CAROUSEL (Shape Shifter)
   ========================================= */

.product-carousel {
    background-color: var(--primary-brown);
    padding: 60px 0 100px 0;
    position: relative;
    z-index: 2;
    clip-path: polygon(
        0 0, 100% 0, 
        100% 88%, 93% 96%, 86% 89%, 79% 97%, 71% 91%, 64% 95%, 
        57% 88%, 50% 96%, 43% 90%, 36% 98%, 29% 92%, 21% 96%, 
        14% 89%, 7% 94%, 0 87%
    );
    margin-bottom: -80px; 
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 600px; /* Force height for rectangle growth */
}

/* 1. CONTAINER (The Window) */
.carousel-track {
    display: flex;
    align-items: center;
    /* We handle the transition strictly in JS now */
    will-change: transform; 
}

/* Ensure the wrapper doesn't cut off shadows */
.carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden; 
}

/* 3. CARD (Default Square State) */
.carousel-item {
    flex-shrink: 0;
    width: 250px;   /* Default Square */
    height: 250px;
    margin: 0 15px; 
    
    /* Smoothly animate the Width/Height changes */
    transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
    
    opacity: 0.5;
    transform: scale(0.9);
}

/* =========================================
   2. 3D POP-UP ARROWS (Closer & 3D)
   ========================================= */

.nav-arrow {
    position: absolute;
    top: 50%;
    /* Center vertical anchor */
    transform: translateY(-50%);
    
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    
    /* --- 3D TEXT STYLE --- */
    font-size: 5rem; /* Big Arrow */
    color: #FFCB05;  /* Yellow Face */
    
    /* The 3D Block Shadow */
    text-shadow: 
        0 5px 0 #3e1a0a,      /* Dark Brown Layer 1 */
        0 10px 0 rgba(0,0,0,0.2); /* Soft Shadow Layer 2 */
        
    /* Smooth Press Animation */
    transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.1s;
    line-height: 0; /* Prevents weird spacing */
    padding-bottom: 20px; /* Adjusts hit area */
}

/* HOVER STATE: Jumps up slightly */
.nav-arrow:hover {
    transform: translateY(-55%) scale(1.1);
    color: #fff; /* Turns white on hover */
}

/* CLICK STATE: Presses Down (3D Effect) */
.nav-arrow:active {
    /* Move down to 'squish' the shadow */
    transform: translateY(-45%) scale(1.1);
    
    /* Remove shadow to look like it's pressed flat */
    text-shadow: 
        0 2px 0 #3e1a0a,
        0 2px 0 rgba(0,0,0,0.2);
}

/* --- POSITIONING (Closer to the Center Box) --- */
/* We use calc() to stay perfectly positioned regardless of screen size */
/* 50% is center. We subtract 260px to sit just outside the main card */

.nav-arrow.prev {
    left: calc(50% - 280px) !important; 
}

.nav-arrow.next {
    right: calc(50% - 280px) !important;
}

/* Mobile Fix: Hide arrows on small screens */
@media (max-width: 768px) {
    .nav-arrow { display: none; }
}

.yellow-card {
    width: 100%;
    height: 100%;
    background-color: var(--primary-yellow);
    border: 4px solid #fff;
    border-radius: 30px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden; /* Cuts off text in square mode */
    transition: all 0.5s ease;
}

.product-img {
    width: 140px; /* Small image */
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.3));
}

/* HIDDEN TEXT (Default) */
.product-info {
    opacity: 0;
    transform: translateY(50px);
    height: 0;
    margin-top: 0;
    text-align: center;
    transition: all 0.3s ease;
}

/* 4. ACTIVE STATE (Rectangle) */
/* This class is added by JS to the center item */
.carousel-item.center-active {
    width: 340px !important;  /* Wider */
    height: 520px !important; /* TALLER (Rectangle) */
    opacity: 1;               /* Fully bright */
    transform: scale(1);
    z-index: 100;
}

.carousel-item.center-active .yellow-card {
    background: linear-gradient(135deg, #FFCB05 0%, #ffdb4d 100%);
    justify-content: flex-start; /* Move content to top */
    padding-top: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Big pop shadow */
}

/* Bigger Image */
.carousel-item.center-active .product-img {
    width: 220px;
    transform: translateY(-10px);
}

/* Reveal Text */
.carousel-item.center-active .product-info {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 20px;
    display: block;
}

/* Typography for Description */
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
    line-height: 1;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--primary-brown);
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-info .price {
    display: inline-block;
    background: var(--primary-brown);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 4rem;
    color: var(--primary-yellow);
    cursor: pointer;
    z-index: 200;
    transition: transform 0.2s;
}
.nav-arrow:hover { transform: translateY(-50%) scale(1.1); color: #fff; }
.nav-arrow.prev { left: 5%; }
.nav-arrow.next { right: 5%; }


/* =========================================
   CAROUSEL HEADER 
   ========================================= */
.carousel-header {
    text-align: left !important; 
    display: block;
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto 20px auto; 
    padding-left: 50px; 
    position: relative;
    z-index: 10;
}

.carousel-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem; 
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.carousel-header .text-white { color: var(--white); display: inline-block; margin-right: 15px; }
.carousel-header .text-yellow {
    color: #ffffff; 
    display: inline-block;
    font-size: 1em;   
    font-style: normal; 
    text-shadow: 0 0 5px var(--primary-yellow), 0 0 10px #ffae00;           
}

@media (max-width: 768px) {
    .carousel-header { padding-left: 20px; text-align: center !important; }
    .carousel-header h2 { font-size: 2.5rem; }
    .nav-arrow { display: none; } /* Hide arrows on mobile, swipe expected */
}


/* =========================================
   DIVISION 3: TASTE ADVENTURE
   ========================================= */
.taste-adventure {
    background: linear-gradient(180deg, #FDFBF7 80%, #ffeec2 100%);
    padding: 80px 0 200px 0; 
    position: relative;
    z-index: 1; 
}

.adventure-header {
    position: relative;
    margin-bottom: 60px;
    display: inline-block;
}

.adventure-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #ff9e16; 
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.adventure-header .orange-bar {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 60px;
    height: 100%;
    background-color: #FF8C00;
    transform: translateY(-50%);
    z-index: 1;
    display: none; 
}

.flavor-card {
    display: flex;
    align-items: center;
    border-radius: 40px;
    margin-bottom: 60px;
    padding: 0;
    min-height: 350px;
    position: relative; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #FFF9E5; 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1; 
}

.flavor-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0; 
    opacity: 0; 
    z-index: -1; 
    transition: opacity 0.4s ease-in-out; 
}

.card-yellow::before { background: linear-gradient(90deg, #FFCB05 0%, #FFB800 100%); }
.card-green::before { background: linear-gradient(90deg, #A8D967 0%, #86B846 100%); }
.card-red::before {   background: linear-gradient(90deg, #E65C5C 0%, #C94242 100%); }

.flavor-info, .flavor-img { position: relative; z-index: 2; }

.flavor-info h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-brown); 
    transition: color 0.3s ease;
}

.flavor-info p {
    text-transform: none !important; 
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 90%;
    line-height: 1.4;
    color: var(--primary-brown); 
    transition: color 0.3s ease;
}

.flavor-card:hover::before { opacity: 1; }
.flavor-card:hover .flavor-info h3, .flavor-card:hover .flavor-info p { color: var(--white); }
.flavor-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px rgba(0,0,0,0.15); }

.flavor-img img {
    max-width: 120%;
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}
.flavor-card:hover .flavor-img img { transform: rotate(0deg) scale(1.1); }

.buy-btn {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.flavor-card:hover .buy-btn { background-color: var(--white); color: var(--primary-brown); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.flavor-img { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.flavor-info { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

.reverse-layout { flex-direction: row-reverse; }
.reverse-layout .flavor-info { align-items: flex-end; text-align: right; }

@media (max-width: 768px) {
    .flavor-card { flex-direction: column; text-align: center; padding-bottom: 30px; }
    .reverse-layout { flex-direction: column; }
    .flavor-img { width: 100%; margin-bottom: -30px; z-index: 1; }
    .flavor-img img { max-width: 80%; }
    .flavor-info, .reverse-layout .flavor-info { align-items: center; text-align: center; padding: 20px; z-index: 2; }
    .flavor-info h3 { font-size: 2.5rem; }
}

/* =========================================
   DIVISION 4: TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: linear-gradient(to bottom, #2a0e04 0%, #3e1a0a 20%, #b35900 100%);
    margin-top: -50px !important; 
    padding-top: 80px !important; 
    padding-bottom: 120px !important; 
    clip-path: polygon(
        0% 0%, 100% 0%, 
        100% 92%, 93% 98%, 86% 91%, 78% 96%, 68% 90%, 
        59% 97%, 50% 92%, 42% 98%, 33% 91%, 24% 96%, 
        15% 90%, 7% 95%, 0% 91%
    );
    position: relative;
    z-index: 2; 
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.stacking-image-container {
    flex: 0 0 55% !important; 
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative; 
    z-index: 5;
}

.stacking-img {
    width: 150% !important;
    margin-left: -35% !important;
    max-width: none !important;
    height: auto !important;
    top: 19%;
    transform: translateY(3%) scaleX(-1) scale(1.1) rotate(8deg) !important;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

.reviews-column {
    flex: 1 1 55%; 
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: right;
    min-width: 0; 
}

.reviews-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem; 
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    white-space: nowrap; 
    color: #ffffff !important; 
}

.text-orange { color: #ff9e16; }

.reviews-window {
    width: 100%;
    max-width: 500px; 
    height: 550px;
    background-color: rgba(60, 30, 10, 0.6);
    border-radius: 30px;
    padding: 25px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.reviews-scroll {
    height: 100%;
    overflow-y: auto;
    padding-right: 15px; 
    padding-left: 10px;
    scroll-behavior: smooth;
}
.reviews-scroll::-webkit-scrollbar { width: 6px; }
.reviews-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 10px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--primary-yellow); border-radius: 10px; }

.review-card {
    background: linear-gradient(90deg, #FFCB05 0%, #FFA500 100%);
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 20px;
    position: relative;
    margin-left: 10px; 
    color: var(--primary-brown);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0; left: -10px; width: 10px; height: 100%;
    background-color: #e69500;
    border-radius: 5px 0 0 5px;
}

.ribbon-tail {
    position: absolute; bottom: -10px; left: -10px;
    width: 0; height: 0;
    border-top: 10px solid #804000;
    border-left: 10px solid transparent;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(59, 28, 10, 0.1);
    padding-bottom: 5px;
}

.reviewer-name { font-family: var(--font-heading); color: #cc3300; font-size: 1rem; font-style: italic; }
.review-text { text-transform: none !important; font-weight: 800; font-size: 1rem; line-height: 1.3; font-style: italic; }

@media (max-width: 900px) {
    .reviews-title h2 { font-size: 1.8rem; white-space: normal; } 
    .reviews-window { height: 400px; padding: 15px; } 
    .stacking-image-container { flex: 0 0 40%; } 
    .reviews-column { flex: 0 0 58%; } 
}

@media (max-width: 600px) {
    .testimonials-grid { gap: 10px; }
    .reviews-title h2 { font-size: 1.2rem; margin-bottom: 10px; }
    .reviewer-name { font-size: 0.8rem; }
    .review-text { font-size: 0.7rem; }
    .review-card { padding: 10px; margin-bottom: 15px; }
}

.star-rating {
    color: #ffff00; 
    -webkit-text-stroke: 1.5px #3e1a0a; 
    font-size: 1.8rem; 
    letter-spacing: 5px; 
    display: inline-block;
    text-shadow: 2px 2px 0 #3e1a0a, 0 6px 0 #d48900, 0 12px 8px rgba(0,0,0,0.4); 
    transform: scale(1.1) translateY(-5px);
    cursor: default;
}

/* =========================================
   DIVISION 5: BEHIND THE CRUNCH
   ========================================= */
.about-section {
    background-color: var(--primary-yellow);
    color: var(--primary-brown);
    position: relative;
    z-index: 1; 
    margin-top: -200px !important; 
    padding-top: 250px !important; 
    padding-bottom: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}

.about-container { text-align: center; max-width: 1000px; margin: 0 auto; }
.about-title-wrapper h2 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 0.9; text-align: left; margin-bottom: 40px; text-transform: uppercase; }
.text-brown-dark { color: #3e1a0a; }

.team-wrapper { position: relative; display: inline-block; margin-bottom: 40px; }
.team-img { position: relative; z-index: 2; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); max-width: 100%; }
.paint-splash-bg {
    position: absolute; top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-color: #d1d1d1; z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    transform: rotate(-2deg); opacity: 0.7;
}

.dot { position: absolute; background-color: #3e1a0a; border-radius: 50%; z-index: 3; }
.dot-1 { width: 40px; height: 40px; top: -30px; right: -20px; }
.dot-2 { width: 25px; height: 25px; top: -50px; right: 20px; }
.dot-3 { width: 30px; height: 30px; bottom: -20px; left: -30px; }

.story-text {
    font-weight: 800; font-size: 0.95rem; text-transform: uppercase; line-height: 1.6; max-width: 800px; margin: 0 auto 30px auto; color: #3e1a0a;
}

.read-more-btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 15px 50px;
    font-size: 1.5rem; 
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 0px #cc7a00; 
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}
.read-more-btn:hover { transform: translateY(2px); box-shadow: 0 3px 0px #cc7a00; }
.read-more-btn:active { transform: translateY(4px); box-shadow: none; }

@media (max-width: 768px) {
    .about-title-wrapper h2 { text-align: center; font-size: 2.5rem; }
    .paint-splash-bg { top: -10px; left: -10px; right: -10px; bottom: -10px; }
    .read-more-btn { font-size: 1.2rem; padding: 12px 40px; }
}

/* =========================================
   BACK TO TOP & CONTACT MENU
   ========================================= */
.back-to-top-btn {
    position: fixed; bottom: 20px; right: 20px; width: 80px; height: auto; z-index: 9999; cursor: pointer; transition: transform 0.3s;
}
.back-to-top-btn:hover { transform: translateY(-10px) scale(1.1); }
@media (max-width: 400px) { .back-to-top-btn { width: 50px; bottom: 10px; right: 10px; } }
#backToTop, .back-to-top { width: 160px !important; height: 160px !important; overflow: visible !important; display: flex !important; align-items: center; justify-content: center; }
#backToTop img, .back-to-top img { width: 100% !important; height: 100% !important; object-fit: contain !important; }

.contact-wrapper { position: relative; display: inline-block; }
.contact-menu {
    display: none; position: absolute; top: 50px; right: 0;
    background-color: var(--white); border: 3px solid var(--primary-brown); border-radius: 12px;
    width: 180px; box-shadow: 4px 4px 0px rgba(59, 28, 10, 0.8); overflow: hidden; z-index: 2000;
}
.contact-menu.active { display: block; animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { from { opacity: 0; transform: translateY(-10px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.menu-link {
    display: flex; align-items: center; gap: 10px; padding: 10px 15px; text-decoration: none; color: var(--primary-brown); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; border-bottom: 1px solid #eee; transition: background-color 0.2s;
}
.menu-link:last-child { border-bottom: none; }
.menu-link:hover { background-color: var(--primary-yellow); }
.menu-link .icon { font-size: 1rem; }

/* =========================================
   DIVISION 4: SALES MILESTONE
   ========================================= */
.sales-milestone {
    background: radial-gradient(circle at center, #5A2D0C 0%, #2a0e04 80%);
    position: relative; padding: 160px 0 160px 0; overflow: hidden; text-align: center; z-index: 2; margin-top: -60px; 
    clip-path: polygon(
        0% 4%, 7% 0%, 15% 6%, 24% 1%, 32% 5%, 40% 2%, 48% 7%, 56% 1%, 65% 5%, 75% 0%, 84% 4%, 92% 1%, 100% 5%, 
        100% 100%, 0% 100%
    );
}

.sales-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.over-text {
    font-family: 'Bangers', cursive !important; font-size: 2.5rem !important; letter-spacing: 8px !important; margin-bottom: 15px; color: #ffffff; text-shadow: 2px 2px 0px rgba(0,0,0,0.5); font-weight: normal !important; 
}

.yellow-box {
    background: linear-gradient(110deg, #FFD700 0%, #ffa500 30%, #FFFFAA 50%, #FFA500 70%, #FFD700 100%);
    background-size: 200% auto; animation: goldShimmer 3s linear infinite;
    padding: 15px 80px; border-radius: 40px; display: inline-flex; flex-direction: column; align-items: center; line-height: 0.9;
    box-shadow: 0 10px 0 #cc8800, 0 20px 30px rgba(0,0,0,0.4); position: relative; z-index: auto !important; 
}
@keyframes goldShimmer { to { background-position: 200% center; } }
.yellow-box:hover { transform: scale(1.05); }

.line-1 { font-family: 'Arial Black', sans-serif; font-size: 5.5rem; color: white; letter-spacing: -2px; position: relative !important; z-index: 100 !important; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.line-2 { font-family: 'Arial Black', sans-serif; font-size: 4.5rem; color: white; position: relative !important; z-index: 100 !important; text-shadow: 2px 2px 0px rgba(0,0,0,0.2); }

.worldwide-text {
    font-family: 'Bangers', cursive !important; font-size: 4.5rem !important; letter-spacing: 4px !important; margin-top: 25px; color: #FFCB05; 
    text-shadow: 3px 3px 0px #3e1a0a, 0 0 15px rgba(255, 203, 5, 0.4); text-transform: uppercase; font-weight: normal !important;
}

/* Flying Brownies */
.chip-tl-big { position: absolute; left: 13% !important; top: 15% !important; width: 380px !important; transform: rotate(25deg); z-index: 50 !important; filter: drop-shadow(15px 15px 20px rgba(0,0,0,0.6)); pointer-events: none; animation: floatTL 4s ease-in-out infinite; }
.chip-tr-big { position: absolute; right: 12% !important; top: 13% !important; width: 380px !important; transform: rotate(-20deg); z-index: 50 !important; filter: drop-shadow(-15px 15px 20px rgba(0,0,0,0.6)); pointer-events: none; animation: floatTR 5s ease-in-out infinite 0.5s; }
.chip-bl-big { position: absolute; bottom: 17% !important; left: 20% !important; width: 350px; transform: rotate(51deg); z-index: 1; animation: floatBL 4.5s ease-in-out infinite 1s; }
.chip-br-big { position: absolute; bottom: 22% !important; right: 20% !important; width: 300px; transform: rotate(-45deg); z-index: 1; animation: floatBR 5.5s ease-in-out infinite 1.5s; }

/* Floating Animations */
@keyframes floatTL { 0%, 100% { transform: rotate(25deg) translateY(0px); } 50% { transform: rotate(25deg) translateY(-20px); } }
@keyframes floatTR { 0%, 100% { transform: rotate(-20deg) translateY(0px); } 50% { transform: rotate(-20deg) translateY(-20px); } }
@keyframes floatBL { 0%, 100% { transform: rotate(15deg) translateY(0px); } 50% { transform: rotate(15deg) translateY(-15px); } }
@keyframes floatBR { 0%, 100% { transform: rotate(-20deg) translateY(0px); } 50% { transform: rotate(-20deg) translateY(-15px); } }

/* Bubbles */
.adventure-bubbles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 0; }
.choco-chip { position: absolute; border-radius: 50%; background-color: #3B1C0A; opacity: 1; filter: none; }
.chip-1 { width: 60px; height: 60px; top: 8%; right: 8%; }
.chip-2 { width: 25px; height: 25px; top: 16%; right: 12%; }
.chip-3 { width: 40px; height: 40px; top: 40%; left: 5%; }
.chip-4 { width: 70px; height: 70px; bottom: 15%; right: 5%; }
.chip-5 { width: 50px; height: 50px; bottom: 20%; left: 10%; }
.chip-6 { width: 20px; height: 20px; bottom: 28%; left: 8%; }

.bubble-cluster { position: absolute; width: 120px; height: 120px; z-index: 0; opacity: 0.8; pointer-events: none; }
.cluster-dot { position: absolute; border-radius: 50%; }
.dot-big { width: 60px; height: 60px; bottom: 0; left: 0; }
.dot-med { width: 40px; height: 40px; top: 0; right: 10px; }
.dot-small { width: 25px; height: 25px; bottom: 30px; right: 0; }
.theme-yellow .cluster-dot { background-color: #3a2200; }
.theme-green .cluster-dot { background-color: #86B846; }
.theme-red .cluster-dot { background-color: #E65C5C; }
.set-1 { top: 8%; right: 5%; transform: rotate(10deg); }
.set-3 { bottom: 18%; right: 4%; transform: rotate(20deg); }
.set-4 { top: 20%; left: 5%; transform: rotate(45deg) scale(0.7); }
.filler-ruby-left { bottom: auto; top: 65%; left: 4%; transform: rotate(-20deg) scale(0.9); z-index: 0; }
.filler-classic-top { top: 10%; right: 12%; transform: rotate(15deg) scale(0.6); z-index: 0; }
.matcha-fix-left { top: 40% !important; left: 2% !important; right: auto !important; transform: rotate(-25deg) scale(0.9); z-index: 0; }
.matcha-fix-right { top: 50% !important; right: 2% !important; left: auto !important; transform: rotate(5deg) scale(0.85); z-index: 0; }

.more-text { display: none; }
.more-text.show { display: inline; }

/* =========================================
   NEW SECTION: BEST SELLER (Layering Fix)
   ========================================= */

.best-seller-hero {
    position: relative;
    
    /* 1. SIZE & SPACING */
    height: 1300px !important; 
    width: 100%;
    padding: 0 !important; 
    
    /* 2. BACKGROUND IMAGE SETUP */
    background-color: #FFAC12;
    background-blend-mode: linear-dodge;
    background-image: url('./img/image_40.png'); /* Ensure this path is correct */
    background-size: cover;
    background-repeat: no-repeat;

    /* --- THE FIX: MOVE TO LEFT --- */
    /* 50% is Center. */
    /* Higher number (60-100%) moves the image LEFT. */
    /* Lower number (0-40%) moves the image RIGHT. */
    background-position: 65% center; 

    /* 3. LAYERING */
    z-index: 5; 
    margin-top: -100px; 
    margin-bottom: -150px; 
    
    /* Jagged Edge */
    clip-path: polygon(
        0 3%, 5% 0, 10% 3%, 15% 0, 20% 3%, 25% 0, 30% 3%, 35% 0, 40% 3%, 45% 0, 50% 3%, 55% 0, 60% 3%, 65% 0, 70% 3%, 75% 0, 80% 3%, 85% 0, 90% 3%, 95% 0, 100% 3%,
        100% 97%, 95% 100%, 90% 97%, 85% 100%, 80% 97%, 75% 100%, 70% 97%, 65% 100%, 60% 97%, 55% 100%, 50% 97%, 45% 100%, 40% 97%, 35% 100%, 30% 97%, 25% 100%, 20% 97%, 15% 100%, 10% 97%, 5% 100%, 0 97%
    );
}

.content-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; 
    z-index: 10; /* Ensures text is ON TOP of the image */
    pointer-events: none; 
}

/* Optional Darker Overlay to make text pop */
.bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1); /* Very slight tint */
    z-index: 1;
}

/* --- TEXT POSITIONING (Adjusted Closer to Center) --- */

/* 1. TOP GROUP ("OUR BEST SELLER") */
.text-group-top {
    position: absolute;
    width: 100%;
    text-align: center;
    
    /* MOVED HIGHER: Changed from 28% to 15% */
    /* This puts it very close to the top edge */
    top: 8% !important; 
    
    z-index: 20;
}

/* 2. BOTTOM GROUP ("THE CLASSIC CRUNCH") */
.text-group-bottom {
    position: absolute;
    width: 100%;
    text-align: center;
    
    /* MOVED HIGHER: Changed from 28% to 42% */
    /* This lifts it up significantly from the bottom */
    bottom: 42% !important; 
    
    z-index: 20;
}

/* --- TEXT SIZING (Made Smaller as requested) --- */

.bs-text-small {
    font-family: var(--font-heading);
    /* Reduced size */
    font-size: 2.5rem !important; 
    letter-spacing: 5px !important;
    color: #3B1C0A; 
    margin-bottom: -10px !important; 
    text-shadow: 2px 2px 0px rgba(255,255,255,0.3);
}

.bs-text-big {
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    line-height: 0.9;
    font-weight: normal;
}

.main {
    /* Reduced from 10rem to 7rem */
    font-size: 7rem !important; 
    color: #ffffff;
    text-shadow: 4px 4px 0 #FFCB05, 8px 8px 0 rgba(0,0,0,0.3);
}

.sub {
    /* Reduced from 11rem to 8rem */
    font-size: 8rem !important; 
    color: #3B1C0A; 
    text-shadow: 3px 3px 0 #FFCB05, 6px 6px 0 rgba(0,0,0,0.4);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .best-seller-hero { height: 800px !important; }
    
    /* On phone, we need more space so text doesn't cover the brownie */
    .text-group-top { top: 15% !important; }
    .text-group-bottom { bottom: 15% !important; }
    
    .main { font-size: 4.5rem !important; }
    .sub { font-size: 5rem !important; }
    .bs-text-small { font-size: 1.5rem !important; }
}

/* --- TYPOGRAPHY STYLES (Poster Size) --- */

.bs-text-small {
    font-family: var(--font-heading);
    font-size: 3.5rem !important; 
    letter-spacing: 8px !important;
    color: #3B1C0A; /* Dark Brown */
    margin-bottom: -15px !important; 
    text-shadow: 2px 2px 0px rgba(255,255,255,0.3);
}

.bs-text-big {
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    line-height: 0.9;
    font-weight: normal;
}

.main {
    font-size: 10rem !important; 
    color: #ffffff;
    /* Yellow Outline Shadow */
    text-shadow: 4px 4px 0 #FFCB05, 10px 10px 0 rgba(0,0,0,0.3);
}

.sub {
    font-size: 11rem !important; 
    color: #3B1C0A; 
    /* Yellow Outline Shadow */
    text-shadow: 3px 3px 0 #FFCB05, 8px 8px 0 rgba(0,0,0,0.4);
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .best-seller-hero { height: 800px !important; }
    
    /* Adjust text positions for phone so they don't cover the brownie */
    .text-group-top { top: 10%; }
    .text-group-bottom { bottom: 10%; }
    
    .main { font-size: 5rem !important; }
    .sub { font-size: 6rem !important; }
    .bs-text-small { font-size: 1.5rem !important; }
}