/* --- FONTS --- */
/* Custom font fallbacks are set to Google Fonts ('Outfit') imported in index.html */

/* --- CSS VARIABLES & THEME --- */
:root {
    --color-white: #ffffff;
    --color-light-pink: #ffe6f0;
    --color-light: #ffe6f0;
    --color-primary: #b3184f;
    --color-fuschia: #d90479;
    --color-dark: #2d2d2d;
    --color-text: #4a4a4a;
    
    --font-heading: 'Peace Sans', 'Outfit', sans-serif;
    --font-body: 'Open Sauce', 'Outfit', sans-serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Accessibility / SEO helper */
.visually-hidden, .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

a:hover {
    color: var(--color-fuschia);
}

/* --- HEADER / NAVBAR --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;              /* anchored to viewport, not content width */
    z-index: 1000;
    padding: 18px 5%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.header--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 5%;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    text-decoration: none;
}

.header-logo i {
    font-size: 1.4rem;
}

.header-logo:hover {
    color: var(--color-fuschia);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.header-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 999;
    }

    .header-nav.nav--open {
        right: 0;
    }

    .header-nav a {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffc5d3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 60px;
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px; /* Prevents 1px gap */
    left: 0;
    width: 100%;
    height: 15vw; /* Keeps aspect ratio */
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-pre-text {
    position: absolute;
    top: -180px; /* Positioned higher to clear the cake */
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    opacity: 0;
    white-space: nowrap;
    z-index: 6; /* Place above cake just in case */
}

@media (max-width: 768px) {
    .hero-pre-text {
        top: -120px;
    }
}

.hero-jarcake {
    position: absolute;
    bottom: 2vh;
    left: -2vw;
    width: clamp(150px, 20vw, 300px);
    z-index: 5;
    opacity: 0;
    transform: rotate(15deg); /* Rotated to the other side */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

@keyframes macaronColorShift {
    0% { filter: hue-rotate(0deg) drop-shadow(0 10px 15px rgba(0,0,0,0.15)); transform: rotate(0deg); }
    50% { filter: hue-rotate(180deg) drop-shadow(0 10px 15px rgba(0,0,0,0.15)); transform: rotate(180deg); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 10px 15px rgba(0,0,0,0.15)); transform: rotate(360deg); }
}

.hero-macaron {
    position: absolute;
    bottom: 10vh;
    right: -2vw;
    width: clamp(200px, 25vw, 400px); /* Increased size */
    z-index: 5;
    opacity: 0;
    animation: macaronColorShift 15s infinite linear;
}

@media (max-width: 768px) {
    .hero-jarcake {
        bottom: 2vh;
        left: 10px;
        width: 125px;
    }
    .hero-macaron {
        bottom: 4vh;
        right: 10px;
        width: 135px;
    }
}



.reveal-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.word-svg-wrap { position: relative; }
.word-svg-wrap svg { 
    display: block; 
    /* This makes the text massive on desktop and responsive on mobile */
    height: clamp(50px, 13vw, 220px); 
    width: auto; 
    overflow: visible; 
}

.letter-path {
    fill: none;
    stroke: #b3184f;
    stroke-width: 2.5;
}

#word1Wrap { margin-right: 0.25em; }
#word2Wrap { margin-left: 0.25em; }

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 5;
    /* Scale the product image relative to the viewport so it fits perfectly in the gap */
    width: clamp(140px, 25vw, 400px);
    height: clamp(140px, 25vw, 400px);
}

.hero-cake-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    --blur-val: 0px;
    filter: blur(var(--blur-val)) drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.hero-cake-img.secondary {
    opacity: 0;
}
/* --- GLOBAL UTILITIES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.bg-light-pink {
    background-color: var(--color-light-pink);
}

.section-title {
    font-family: 'Peace Sans', sans-serif;
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.mt-4 { margin-top: 2rem; }

/* GSAP Reveal State classes (initial hidden states) */
.gs_reveal {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.rounded-shadow-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(179, 24, 79, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ============================================
   WHAT WE OFFER — PREMIUM REDESIGN
   ============================================ */

.offers-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    border-top: 2px dashed var(--color-light-pink);
}

/* -- Section Intro Header -- */
.offers-intro {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 90px 5% 60px;
}

.offers-eyebrow {
    display: inline-block;
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    color: var(--color-fuschia);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.offers-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.offers-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    font-family: var(--font-body);
    font-weight: 400;
}

/* =============================================
   NEW IMAGE-FREE 4-CARD GRID
   ============================================= */

.offers-cards-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 0 5% 60px;
    align-items: stretch;
}

