/* ================================================================
   Boba & Sweets — FUNKY MINT edition
   Palette:  Mint (#B8ECDF) + Teal (#5FBDB0) + Gold (#D4B15C)
   Fonts:    Pacifico (script logo) + Fredoka (chunky headings) + Nunito (body)
   Style:    Playful cartoon, PDF character imagery, polka dots, rounded UI
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

/* Reliable emoji rendering — Noto Color Emoji fallback for any system without native emoji font */
.card__emoji-big,
.card__emoji,
.hero__float,
.deco-emoji,
.product__emoji-huge,
.cat-hero__emoji-big,
.cat-tile__emoji,
.drink-card__emoji,
.hero__sparkle {
  font-family: 'Noto Color Emoji', 'Segoe UI Emoji', 'Apple Color Emoji', 'Twemoji Mozilla', sans-serif !important;
}

:root {
  --mint:         #B8ECDF;
  --mint-light:   #DBF5EE;
  --mint-lighter: #ECFAF6;
  --teal:         #5FBDB0;
  --teal-deep:    #3E9E90;
  --teal-dark:    #2B7A6E;
  --gold:         #D4B15C;
  --gold-soft:    #E8D294;
  --pink-soft:    #F5C4C8;
  --ink:          #1F3F3A;    /* deep teal-ink for text */
  --ink-soft:     #3A5F58;
  --ink-muted:    #6E8B85;
  --line:         #C9E5DE;
  --white:        #FFFFFF;
  --cream:        #FDF9F0;

  --font-script:  'Pacifico', cursive;
  --font-display: 'Fredoka', 'Nunito', sans-serif;
  --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:       18px;
  --radius-lg:    28px;
  --radius-xl:    36px;
  --ease:         cubic-bezier(.2, .7, .2, 1);

  --container:    1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);   /* soft cream base — NOT green */
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---- Decorative blob shapes (used per section) ---------------- */
.blob {
  position: absolute;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  filter: blur(.5px);
}
.blob--mint      { background: linear-gradient(135deg, var(--mint), var(--teal)); }
.blob--teal      { background: linear-gradient(135deg, var(--teal-soft, #A5DBCE), var(--teal)); }
.blob--pink      { background: linear-gradient(135deg, var(--pink-soft), #F7A9B0); }
.blob--gold      { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); }
.blob--lavender  { background: linear-gradient(135deg, #DCC9EE, #B49BD9); }
.blob--sm  { width: 120px; height: 120px; }
.blob--md  { width: 220px; height: 220px; }
.blob--lg  { width: 340px; height: 340px; }
.blob--xl  { width: 460px; height: 460px; }

/* Small floating icons/emojis as background accents */
.deco-emoji {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .45;
  filter: drop-shadow(0 2px 6px rgba(31, 63, 58, .12));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--ink); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

/* Utilities */
.script { font-family: var(--font-script); font-weight: 400; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(219, 245, 238, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(46, 122, 110, .1);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 28px;
  color: var(--teal-deep);
  line-height: 1;
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(46, 122, 110, .2));
}
/* Small inline logo used in drawer/footer */
.logo-inline {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 4px;
  filter: drop-shadow(0 2px 4px rgba(46, 122, 110, .2));
}
.logo-inline--light {
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, .2)) brightness(1.05);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--teal-deep); }
.nav__cta {
  padding: 10px 22px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(95, 189, 176, .35);
  transition: box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.nav__cta:hover { background: var(--teal-deep); box-shadow: 0 6px 20px rgba(46, 122, 110, .45); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--teal-deep);
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46, 122, 110, .12);
}
.nav__toggle svg { width: 22px; height: 22px; }

/* -------- OFF-CANVAS DRAWER -------- */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.drawer[hidden] { display: none; }
.drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(31, 63, 58, .55);
  opacity: 0;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.drawer.is-open .drawer__overlay { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 340px; max-width: 88vw;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 236, 223, .8) 0%, transparent 60%),
    var(--white);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: -20px 0 50px rgba(31, 63, 58, .18);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  pointer-events: none;
}
.drawer.is-open .drawer__panel { transform: translateX(0); pointer-events: auto; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; }
.drawer__brand {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.drawer__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint-lighter);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer__close svg { width: 20px; height: 20px; }
.drawer__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 6px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.drawer__nav-num { display: none; }
.drawer__nav-arrow { margin-left: auto; color: var(--teal); }
.drawer__foot { display: flex; flex-direction: column; gap: 16px; }
.drawer__cta { width: 100%; justify-content: center; }
.drawer__socials {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.drawer__socials a {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
}
.drawer__socials a:hover { color: var(--teal-deep); }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 177, 92, .18) 0%, transparent 40%),
    linear-gradient(180deg, var(--mint) 0%, var(--mint-light) 100%);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .6;
}
.hero::before {
  top: 60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212, 177, 92, .3) 0%, transparent 70%);
}
.hero::after {
  bottom: 40px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(95, 189, 176, .25) 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(95, 189, 176, .2);
}
.hero__badge .heart { color: var(--gold); font-size: 16px; }

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(48px, 7vw, 88px);
  color: #EC4899;
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 400;
}
.hero__title .accent { color: #BE185D; }

.hero__lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 32px;
  font-weight: 500;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(95, 189, 176, .4);
}
.btn--primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 10px 26px rgba(46, 122, 110, .5);
}
.btn--secondary {
  background: var(--white);
  color: var(--teal-deep);
  border: 2px solid var(--teal);
}
.btn--secondary:hover { background: var(--mint-lighter); }

