/* ═══════════════════════════════════════════════════════════════════════════
   YOYO WEBSITE STYLES
   Frozen Yogurt & Desserts — Irbid, Jordan

   TABLE OF CONTENTS:
   ═══════════════════════════════════════════════════════════════════════════

   1.  CSS Variables & Reset ...................... Line 30
   2.  Base Typography & Elements ................. Line 55
   3.  Utility Classes ............................ Line 80
   4.  Animations ................................. Line 105
   5.  Layout System .............................. Line 140
       - Container
       - Sections
       - Section Headers
       - Wave Transitions
   6.  Global Components .......................... Line 230
       - Buttons (all variants)
       - Pills & Badges
   7.  Page Sections .............................. Line 385
       - Navbar
       - Hero
       - Story
       - Categories
       - Sweets
       - Store Vibe
       - CTA
       - Location
       - Footer
   8.  Feature Sections ........................... Line 1465
       - Catering
       - GSAP Cup Animation
       - Frame-Based Scroll Animation
   9.  Responsive Design .......................... Line 2040
       - Small Phones (< 480px)
       - Tablets (< 768px)
       - Desktop (>= 1024px)

   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
    --red: #C12239;
    --blue: #29428C;
    --pink: #FFBBF8;
    --yellow: #E7FC93;
    --orange: #FF5220;
    --honey: #FDE1A8;
    --font-display: 'Beiruti', sans-serif;
    --font-body: 'Beiruti', sans-serif;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --shadow-card: 0 4px 20px rgba(193,34,57,0.06);
    --shadow-float: 0 20px 40px rgba(193,34,57,0.22), 0 8px 10px rgba(193,34,57,0.10);
    --small-font-size: 1rem;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. BASE TYPOGRAPHY & ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Beiruti';
    src: url('./fonts/beiruti/Beiruti-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.text-white { color: #fff; }

.hidden { display: none !important; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   4. ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal ────────────────────────────────────────────────── */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

.in-view {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* ── Card Float Hover ─────────────────────────────────────────────── */
.card-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-float:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Container ────────────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Sections ─────────────────────────────────────────────────────── */
.section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.section-white {
    background: #fff;
    padding: 5rem 0;
}

.section-pink {
    background: var(--pink);
}

.section-blue { /* handled by bg layers */ }
.section-cta { /* handled by bg layers */ }

/* ── Section Headers ──────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.badge-red {
    background: var(--pink);
    color: var(--red);
}

.badge-pink-blue {
    background: var(--pink);
    color: var(--blue);
}

.badge-white-red {
    background: #fff;
    color: var(--red);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-sub {
    color: #6b7280;
    font-size: 1.25rem;
    max-width: 40rem;
    margin: 0 auto;
}

/* ── Wave Transitions ─────────────────────────────────────────────── */
.wave-transition {
    line-height: 0;
}

.wave-transition svg {
    display: block;
    width: 100%;
}

.wave-bottom {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    pointer-events: none;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 95px;
}

.wave-top {
    background: transparent;
    transform: scaleY(-1);
    z-index: 10 !important;
    position: absolute;
    top: -5px;
    left: 0;
    height: 90px;
    width: 100%;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 95px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. GLOBAL COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
    font-size: 0.9375rem;
    padding: 0.45rem 1.5rem;
}

.btn-lg {
    font-size: 1rem;
    padding: 0.85rem 2.25rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-xl);
    min-height: 52px;
}

/* Button Color Variants */
.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-pink {
    background: var(--pink);
    color: var(--red);
    box-shadow: 0 8px 32px rgba(193,34,57,0.22);
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    border: none;
}

.btn-blue:hover {
    background: #1e337d;
    box-shadow: 0 8px 24px rgba(41,66,140,0.3);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.38);
    backdrop-filter: blur(8px);
}

.btn-ghost-white {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}