/* Base card */
.ocard {
    background: #fff;
    border: 1.5px solid rgba(179, 24, 79, 0.1);
    border-radius: 28px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    animation-delay: var(--card-delay, 0s);
}

.ocard::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179,24,79,0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ocard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(179, 24, 79, 0.10);
    border-color: rgba(179, 24, 79, 0.22);
}

/* Hero card — Custom Creations */
.ocard--hero {
    background: linear-gradient(145deg, #fff5f8 0%, #ffe6f0 100%);
    border-color: rgba(179, 24, 79, 0.15);
}

.ocard--hero::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(179,24,79,0.08) 0%, transparent 70%);
}

/* Accent card — Cake Experiences */
.ocard--experience {
    background: linear-gradient(145deg, #fffcfd 0%, #fff0f6 100%);
    border-color: rgba(217, 4, 121, 0.15);
}

.ocard--experience::before {
    background: radial-gradient(circle, rgba(217, 4, 121, 0.08) 0%, transparent 70%);
}

.ocard--experience:hover {
    box-shadow: 0 24px 60px rgba(217, 4, 121, 0.12);
    border-color: rgba(217, 4, 121, 0.3);
}

.ocard--experience .ocard-icon-wrap {
    background: linear-gradient(135deg, #e0115f 0%, #b3184f 100%);
    box-shadow: 0 6px 20px rgba(224, 17, 95, 0.3);
}

.ocard--experience:hover .ocard-icon-wrap {
    background: linear-gradient(135deg, #ff007f 0%, #e0115f 100%);
}

/* Icon wrapper */
.ocard-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
    box-shadow: 0 6px 20px rgba(179, 24, 79, 0.25);
}

.ocard:hover .ocard-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
    background: var(--color-fuschia);
}

/* Card content area */
.ocard-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.ocard-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.15;
}

.ocard--hero .ocard-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.ocard-desc {
    font-size: 0.93rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Item list */
.ocard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1.5px dashed rgba(179, 24, 79, 0.14);
    margin-top: auto;
}

.ocard-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.4;
}

.ocard-list li i {
    color: var(--color-fuschia);
    font-size: 0.55rem;
    flex-shrink: 0;
}

/* Details list with larger icons */
.ocard-list--details li i {
    font-size: 0.95rem !important;
    color: var(--color-fuschia);
    width: 18px;
    text-align: center;
}

/* Card CTA */
.ocard-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1.5px solid rgba(179, 24, 79, 0.08);
    transition: color 0.3s ease, gap 0.3s ease;
}

.ocard-cta:hover {
    color: var(--color-fuschia);
    gap: 12px;
}

/* Tags (pill tags on hero card) */
.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-tag {
    display: inline-block;
    background: #fff;
    border: 1.5px solid rgba(179, 24, 79, 0.18);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: default;
}

.offer-tag:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* CTA button on hero card */
.offer-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(179, 24, 79, 0.28);
}

.offer-hero-cta:hover {
    background: var(--color-fuschia);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(217, 4, 121, 0.35);
    gap: 16px;
}

.offer-hero-cta i {
    transition: transform 0.3s ease;
}

.offer-hero-cta:hover i {
    transform: translateX(4px);
}