.hero__media {
  position: relative;
  min-height: 480px;
}

/* ---- Hero animation keyframes ---- */
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}
@keyframes hero-bob-l {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-10px) rotate(-12deg); }
}
@keyframes hero-bob-r {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50%      { transform: translateY(-8px) rotate(14deg); }
}
@keyframes hero-pulse-bg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: .95; }
}
@keyframes hero-sparkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: .8; }
  50%      { transform: scale(1.25) rotate(15deg); opacity: 1; }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cartoon hero — AI-generated illustration on soft blob backdrop */
.hero__media--illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.hero__illo-bg {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .55) 0%, transparent 50%),
    linear-gradient(135deg, var(--gold-soft) 0%, var(--pink-soft) 55%, var(--mint) 100%);
  box-shadow:
    inset 0 -20px 40px rgba(46, 122, 110, .12),
    0 24px 60px rgba(46, 122, 110, .22);
  z-index: 0;
  animation: hero-pulse-bg 6s ease-in-out infinite;
}
.hero__illo {
  position: relative;
  z-index: 2;
  width: 460px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(31, 63, 58, .22));
  animation: hero-float 4.5s ease-in-out infinite;
}
.hero__char {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(31, 63, 58, .22));
}
.hero__char--bl {
  bottom: -20px; left: -10px;
  transform: rotate(-8deg);
  animation: hero-bob-l 3.5s ease-in-out infinite;
}
.hero__char--br {
  bottom: 20px; right: -30px;
  width: 110px;
  transform: rotate(10deg);
  animation: hero-bob-r 4s ease-in-out infinite .8s;
}

/* Twinkle the sparkle emojis in the hero */
.hero__sparkle {
  animation: hero-sparkle 2.5s ease-in-out infinite;
}
.hero__sparkle--a { animation-delay: 0s; }
.hero__sparkle--b { animation-delay: .6s; }
.hero__sparkle--c { animation-delay: 1.2s; }

/* Hero copy entrance — one-shot fade-up on page load */
.hero__badge { animation: hero-fade-in .7s ease-out both; }
.hero__title { animation: hero-fade-in .7s ease-out .15s both; }
.hero__lede  { animation: hero-fade-in .7s ease-out .3s both; }
.hero__actions { animation: hero-fade-in .7s ease-out .45s both; }

/* Sparkly gold accents */
.hero__sparkle {
  position: absolute;
  font-size: 24px;
  color: var(--gold);
  z-index: 4;
  filter: drop-shadow(0 2px 6px rgba(212, 177, 92, .5));
}
.hero__sparkle--a { top: 20%; left: -6%; }
.hero__sparkle--b { bottom: 10%; right: -3%; font-size: 30px; }
.hero__sparkle--c { top: 45%; left: 45%; font-size: 20px; }