.btn-white-orange {
    background: #fff;
    color: var(--orange);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-visit-nav {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Special Button Animations */
@keyframes orderGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(193,34,57,0.28), 0 0 0 0 rgba(193,34,57,0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 48px rgba(193,34,57,0.5), 0 0 0 8px rgba(193,34,57,0.08);
        transform: scale(1.045);
    }
}

.btn-order-now {
    animation: orderGlow 2.2s ease-in-out infinite;
    position: relative;
}

.btn-order-now:hover {
    animation-play-state: paused;
    opacity: 1;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 16px 56px rgba(193,34,57,0.55);
}

/* Floating Sticky Bar (Order Button + Language Toggle) */
.floating-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.floating-bar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.floating-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 28px rgba(193,34,57,0.45);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: floatingOrderGlow 2.4s ease-in-out infinite;
}

.floating-order-btn:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 44px rgba(193,34,57,0.6);
}

.floating-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--red);
    background: #fff;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(193,34,57,0.25);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.floating-lang-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateY(-2px);
}

@keyframes floatingOrderGlow {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(193,34,57,0.35), 0 0 0 0 rgba(193,34,57,0.3);
    }
    50% {
        box-shadow: 0 12px 44px rgba(193,34,57,0.55), 0 0 0 8px rgba(193,34,57,0.08);
    }
}

body.floating-btn-visible {
    padding-bottom: 5rem;
}

/* ── Pills & Badges ───────────────────────────────────────────────── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.pill-pink {
    background: var(--pink);
    color: var(--red);
}

.pill-yellow {
    background: var(--yellow);
    color: #333;
}

.pill-white {
    background: rgba(255,255,255,0.92);
    color: var(--blue);
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. PAGE SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══ NAVBAR ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,187,248,0.35);
    box-shadow: 0 2px 24px rgba(193,34,57,0.07);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    user-select: none;
}

.navbar-logo-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    transition: color 0.4s;
}

.navbar.scrolled .navbar-logo-name {
    color: var(--red);
    text-shadow: none;
}

.navbar-logo-sub {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color 0.4s;
}

.navbar.scrolled .navbar-logo-sub {
    color: rgba(193,34,57,0.45);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    transition: opacity 0.2s, color 0.4s;
}

.navbar-links a:hover {
    opacity: 0.6;
}

.navbar.scrolled .navbar-links a {
    color: #3d3d3d;
}

.navbar-cta-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-lang-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.navbar-lang-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

.navbar.scrolled .navbar-lang-btn {
    border-color: rgba(193,34,57,0.3);
    color: var(--red);
}

.navbar.scrolled .navbar-lang-btn:hover {
    background: rgba(193,34,57,0.06);
    border-color: var(--red);
}

.navbar-cta-wrap .btn-visit-nav {
    transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.navbar.scrolled .btn-visit-nav {
    background: var(--red);
    color: #fff;
    border-color: transparent;
}

.navbar-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
    transition: color 0.4s;
}

.navbar.scrolled .navbar-burger {
    color: var(--red);
}

.mobile-menu {
    background: #fff;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--pink);
}

.mobile-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--red);
    padding: 0.25rem 0;
}

/* Logo Sizing */
.logo-img {
    width: 200px;
    height: auto;
}

#bring_yoyo_logo {
    width: 120px;
}

#footer_yoyo_logo {
    width: 120px;
}


/* ═══ HERO ═════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('./images/pattern-yogurt.png');
    background-size: cover;
    background-position: center;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(193,34,57,0.78) 0%, rgba(100,15,30,0.65) 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,187,248,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 72rem;
    margin: 0 auto;
    padding: 72px 1.5rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.375rem 1.25rem;
    border-radius: 999px;
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 38rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
}

.hero-sub-title {
    color: rgba(255,255,255,0.75);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.65;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.hero-image-box {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: clamp(140px, 18vh, 200px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.hero-img {
    object-position: center 40%;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(193,34,57,0.5) 0%, transparent 50%);
}

.hero-pills {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    border-radius: 1rem;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

.stat-item {
    padding: 0.5rem 1.25rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.stat-label {
    /*font-size: 0.8rem;*/
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.2);
}


/* ═══ STORY ════════════════════════════════════════════════════════════ */
.story-blob {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: var(--pink);
    filter: blur(70px);
    pointer-events: none;
}

.story-blob-tl {
    top: -6rem;
    left: -6rem;
    opacity: 0.18;
}