/* -- QUALITY BANNER -- */
.offers-quality-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #8a0f3a 100%);
    margin: 0 5% 0;
    border-radius: 28px 28px 0 0;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.offers-quality-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.oqb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.oqb-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.oqb-stat:hover .oqb-num {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.oqb-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

.oqb-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* -- RESPONSIVE -- */
@media (max-width: 1200px) {
    .offers-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .ocard--hero {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    .ocard--hero .ocard-icon-wrap {
        flex-shrink: 0;
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .offers-intro {
        padding: 70px 5% 40px;
    }
    .offers-cards-grid {
        grid-template-columns: 1fr;
        padding: 0 4% 40px;
        gap: 16px;
    }
    .ocard--hero {
        grid-column: auto;
        flex-direction: column;
        gap: 20px;
    }
    .offer-hero-cta {
        width: 100%;
        justify-content: center;
    }
    .oqb-divider { display: none; }
    .oqb-stat { padding: 12px 24px; }
    .offers-quality-banner {
        margin: 0 4% 0;
        border-radius: 20px 20px 0 0;
        gap: 4px;
    }
    .oqb-stat {
        flex-direction: row;
        gap: 14px;
        padding: 10px 16px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .oqb-stat:last-child {
        border-bottom: none;
    }
    .oqb-num {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .oqb-label {
        text-align: left;
    }
    .offers-quality-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(179, 24, 79, 0));
    }
    50% {
        transform: scale(1.15) rotate(15deg);
        filter: drop-shadow(0 0 8px rgba(217, 4, 121, 0.4));
    }
}


/* --- STORE INFO CARD (Under Store Image in About) --- */
.store-info-card {
    margin-top: 30px;
    background-color: rgba(255, 230, 240, 0.3);
    border: 2px dashed var(--color-light-pink);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(179, 24, 79, 0.05);
}

.store-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.store-info-card .info-item i {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-top: 3px;
    width: 24px;
    text-align: center;
}

.store-info-card .info-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.store-info-card .info-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: var(--color-text);
}

.store-info-card .info-text p span {
    font-weight: 600;
    color: var(--color-dark);
}






/* --- HOW TO ORDER SECTION (Stacked Panels) --- */
.slides-wrapper {
    margin-top: 60px;
}

.order-panel {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    color: var(--color-dark);
}

.order-panel-content {
    width: 100%;
    height: 100%;
}

.order-panel-inner {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

/* Specific styling for the longer middle panel */
.order-panel-2 .order-panel-inner {
    height: auto;
    padding-bottom: 20vh;
    justify-content: flex-start;
    padding-top: 15vh;
}

/* Panel Background Colors */
.order-panel-1 { background: #ffe6f0; } /* Light Pink */
.order-panel-2 { background: var(--color-white); }
.order-panel-3 { background: #fec5fb; } /* Lilac/Pink */

.panel-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--color-primary);
    margin: 0 auto 20px;
    line-height: 1.1;
}

.panel-desc {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.panel-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(179, 24, 79, 0.15);
}

.message-details {
    max-width: 600px;
    text-align: left;
    background: rgba(255, 230, 240, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed var(--color-light-pink);
}

.message-details ul {
    margin: 15px 0 20px 20px;
    line-height: 1.8;
}

.testimonials {
    position: relative;
    z-index: 2;
    background-color: var(--color-light-pink);
}

.horiz-review-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.horiz-review-strip {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    width: max-content;
    padding-left: 5vw; /* Start with a bit of offset */
}

.review-wrap {
    width: 450px;
    max-width: 85vw;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(179, 24, 79, 0.1);
    text-align: center;
    border: 2px dashed var(--color-light-pink);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #ffb400; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--color-primary);
}

/* --- GALLERY BENTO SECTION --- */
.gallery-section {
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
}

.gallery-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    flex: none;
}

.gallery__item {
    background-position: 50% 50%;
    background-size: cover;
    flex: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery__item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery--bento {
    display: grid;
    gap: 1vh;
    grid-template-columns: repeat(3, 32.5vw);
    grid-template-rows: repeat(4, 23vh);
    justify-content: center;
    align-content: center;
}

.gallery--final.gallery--bento {
    grid-template-columns: repeat(3, 100vw);
    grid-template-rows: repeat(4, 49.5vh);
    gap: 1vh;
}

.gallery--bento .gallery__item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.gallery--bento .gallery__item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.gallery--bento .gallery__item:nth-child(3) { grid-area: 2 / 2 / 4 / 3; }
.gallery--bento .gallery__item:nth-child(4) { grid-area: 1 / 3 / 3 / 3; }
.gallery--bento .gallery__item:nth-child(5) { grid-area: 3 / 1 / 3 / 2; }
.gallery--bento .gallery__item:nth-child(6) { grid-area: 3 / 3 / 5 / 4; }
.gallery--bento .gallery__item:nth-child(7) { grid-area: 4 / 1 / 5 / 2; }
.gallery--bento .gallery__item:nth-child(8) { grid-area: 4 / 2 / 5 / 3; }

/* WhatsApp Large Button */
.btn-large {
    padding: 16px 36px;
    font-size: 1.2rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .order-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    .gallery-section {
        padding: 60px 0 40px;
        position: relative;
        isolation: isolate;
        overflow: hidden;
    }

    .gallery-wrap {
        height: auto;
        min-height: 0;
        padding: 0 4%;
        overflow: visible;
        display: block;
        margin-top: 30px;
    }

    .gallery--bento {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .gallery--bento .gallery__item {
        grid-area: auto !important;
        aspect-ratio: 4 / 5;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(179, 24, 79, 0.12);
    }

    .gallery--bento .gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery--bento .gallery__item:hover img {
        transform: scale(1.05);
    }
}




/* --- FOOTER --- */
.footer-wrapper {
    position: relative;
    width: 100%;
}

#footer-curve-svg {
    width: 100%;
    height: 30vw;
    max-height: 280px;
    display: block;
    overflow: visible;
}

.site-footer {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 60px 5% 40px;
    position: relative;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.mobile-only {
    display: none;
}

.footer-brand .footer-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo {
    color: var(--color-fuschia);
}

.footer-bio {
    max-width: 400px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-fuschia);
    margin-bottom: 20px;
}

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

.footer-contact li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: var(--color-fuschia);
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* HUGE TEXT */
.footer-huge-text-wrapper {
    text-align: center;
    overflow: visible; /* Changed to visible to allow overflow */
    margin-top: 40px;
    margin-bottom: 10px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.footer-huge-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 13vw, 18rem); /* Bumped up significantly to span the width */
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-fuschia);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}

/* BOTTOM BAR */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background-color: #25D366; /* Official WhatsApp color */
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
        margin-bottom: 0;
    }
    .site-footer {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        padding: 60px 5% 30px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   FLAVOR WHEEL SECTION (rewritten to match brand)
   Replace the old .flavor-wheel-section block in
   style.css with everything below.
   ============================================= */

.flavor-wheel-section {
  position: relative;
  isolation: isolate;       /* own stacking context â€” nothing from gallery/
                                testimonials can sit on top of it or vice versa */
  background: var(--color-white);
  border-top: 2px dashed var(--color-light-pink); /* same divider language as .menu-pin-section */
  overflow: hidden;
  z-index: 1;
  padding: 100px 0;
}

.fw-bg-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(179, 24, 79, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* This is the element GSAP pins. It sits INSIDE the section, not the section
   itself â€” that's what lets the pin release cleanly instead of dragging the
   whole section (and whatever follows it) along with it. */
.fw-pin-target {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.fw-heading {
  margin-bottom: 3rem;
}

.fw-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ---------- WHEEL ---------- */
.fw-wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  justify-self: center;
}

/* decorative ring â€” reuses the dashed-pink language from
   .testimonial-card / .message-details instead of an unrelated ribbon */
.fw-wheel-wrapper::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 2px dashed var(--color-light-pink);
  border-radius: 50%;
  pointer-events: none;
}

.fw-wheel {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}

.fw-wheel-marker {
  position: absolute;
  right: 4%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--color-primary);
  box-shadow: 0 4px 10px rgba(179, 24, 79, 0.3);
  z-index: 2;
}

.fw-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;   /* bigger cups â€” was 32% */
  aspect-ratio: 1 / 1;
  margin-left: -21%;
  margin-top: -21%;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.fw-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 20px rgba(179, 24, 79, 0.18));
}