/* -------- SECTIONS SHARED — each has distinct background -------- */
.section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section > .container { position: relative; z-index: 1; }

/* Menu section — pure white for maximum clarity */
#menu { background: var(--white); }
/* About — soft cream */
.about-sec { background: var(--cream) !important; }
/* Contact — pure white */
.contact-sec { background: var(--white) !important; }

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.sec-head__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--mint-light);
  border-radius: 999px;
}
.sec-head h2 {
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 58px);
  color: var(--teal-dark);
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.1;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
.sec-head .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  border-radius: 999px;
  margin: 16px auto 0;
}

/* -------- MENU CATEGORY TABS -------- */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.cat-tab__emoji { font-size: 18px; }
.cat-tab:hover { border-color: var(--teal); color: var(--teal-deep); }
.cat-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 6px 16px rgba(95, 189, 176, .35);
}

/* -------- MENU GRID (products) -------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--mint-light);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 16px 32px rgba(46, 122, 110, .15);
}
.card.is-hidden { display: none; }

.card__media {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 100%);
}
/* Big emoji as the "product image" — cartoon style, no real photos */
.card__emoji-big {
  font-size: 110px;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(31, 63, 58, .18));
  transition: transform .5s var(--ease);
}
.card:hover .card__emoji-big { transform: scale(1.08) rotate(-4deg); }

/* Image inside card__media — sized to match the emoji version so cards look identical
   across home page, category page, and product page's "You might also like" section. */
.card__media img {
  max-width: 45%;
  max-height: 45%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(31, 63, 58, .18));
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.08) rotate(-4deg); }

/* Cartoon PNG illustration inside a card tile */
.card__illo {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(31, 63, 58, .18));
  transition: transform .5s var(--ease);
  position: relative;
  z-index: 1;
}
.card:hover .card__illo { transform: scale(1.06) rotate(-3deg); }

/* Subtle polka dots on media background */
.card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 3px, transparent 4px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,.35) 4px, transparent 5px),
    radial-gradient(circle at 45% 85%, rgba(255,255,255,.4) 2px, transparent 3px);
  background-size: 60px 60px, 90px 90px, 70px 70px;
  pointer-events: none;
}