.story-blob-br {
    bottom: -6rem;
    right: -6rem;
    opacity: 0.14;
}

.callouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.callout-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255,187,248,0.4);
    background: rgba(255,187,248,0.06);
}

.callout-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.callout-label {
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 600;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-subhead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.story-desc {
    color: #6b7280;
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ingredient-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,187,248,0.4);
    background: #fff;
}

.ingredient-emoji {
    font-size: 1.5rem;
    width: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.ingredient-info {
    flex: 1;
}

.ingredient-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.ingredient-desc {
    color: gray;
    font-size: 0.9rem;
}

.ingredient-num {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    user-select: none;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    aspect-ratio: 4 / 5;
}

.story-img {
    object-position: center;
}

.story-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.story-img-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: #fff;
}

.caption-label {
    font-size: 0.8125rem;
    font-weight: 600;
    opacity: 0.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.caption-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 900;
}


/* ═══ CATEGORIES ═══════════════════════════════════════════════════════ */
.categories-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('./images/pattern-drinks.png');
    background-size: cover;
    background-position: center;
}

.categories-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(41,66,140,0.65);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cat-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cat-image-wrap {
    position: relative;
    aspect-ratio: 4 / 2;
}

.cat-img {
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.05);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}

.cat-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    width:100%;
    padding: 1.5rem 2rem;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    flex-shrink: 0;
}

.cat-badge {
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.cat-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cat-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    font-weight: 500;
}

.cat-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.cat-card:hover .cat-description {
    max-height: 5rem;
    opacity: 1;
}


/* ═══ SWEETS ═══════════════════════════════════════════════════════════ */
.sweets-blob {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.sweets-blob-tr {
    top: -4rem;
    right: 2rem;
    opacity: 0.3;
}

.sweets-blob-bl {
    bottom: -4rem;
    left: 2rem;
    opacity: 0.25;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255,187,248,0.18);
    color: var(--red);
    border: 1px solid rgba(193,34,57,0.15);
}

.filter-btn.active {
    background: var(--red);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(193,34,57,0.25);
}

.sweets-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sweets-slider::-webkit-scrollbar {
    display: none;
}

.sweet-card {
    flex-shrink: 0;
    width: clamp(220px, 28vw, 280px);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pink);
    scroll-snap-align: start;
    box-shadow: var(--shadow-card);
}

.sweet-card.hidden-filter {
    display: none;
}

.sweet-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.sweet-img {
    transition: transform 0.5s ease;
}

.sweet-card:hover .sweet-img {
    transform: scale(1.1);
}

.sweet-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 40%, transparent 100%);
}

.sweet-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #fff;
}

.sweet-info {
    padding: 1.25rem;
}

.sweet-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 0.375rem;
}

.sweet-desc {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.swipe-hint {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #d1d5db;
    font-weight: 500;
    letter-spacing: 0.1em;
}


/* ═══ STORE VIBE ═══════════════════════════════════════════════════════ */
.vibe-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('./images/pattern-yogurt.png');
    background-size: cover;
    background-position: center;
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.vibe-photo-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-height: 420px;
}

.vibe-photo {
    object-position: center;
}

.vibe-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
}

.vibe-photo-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
}

.vibe-caption-sub {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.vibe-caption-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
}

.vibe-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vibe-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vibe-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    flex-shrink: 0;
}

.vibe-feature-text {
    font-weight: 700;
    font-size: 0.9375rem;
}

.vibe-yogurt-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    flex: 1;
    min-height: 180px;
}

.vibe-yogurt {
    object-position: center;
}

.vibe-yogurt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(193,34,57,0.6) 0%, transparent 60%);
}

.vibe-yogurt-caption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: #fff;
}

.vibe-yogurt-sub {
    font-size: 0.9375rem;
    opacity: 0.7;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.vibe-yogurt-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
}


/* ═══ CTA ══════════════════════════════════════════════════════════════ */
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('./images/pattern-churros.png');
    background-size: cover;
    background-position: center;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,82,32,0.65);
}

.cta-glow-tr {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(231,252,147,0.2);
    filter: blur(3rem);
    pointer-events: none;
}