.fw-item.active {
  opacity: 1;
}

/* ---------- TEXT PANEL ---------- */
.fw-panel {
  position: relative;
}

.fw-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fuschia);
  margin: 0 0 12px;
  font-weight: 600;
}

.fw-name {
  font-family: var(--font-heading); /* Peace Sans â€” matches every other heading on the site */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--color-primary);
  letter-spacing: 1px;
  white-space: nowrap;
}

.fw-desc {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 38ch;
  margin: 0 0 24px;
}

.fw-dots {
  display: flex;
  gap: 8px;
}

.fw-dots span {
  width: 22px;
  height: 3px;
  background: var(--color-light-pink);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.fw-dots span.on {
  background: var(--color-primary);
}

@media (max-width: 760px) {
  .flavor-wheel-section {
    padding: 60px 0;
  }
  .fw-pin-target {
    min-height: auto;
    padding: 20px 0;
  }
  .fw-heading {
    margin-bottom: 2rem;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .fw-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .fw-wheel-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
  .fw-item {
    width: 38%;
    margin-left: -19%;
    margin-top: -19%;
  }
  .fw-name {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    white-space: normal;
  }
  .fw-desc {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  .fw-dots {
    justify-content: center;
  }
  .fw-eyebrow {
    font-size: 11px;
  }
}

/* =============================================
   FLAVORS & FILLINGS — PREMIUM REDESIGN
   ============================================= */

/* Page section wrapper */
.fl-section {
    background: #fff;
    border-top: 2px dashed var(--color-light-pink);
    padding-bottom: 0;
}

/* --- HERO HEADER --- */
.fl-hero {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 130px 5% 70px;
}

.fl-eyebrow {
    display: inline-block;
    font-family: 'Great Vibes', cursive;
    font-size: 1.7rem;
    color: var(--color-fuschia);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.fl-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: var(--color-primary);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.fl-hero-sub {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    font-family: var(--font-body);
}

/* --- DETAILED CARDS CONTAINER & GROUP HEADERS --- */
.fl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.fl-group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.fl-group-badge {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #fff5f8;
    border: 2px solid var(--color-light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(179, 24, 79, 0.06);
    flex-shrink: 0;
}

.fl-group-badge--fill {
    color: var(--color-fuschia);
    background: #fff0f5;
}

.fl-group-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-primary);
    margin: 0 0 4px;
    line-height: 1.1;
}

.fl-group-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
    opacity: 0.85;
}

/* --- CARDS GRID --- */
.fl-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- DETAIL CARD --- */
.fl-detail-card {
    --flavor-main: var(--color-primary);
    --flavor-sec: var(--color-light-pink);
    --flavor-border: rgba(179, 24, 79, 0.1);
    --flavor-glow: rgba(179, 24, 79, 0.08);

    background: #fff;
    border: 1.5px solid var(--flavor-border);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.fl-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--flavor-glow);
    border-color: var(--flavor-main);
    background: linear-gradient(to bottom, #ffffff, var(--flavor-sec));
}

.fl-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fl-card-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--flavor-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--flavor-main);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.fl-detail-card:hover .fl-card-icon-box {
    transform: scale(1.1) rotate(-3deg);
    background: var(--flavor-main);
    color: #ffffff;
}

.fl-card-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--flavor-main);
    margin: 0;
    line-height: 1.3;
}

.fl-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.fl-card-text em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 600;
}

/* --- CTA BANNER --- */
.fl-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #8a0f3a 100%);
    margin: 0 5% 50px;
    border-radius: 28px;
    padding: 2px;
}

.fl-cta-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 38px 48px;
    flex-wrap: wrap;
}

.fl-cta-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}

.fl-cta-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.fl-cta-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-family: var(--font-body);
}

.fl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.fl-cta-btn:hover {
    background: var(--color-light-pink);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .fl-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .fl-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fl-cta {
        margin: 0 4% 40px;
    }
    .fl-cta-inner {
        padding: 30px 28px;
        gap: 20px;
    }
    .fl-cta-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .fl-hero {
        padding: 110px 5% 50px;
    }
    .fl-hero-title {
        font-size: 2.2rem;
    }
    .fl-group-header {
        gap: 15px;
        margin-bottom: 24px;
    }
    .fl-group-badge {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
    .fl-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fl-detail-card {
        padding: 24px;
    }
}