/* Pastel tints per card for playful variety */
.card__media--tint-mint     { background: linear-gradient(135deg, #DBF5EE, #A5DBCE); }
.card__media--tint-pink     { background: linear-gradient(135deg, #FDE4E6, #F5C4C8); }
.card__media--tint-gold     { background: linear-gradient(135deg, #FBEED0, #E8D294); }
.card__media--tint-lavender { background: linear-gradient(135deg, #EAE0F5, #D3BFEE); }
.card__media--tint-peach    { background: linear-gradient(135deg, #FEE1D3, #FBBFA1); }

.card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.card__price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}
.card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.card__desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.card__tags { display: flex; gap: 5px; overflow: hidden; }
.chip {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--mint-light);
  color: var(--teal-deep);
  white-space: nowrap;
}
.card__more {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  white-space: nowrap;
}

/* -------- THEMED (SIGNATURE) COLLECTIONS -------- */
/* Themed section — mint gradient (only section with green tint) */
.themed-sec {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--mint-lighter) 0%, var(--mint) 100%);
}
.themed-sec > .container { position: relative; z-index: 1; }

.themed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.themed-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.themed-tab__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .5; }
.themed-tab:hover { border-color: var(--teal); color: var(--teal-deep); }
.themed-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 6px 16px rgba(95, 189, 176, .35);
}
.themed-tab.is-active .themed-tab__dot { opacity: 1; background: var(--gold); }

.themed-panel { display: none; }
.themed-panel.is-active { display: block; }

.theme-header { text-align: center; margin-bottom: 40px; }
.theme-header__sub {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  padding: 5px 14px;
  background: var(--white);
  border-radius: 999px;
}
.theme-header__title {
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--teal-dark);
  margin: 0 0 8px;
  font-weight: 400;
}
.theme-header__tagline {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 12px;
}
.theme-header__desc {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 500;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.drink-card {
  background: var(--white);
  border: 2px solid var(--mint-light);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.drink-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 14px 30px rgba(46, 122, 110, .15);
}
.drink-card__char {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.drink-card__char img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(31, 63, 58, .18));
}
.drink-card__emoji {
  font-size: 76px;
  line-height: 1;
}
.drink-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
  line-height: 1.15;
}
.drink-card__desc {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
.drink-card__type {
  display: inline-block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 3px 10px;
  background: var(--mint-light);
  border-radius: 999px;
}
.drink-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.addons-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 20px;
  color: var(--ink-soft);
  font-weight: 600;
  border: 2px dashed var(--gold-soft);
  max-width: 640px;
  margin-inline: auto;
}
.addons-note strong { color: var(--gold); }

/* -------- ABOUT -------- */
.about-sec {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-sec > .container { position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-collage {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.team-collage__img {
  position: absolute;
  width: 58%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(95, 189, 176, .18);
}
.team-collage__img img { width: 100%; height: 100%; object-fit: cover; }
.team-collage__img--tl { top: 0; left: 0; z-index: 1; transform: rotate(-2deg); }
.team-collage__img--tr { top: 0; right: 0; z-index: 2; transform: rotate(2deg); }
.team-collage__img--bl { bottom: 0; left: 0; z-index: 3; transform: rotate(1deg); }
.team-collage__img--br { bottom: 0; right: 0; z-index: 4; transform: rotate(-1deg); }

.about__title {
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 58px);
  color: var(--teal-dark);
  margin: 0 0 16px;
  font-weight: 400;
}
.about__body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  font-weight: 500;
}

.hours-box {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--mint-lighter);
  border: 2px dashed var(--teal);
  border-radius: 20px;
}
.hours-box h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-box ul { list-style: none; margin: 0; padding: 0; }
.hours-box li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hours-box li:last-child { border-bottom: 0; }
.hours-box li span:first-child { color: var(--ink); }

/* -------- CONTACT -------- */
.contact-sec {
  padding: 100px 0;
  background: var(--mint-lighter);
  position: relative;
  overflow: hidden;
}
.contact-sec > .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
}
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(46, 122, 110, .15);
  min-height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-info {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 2px solid var(--mint-light);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-row__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.contact-row:hover .contact-row__icon { background: var(--teal); color: #fff; }
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-row em {
  font-style: normal;
  color: var(--ink-muted);
  font-weight: 600;
}
.contact-row a { color: inherit; transition: color .2s var(--ease); }
.contact-row a:hover { color: var(--teal-deep); }

/* -------- FOOTER -------- */
.footer {
  padding: 64px 0 0;
  background: linear-gradient(180deg, var(--teal-dark) 0%, #1f5f56 100%);
  color: #cdeae4;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer__col--brand { max-width: 340px; }
.footer__brand {
  font-family: var(--font-script);
  font-size: 28px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__brand img { height: 32px; width: auto; }
.footer__tagline {
  color: #a3c9c1;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.footer__heading {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer__links, .footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  color: #cdeae4;
  text-decoration: none;
  font-size: 14px;
  transition: color .15s ease, transform .15s ease;
  display: inline-block;
}
.footer__links a:hover { color: var(--gold); transform: translateX(3px); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #cdeae4;
}
.footer__contact a { color: inherit; text-decoration: none; transition: color .15s ease; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: var(--gold);
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cdeae4;
  transition: all .18s ease;
}
.footer__socials a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 177, 92, .4);
}
.footer__socials svg { width: 18px; height: 18px; }

/* ─── Bottom bar (polished) ─────────────────────────────── */
.footer__bottom {
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a3c9c1;
}
.footer__bottom-left .footer__meta { color: #a3c9c1; }
.footer__bottom-left .dot {
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: inline-block;
}
.footer__bottom-left .heart {
  color: #f472b6;
  animation: heart-pulse 1.4s ease-in-out infinite;
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}
.footer__meta { font-size: 13px; color: #a3c9c1; margin: 0; }

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  color: #a3c9c1;
  font-size: 13px;
  text-decoration: none;
  transition: color .15s ease;
}
.footer__bottom-links a:hover { color: var(--gold); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--gold, #c9a961);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .18s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #b3924d;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (max-width: 900px) {
  .footer { padding: 48px 0 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 32px; }
  .footer__col--brand { grid-column: 1 / -1; max-width: none; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__bottom-left, .footer__bottom-right { justify-content: center; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-right { flex-direction: column; gap: 12px; }
}

/* ================================================================
   PRODUCT DETAIL + CATEGORY PAGES
   ================================================================ */
.breadcrumb {
  padding: 100px 0 20px;
  font-size: 13.5px;
  color: var(--ink-muted);
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-soft); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--teal-deep); }
.breadcrumb span[aria-hidden] { margin: 0 8px; opacity: .5; }
.breadcrumb [aria-current] { color: var(--teal-deep); font-weight: 700; }

.product-loading, .product-notfound {
  padding: 150px 0;
  text-align: center;
  color: var(--ink-muted);
}
.product-notfound h1 { font-family: var(--font-script); font-size: 44px; color: var(--teal-dark); margin: 14px 0; }
.product-notfound .btn { margin-top: 16px; }

/* Product detail */
.product {
  padding: 20px 0 90px;
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product__media {
  position: sticky;
  top: 100px;
}
.product__image {
  aspect-ratio: 1/1;
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #fff;
  background: var(--mint-light);
  box-shadow: 0 16px 40px rgba(46, 122, 110, .15);
}
.product__image img { width: 100%; height: 100%; object-fit: cover; }

/* Cartoon-style hero image (product + themed-drink) — smaller, centered,
   with drop shadow like the original emoji version (was font-size:220px). */
.product__image--cartoon img {
  width: auto;
  height: auto;
  max-width: 62%;
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(31, 63, 58, .25));
  position: relative;
  z-index: 1;
}

/* Cartoon product image — big emoji stage with pastel gradient */
.product__image--cartoon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.5) 0%, transparent 50%),
    linear-gradient(135deg, var(--gold-soft) 0%, var(--pink-soft) 40%, var(--mint) 100%);
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.4) 4px, transparent 5px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.35) 3px, transparent 4px),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,.3) 5px, transparent 6px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.5) 0%, transparent 50%),
    linear-gradient(135deg, var(--gold-soft) 0%, var(--pink-soft) 40%, var(--mint) 100%);
  background-size: 80px 80px, 110px 110px, 95px 95px, 100% 100%, 100% 100%;
}
.product__emoji-huge {
  font-size: 220px;
  line-height: 1;
  filter: drop-shadow(0 12px 24px rgba(31, 63, 58, .25));
}
.product__deco {
  position: absolute;
  font-size: 36px;
  filter: drop-shadow(0 4px 8px rgba(31, 63, 58, .18));
}
.product__deco--1 { top: 20px; left: 20px; color: var(--gold); }
.product__deco--2 { bottom: 30px; right: 26px; font-size: 32px; }
.product__deco--3 { top: 40%; right: 20px; font-size: 30px; }