.cta-glow-bl {
    position: absolute;
    bottom: -5rem;
    left: -5rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(3rem);
    pointer-events: none;
}

.cta-sparkles {
    color: rgba(255,255,255,0.7);
    display: block;
    margin: 0 auto 1.5rem;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


/* ═══ LOCATION ═════════════════════════════════════════════════════════ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.map-wrap {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 2px solid var(--pink);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--pink);
    background: #fff;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0,0,0,0.35);
    margin-bottom: 0.2rem;
}

.info-value {
    font-weight: 700;
    font-size: 1rem;
}

.info-sub {
    color: #9ca3af;
    font-size: 0.9375rem;
    margin-top: 2px;
}


/* ═══ FOOTER ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--red);
    position: relative;
}

.footer-pattern {
    width: 100%;
    height: 1.25rem;
    background-image: url('./images/pattern-yogurt.png');
    background-size: 280px;
    background-repeat: repeat-x;
    opacity: 0.15;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
}

.footer-logo-sub {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

a.footer-link:hover {
    color: #fff;
}

.footer-link-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,187,248,0.15);
    flex-shrink: 0;
    color: #fff;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.footer-copy, .footer-made {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. FEATURE SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══ CATERING ═════════════════════════════════════════════════════════ */
.catering-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.catering-card {
    background: #fff;
    border: 1px solid rgba(193,34,57,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(193,34,57,0.12);
}

.catering-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catering-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    width: fit-content;
}

.catering-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
}

.catering-desc {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    flex: 1;
}

.catering-sweets {
    text-align: center;
    padding: 2rem;
    background: rgba(255,187,248,0.12);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,187,248,0.5);
    margin-bottom: 2.5rem;
}

.catering-sweets-label {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.catering-sweets-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.sweet-chip {
    background: #fff;
    border: 1px solid rgba(193,34,57,0.15);
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.catering-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.catering-cta-note {
    font-size: 0.9375rem;
    color: #9ca3af;
}


/* ═══ GSAP CUP ANIMATION ═══════════════════════════════════════════════ */
.cup-section {
    height: 280vh;
    position: relative;
    background: #fff;
}

.cup-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cup-scene {
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cup-scene-header {
    text-align: center;
    z-index: 10;
}

.cup-scene-header .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin: 0.5rem 0 0.4rem;
}

.cup-scene-header .section-sub {
    font-size: 1rem;
    color: #6b7280;
}

.cup-anim-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

.cup-container {
    position: relative;
    width: 320px;
    max-width: 72vw;
    flex-shrink: 0;
    transform-origin: center bottom;
}

.cup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    pointer-events: none;
    object-fit: unset;
}

.cup-inner {
    position: absolute;
    top: 22%;
    left: 13%;
    right: 13%;
    bottom: 8%;
    z-index: 2;
    overflow: hidden;
    clip-path: polygon(3% 0%, 97% 0%, 90% 100%, 10% 100%);
}

.yogurt-fill {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 100% 0);
    background: radial-gradient(ellipse 65% 22% at 50% 6%, rgba(255,255,255,0.88) 0%, transparent 100%),
                radial-gradient(ellipse 38% 18% at 22% 38%, rgba(255,255,255,0.42) 0%, transparent 100%),
                radial-gradient(ellipse 30% 14% at 75% 55%, rgba(255,255,255,0.28) 0%, transparent 100%),
                linear-gradient(170deg, #fff5fb 0%, #ffe4f4 30%, #FFD0EE 65%, #FFBBF8 100%);
}

.toppings-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.candy {
    position: absolute;
    border-radius: 50%;
    box-shadow: inset -2px -3px 0 rgba(0,0,0,0.18), inset 2px 2px 0 rgba(255,255,255,0.45);
    opacity: 0;
    transform: translateY(-50px) scale(0.6);
}

.nut {
    position: absolute;
    width: 13px;
    height: 8px;
    border-radius: 42% 58% 54% 46% / 48% 52% 42% 58%;
    box-shadow: inset -1px -2px 0 rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(-50px) scale(0.5);
}

.sauce-line {
    position: absolute;
    left: 6%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, transparent 0%, #3D1C02 15%, #5c2a00 50%, #3D1C02 85%, transparent 100%);
    opacity: 0;
    transform-origin: left center;
    transform: scaleX(0);
}

#sauce1 { top: 7%; width: 74%; }
#sauce2 { top: 17%; width: 58%; left: 20%; }
#sauce3 { top: 27%; width: 72%; left: 4%; }

.sauce-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3D1C02;
    opacity: 0;
    transform: scale(0);
}