.product__badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--mint-light);
  color: var(--teal-deep);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product__title {
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--teal-dark);
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.1;
}
.product__price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 20px;
}
.product__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.product__desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 26px;
  font-weight: 500;
}
.product__section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}
.product__variations {
  padding: 18px 22px;
  background: var(--mint-lighter);
  border: 2px dashed var(--teal);
  border-radius: 20px;
  margin-bottom: 24px;
}
.product__variations ul { list-style: none; margin: 0; padding: 0; }
.product__variations li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}
.product__variations li:last-child { border-bottom: 0; }
.product__variations li span:last-child { color: var(--gold); font-weight: 700; }
.product__flavors { margin-bottom: 26px; }
.flavor-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mint-lighter);
  color: var(--teal-deep);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--mint-light);
  margin: 0 4px 6px 0;
  transition: background-color .2s var(--ease);
}
.flavor-pill:hover { background: var(--mint); }
.product__addons {
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(212, 177, 92, .12), rgba(184, 236, 223, .3));
  border-radius: 20px;
  margin-bottom: 30px;
}
.product__addons > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product__addons .flavor-pill { background: #fff; }
.product__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 2px dashed var(--line);
}

/* Related products */
.related {
  padding: 60px 0 100px;
  background: var(--mint-lighter);
}