.cup-labels {
    width: 210px;
    position: relative;
    min-height: 130px;
}

.cup-label {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
}

.label-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    color: var(--red);
    opacity: 0.55;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.label-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 0.3rem;
    line-height: 1.25;
}

.label-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.65;
}

.cup-progress {
    display: flex;
    gap: 7px;
    margin-top: 1.75rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(193,34,57,0.15);
    transition: background 0.25s, transform 0.25s;
}

.progress-dot.active {
    background: var(--red);
    transform: scale(1.2);
}


/* ═══ FRAME-BASED SCROLL ANIMATION ═════════════════════════════════════ */
.fy-animation-sequence {
    position: relative;
    height: 500vh;
    margin-top: 0rem;
}

.fy-animation-sequence__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding-top: 7rem;
}

.fy-animation-canvas {
    position: absolute;
    bottom: 0;
    height: clamp(300px, 72dvh, 700px);
    width: auto;
    aspect-ratio: 540 / 780;
    max-width: 100%;
    object-fit: contain;
    will-change: transform;
}

/* Loading Overlay */
.fy-animation-loader {
    position: absolute;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(155deg, rgba(193, 34, 57, 0.92) 0%, rgba(100, 15, 28, 0.88) 100%);
    transition: opacity 0.55s ease, visibility 0.55s ease;
    visibility: visible;
    opacity: 1;
}

.fy-animation-loader.fy-loader--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fy-loader-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(255, 187, 248, 0.18);
    border-top-color: var(--pink);
    animation: fy-spin 0.85s linear infinite;
}

@keyframes fy-spin {
    to { transform: rotate(360deg); }
}

.fy-loader-label {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.04em;
    margin: 0;
}

.fy-loader-pill {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    overflow: hidden;
}