/* Category page */
.cat-hero {
  position: relative;
  margin: 20px 24px 0;
  border-radius: 32px;
  overflow: hidden;
  min-height: 340px;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.cat-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(46, 122, 110, .75) 0%, rgba(31, 63, 58, .35) 100%);
}

/* Cartoon category hero — no photo, gradient + huge emoji */
.cat-hero--cartoon {
  color: var(--teal-dark);
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 3px, transparent 4px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,.4) 4px, transparent 5px),
    linear-gradient(135deg, var(--mint) 0%, var(--gold-soft) 100%);
  background-size: 100px 100px, 80px 80px, 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.cat-hero--cartoon .cat-hero__inner {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 620px;
}
.cat-hero--cartoon .cat-hero__eyebrow {
  background: rgba(255,255,255,.6);
  color: var(--teal-deep);
  border-color: rgba(46,122,110,.2);
}
.cat-hero--cartoon .cat-hero__title { color: var(--teal-dark); }
.cat-hero--cartoon .cat-hero__desc { color: var(--ink-soft); opacity: 1; }
.cat-hero--cartoon .cat-hero__count {
  color: var(--teal-deep);
  border-color: var(--teal);
  background: rgba(255,255,255,.5);
}
.cat-hero__emoji-big {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(-8deg);
  font-size: 180px;
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(31, 63, 58, .2));
}
.cat-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 70px 40px;
}
.cat-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cat-hero__title {
  font-family: var(--font-script);
  font-size: clamp(40px, 5vw, 60px);
  margin: 6px 0 12px;
  font-weight: 400;
}
.cat-hero__desc {
  font-size: 16px;
  opacity: .92;
  max-width: 560px;
  line-height: 1.6;
  font-weight: 500;
}
.cat-hero__count {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.cat-tile__body { padding: 24px; position: relative; z-index: 2; }
.cat-tile h3 { font-family: var(--font-script); font-size: 24px; color: #fff; margin: 0 0 4px; font-weight: 400; }
.cat-tile p { font-size: 13px; margin: 0 0 8px; opacity: .9; }
.cat-tile__more { font-size: 12px; font-weight: 700; color: var(--gold-soft); }

/* Cartoon category tiles — pastel gradient + big emoji */
.cat-tile--cartoon {
  color: var(--teal-dark);
  border: 2px solid var(--white);
  box-shadow: 0 8px 24px rgba(46, 122, 110, .1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-tile--cartoon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(46, 122, 110, .2);
}
.cat-tile--cartoon.cat-tile--tint-mint     { background: linear-gradient(160deg, #DBF5EE, #A5DBCE); }
.cat-tile--cartoon.cat-tile--tint-pink     { background: linear-gradient(160deg, #FDE4E6, #F5C4C8); }
.cat-tile--cartoon.cat-tile--tint-gold     { background: linear-gradient(160deg, #FBEED0, #E8D294); }
.cat-tile--cartoon.cat-tile--tint-lavender { background: linear-gradient(160deg, #EAE0F5, #D3BFEE); }
.cat-tile__emoji {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 84px;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(31, 63, 58, .18));
  z-index: 1;
}
.cat-tile--cartoon h3 { color: var(--teal-dark); }
.cat-tile--cartoon p { color: var(--ink-soft); opacity: 1; }
.cat-tile--cartoon .cat-tile__more { color: var(--teal-deep); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .drink-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .contact-grid, .product__grid { grid-template-columns: 1fr; gap: 40px; }
  .product__media { position: static; max-width: 520px; margin: 0 auto; width: 100%; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .team-collage { max-width: 460px; }
}

@media (max-width: 720px) {
  /* -------- MOBILE FIXES — clean sections, no oversized decorations -------- */
  .section { padding: 48px 0; }
  .themed-sec, .about-sec, .contact-sec { padding: 48px 0; }
  .container { padding-inline: 20px; }

  /* HIDE all decorative blobs & deco emojis on mobile — they were too big */
  .blob,
  .deco-emoji,
  .hero__sparkle {
    display: none !important;
  }

  /* Section separators — clear visual break between white/mint/cream sections */
  .section, .themed-sec, .about-sec, .contact-sec {
    border-top: none;
  }
  #menu { border-top: 1px solid rgba(95, 189, 176, .12); }
  .about-sec { border-top: 1px solid rgba(95, 189, 176, .12); }
  .contact-sec { border-top: 1px solid rgba(95, 189, 176, .12); }

  .nav { padding: 12px 0; }
  .nav__inner { align-items: center; }
  .nav__brand { font-size: 22px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }

  /* HERO — compact mobile */
  .hero { padding: 84px 0 40px; }
  .hero__grid { gap: 24px; grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); margin-bottom: 14px; }
  .hero__lede { font-size: 14.5px; margin-bottom: 20px; }
  .hero__badge { padding: 6px 14px; font-size: 10.5px; margin-bottom: 16px; }
  .hero__actions { gap: 8px; margin-bottom: 24px; flex-wrap: nowrap; }
  .hero__actions .btn { flex: 1 1 0; min-width: 0; padding: 13px 8px; font-size: 13px; }
  /* Compact illustration stage on mobile */
  .hero__media { min-height: 340px; }
  .hero__illo-bg { width: 300px; height: 300px; }
  .hero__illo { width: 300px; }
  .hero__char { width: 72px; }
  .hero__char--br { width: 80px; }

  .sec-head { margin-bottom: 32px; }
  .sec-head h2 { font-size: clamp(34px, 9vw, 44px); }

  /* Menu — carousel */
  .cat-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding: 0 20px 4px; margin: 0 -20px 24px; }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { white-space: nowrap; flex-shrink: 0; }

  .menu-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, #000 96%, transparent 100%);
    mask-image: linear-gradient(to right, #000 96%, transparent 100%);
  }
  .menu-grid::-webkit-scrollbar { display: none; }
  .menu-grid > .card {
    flex: 0 0 78%;
    max-width: 290px;
    scroll-snap-align: start;
  }

  /* Themed collections — carousel */
  .themed-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding: 0 20px 4px; margin: 0 -20px 32px; }
  .themed-tabs::-webkit-scrollbar { display: none; }
  .themed-tab { white-space: nowrap; flex-shrink: 0; }

  .drink-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, #000 96%, transparent 100%);
    mask-image: linear-gradient(to right, #000 96%, transparent 100%);
  }
  .drink-grid::-webkit-scrollbar { display: none; }
  .drink-grid > .drink-card {
    flex: 0 0 62%;
    max-width: 220px;
    scroll-snap-align: start;
    padding: 18px 14px 16px;
  }
  .drink-card__char { width: 90px; height: 90px; }
  .drink-card__name { font-size: 15px; }

  /* About */
  .team-collage { max-width: 340px; }
  .about__title { font-size: 38px; }
  .hours-box { padding: 18px 20px; }

  /* Contact */
  .contact-map { min-height: 260px; border-width: 3px; }
  .contact-info { padding: 22px; gap: 18px; }

  /* Product detail */
  .breadcrumb { padding: 90px 0 12px; }
  .product { padding: 12px 0 60px; }
  .product__title { font-size: 38px; }
  .product__price { font-size: 22px; }
  .product__image { border-width: 4px; border-radius: 22px; }

  /* Related grid → carousel too */
  .related .menu-grid > .card { flex-basis: 82%; }

  /* Category */
  .cat-hero { min-height: 260px; margin: 12px 20px 0; border-radius: 22px; }
  .cat-hero__inner { padding: 44px 24px; }
  .cat-hero__title { font-size: 36px; }
  .cat-tiles {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .cat-tiles > .cat-tile {
    flex: 0 0 72%;
    max-width: 260px;
    scroll-snap-align: start;
  }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 38px; }
  .menu-grid > .card { flex-basis: 84%; }
  .drink-grid > .drink-card { flex-basis: 72%; }
  .drawer__nav a { font-size: 18px; padding: 14px 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