.fy-loader-pill__fill {
    width: 100%;
    height: 100%;
    background: var(--pink);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.fy-loader-pct {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Phase Text Overlays */
.fy-animation-phase-text {
    position: absolute;
    z-index: 10;
    text-align: left;
    pointer-events: none;
    left: clamp(2rem, 8vw, 8rem);
    bottom: clamp(3rem, 10vh, 8rem);
    max-width: 320px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fy-animation-phase-text.fy-animation-phase-text--active {
    opacity: 1;
    transform: translateY(0);
}

.fy-animation-phase-text__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
    margin: 0.4rem 0;
}

.fy-animation-phase-text__body {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Side Progress Bar */
.fy-animation-progress-track {
    position: absolute;
    right: clamp(1rem, 3vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30vh;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    z-index: 10;
    overflow: hidden;
}

/*.fy-animation-progress-bar {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--pink), var(--red));
    border-radius: 2px;
    transition: height 0.1s linear;
    will-change: height;
}*/


/* ═══════════════════════════════════════════════════════════════════════════
   9. RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Small Phones (< 480px) ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .section {
        padding: 3.5rem 0;
    }

    .callouts-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fy-animation-phase-text__heading {
        font-size: 1.2rem;
    }

    .fy-loader-pill {
        width: 140px;
    }
}


/* ── Tablets & Large Phones (< 768px) ─────────────────────────────────── */
@media (max-width: 768px) {
    /* ── Navbar ── */
    .navbar-links,
    .navbar-cta-wrap {
        display: none;
    }

    .navbar-burger {
        display: flex;
    }

    .navbar-inner {
        padding: 2.5rem 1.5rem;
        height: 50px;
    }

    .logo-img {
        width: 150px;
    }

    /* ── Hero ── */
    .hero-headline {
        font-size: 2.5rem;
    }

    /* ── Story ── */
    .callouts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }

    .callout-card {
        padding: 1.25rem 0.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-right {
        order: -1;
    }

    .story-img-wrap {
        aspect-ratio: 16/9;
    }

    /* ── Categories ── */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cat-content {
        padding: 0.5rem 1rem;
    }

    .cat-description {
        max-height: 5rem;
        opacity: 1;
    }

    /* ── Vibe ── */
    .vibe-grid {
        grid-template-columns: 1fr;
    }

    .vibe-photo-wrap {
        min-height: 300px;
    }

    /* ── CTA ── */
    .cta-sub {
        font-size: 1rem;
    }

    /* ── Location ── */
    .location-grid {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ── Wave Transitions ── */
    .wave-bottom {
        bottom: -37px;
    }

    .wave-top {
        top: -35px;
    }

    /* ── Cup Animations ── */
    .cup-anim-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cup-labels {
        width: 100%;
        text-align: center;
        min-height: 90px;
    }

    .cup-label {
        position: relative;
        top: auto;
        left: auto;
    }

    .cup-progress {
        justify-content: center;
    }

    .cup-container {
        width: 260px;
    }

    .cup-section {
        height: 300vh;
    }

    /* ── Frame Animation ── */
    .fy-animation-sequence__sticky {
        height: 70dvh;
    }

    .fy-animation-canvas {
        height: clamp(240px, 55dvh, 440px);
        right: 0;
        bottom: 0;
    }

    .fy-animation-phase-text {
        left: 1.25rem;
        bottom: 0.5rem;
        max-width: 155px;
    }

    .fy-animation-phase-text__heading {
        font-size: 1.4rem;
        line-height: 1;
    }

    .fy-animation-phase-text__body {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .fy-animation-progress-track {
        right: 0.75rem;
        height: 20vh;
    }

    /* ── Logo Sizing ── */
    #bring_yoyo_logo {
        width: 75px;
    }

    #footer_yoyo_logo {
        width: 100px;
    }

    /* ── Floating Order Button ── */
    .floating-order-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9375rem;
    }

    .floating-lang-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
    }
}


/* ── Tablet Landscape (768px - 1023px) ────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .sweets-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .sweet-card {
        width: auto;
        flex-shrink: unset;
    }

    .swipe-hint {
        display: none;
    }
}


/* ── Catering Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .catering-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .catering-grid {
        grid-template-columns: 1fr;
    }
}


/* ── Desktop (>= 1024px) ──────────────────────────────────────────────── */
@media (min-width: 1024px) {
    /* Sweets: Grid instead of horizontal slider */
    .sweets-slider {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .sweet-card {
        width: auto;
        flex-shrink: unset;
    }

    .swipe-hint {
        display: none;
    }

    /* Frame Animation */
    .fy-animation-phase-text {
        max-width: 250px;
    }
}


/* ── Medium Desktop (< 1200px) ────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cup-anim-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .wave-top {
        top: -32px;
    }
}
{
        width: auto;
        flex-shrink: unset;
    }

    .swipe-hint {
        display: none;
    }

    /* Frame Animation */
    .fy-animation-phase-text {
        max-width: 250px;
    }
}


/* ── Medium Desktop (< 1200px) ────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cup-anim-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wave-bottom {
        bottom: -38px;
    }

    .wave-top {
        top: -32px;
    }
}
ight;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fy-animation-phase-text {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .fy-animation-sequence__sticky {
        height: 70dvh;
    }

    .fy-animation-canvas {
        height: clamp(240px, 55dvh, 440px);
        right: 0;
        bottom: 0;
    }

    .fy-animation-phase-text {
        left: 1.25rem;
        bottom: 0.5rem;
        max-width: 155px;
    }

    .fy-animation-phase-text__heading {
        font-size: 1.4rem;
        line-height: 1;
    }

    .fy-animation-phase-text__body {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .fy-animation-progress-track {
        right: 0.75rem;
        height: 20vh;
    }
}

@media (max-width: 480px) {
    .fy-animation-phase-text__heading {
        font-size: 1.2rem;
    }

    .fy-loader-pill {
        width: 140px;
    }
}
