/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #14100D;
  --bg-2:      #1D1611;
  --bg-3:      #271C15;
  --bg-4:      #33241A;
  --cream:     #F7F2E9;
  --cream-2:   #D8CDBC;
  --cream-3:   #948572;
  --red:       #E42127;
  --red-2:     #B4181D;
  --orange:    #FF7A1E;
  --orange-2:  #E0630D;
  --yellow:    #FFC107;
  --white:     #FFFFFF;
  --line:      rgba(247,242,233,.12);
  --line-2:    rgba(247,242,233,.22);

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Manrope", "Inter", -apple-system, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 78px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; appearance: none; -webkit-appearance: none; -moz-appearance: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.01em; font-family: var(--display); text-transform: uppercase; font-weight: 400; }
::selection { background: var(--orange); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--yellow); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 800; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .9rem;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: .8rem; }
.section-title em { font-style: normal; color: var(--orange); }
.section-sub { color: var(--cream-2); font-size: 1.05rem; max-width: 52ch; }
.section-halo {
  position: absolute; inset: -20% -10% -20% -10%; z-index: 0;
  background: radial-gradient(45% 40% at 50% 30%, rgba(228,33,39,.16), transparent 70%);
  filter: blur(90px); pointer-events: none;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 800; font-size: .95rem;
  letter-spacing: .01em; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(228,33,39,.55);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 38px -8px rgba(228,33,39,.7); }
.btn-ghost {
  background: rgba(247,242,233,.06);
  border: 1.5px solid var(--line-2);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(247,242,233,.12); transform: translateY(-3px); }
.btn-yellow {
  background: var(--yellow); color: var(--bg);
  box-shadow: 0 10px 26px -8px rgba(255,193,7,.5);
}
.btn-yellow:hover { transform: translateY(-3px) scale(1.02); }
.btn-sm { padding: .65rem 1.2rem; font-size: .82rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* Placeholder photo blocks */
.ph {
  position: relative;
  aspect-ratio: var(--ar, 4/3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 100% at 15% 0%, rgba(255,122,30,.28), transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(228,33,39,.30), transparent 55%),
    linear-gradient(150deg, var(--bg-4), var(--bg-3));
  isolation: isolate;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,242,233,.09) 1px, transparent 1px);
  background-size: 14px 14px;
  mix-blend-mode: overlay;
  opacity: .5;
}
.ph-icon { font-size: clamp(2.2rem, 6vw, 3.4rem); filter: drop-shadow(0 8px 18px rgba(0,0,0,.5)); opacity: .92; transition: transform .5s var(--ease-out); }
.ph:hover .ph-icon { transform: scale(1.08) rotate(-4deg); }
.ph-photo { padding: 0; }
.ph-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.ph-photo:hover img { transform: scale(1.06); }
.ph-photo::after { z-index: 1; }

/* =============================================================
   4. Header / Nav
   ============================================================= */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(20,16,13,.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-size: 1.4rem; letter-spacing: .01em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand small { display: block; white-space: nowrap; font-family: var(--sans); font-size: .55rem; letter-spacing: .14em; color: var(--yellow); font-weight: 800; text-transform: uppercase; }
@media (min-width: 960px) and (max-width: 1239px) {
  .brand small { display: none; }
}

.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1240px) {
  .nav-links { gap: 2rem; }
}
.nav-links a { font-weight: 700; font-size: .88rem; letter-spacing: .01em; position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0%;
  background: var(--orange); transition: width .35s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .7rem; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,242,233,.08); border: 1px solid var(--line);
  font-size: 1.15rem; transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.icon-btn:hover { background: rgba(247,242,233,.16); transform: translateY(-2px); }
.cart-badge {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 4px;
  border-radius: 999px; background: var(--yellow); color: var(--bg);
  font-size: .68rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s var(--ease-bounce);
}
.cart-badge.is-visible { transform: scale(1); }

.nav-burger { display: flex; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; background: rgba(247,242,233,.08); border: 1px solid var(--line); }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--cream); position: relative; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out); }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 450;
  background: rgba(15,11,9,.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 0; padding: 2rem var(--gutter);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--display); font-size: 1.7rem; padding-block: .7rem; border-bottom: 1px solid var(--line); text-transform: uppercase; }
.mobile-nav .btn { margin-top: 1.6rem; }

[data-cta-desktop] { display: none !important; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  [data-cta-desktop].is-shown { display: inline-flex !important; }
}

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9998; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.2s forwards;
}
.splash-mark { font-family: var(--display); font-size: clamp(2.4rem, 8vw, 4.5rem); letter-spacing: .02em; display: flex; gap: .15em; }
.splash-mark span { display: inline-block; opacity: 0; transform: translateY(30px); animation: splashLetter .7s var(--ease-bounce) forwards; }
.splash.is-out { animation: none; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease-out); }
@keyframes splashLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
  background: radial-gradient(120% 90% at 50% 0%, #241914 0%, var(--bg) 65%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: 0; opacity: .8;
  background:
    radial-gradient(38% 45% at 18% 25%, rgba(228,33,39,.42), transparent 60%),
    radial-gradient(42% 40% at 85% 20%, rgba(255,193,7,.30), transparent 60%),
    radial-gradient(46% 50% at 60% 90%, rgba(255,122,30,.36), transparent 60%);
  filter: blur(70px); animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(8deg); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  grid-template-columns: 1fr;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem;
  background: rgba(247,242,233,.07); border: 1px solid var(--line); border-radius: 999px;
  font-size: .78rem; font-weight: 700; color: var(--cream-2); margin-bottom: 1.4rem; width: fit-content;
}
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-title {
  font-size: clamp(2.7rem, 8vw, 6.6rem); line-height: .96; max-width: 16ch;
}
.hero-title .line-accent { color: transparent; -webkit-text-stroke: 2px var(--orange); }
.hero-title em { font-style: normal; color: var(--yellow); }
.hero-sub { color: var(--cream-2); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 46ch; margin-block: 1.3rem 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3rem); margin-top: clamp(2.4rem, 6vw, 3.5rem); }
.hero-stat strong { display: block; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--yellow); }
.hero-stat span { font-size: .8rem; color: var(--cream-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

.hero-scroll {
  position: absolute; bottom: clamp(1.2rem, 3vw, 2rem); left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--cream-3); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--orange), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; }
}

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee-strip {
  position: relative; z-index: 3; background: linear-gradient(90deg, var(--red), var(--orange));
  padding-block: .85rem; overflow: hidden; transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marqueeScroll 26s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 1.05rem; color: var(--bg); letter-spacing: .04em; white-space: nowrap; display: flex; align-items: center; gap: .8rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   8. Bestsellers (horizontal scroll)
   ============================================================= */
.best-scroller {
  display: flex; gap: 1.25rem; overflow-x: auto; overflow-y: visible;
  padding-block: .5rem 2rem; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.best-scroller::-webkit-scrollbar { height: 6px; }
.best-scroller::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.best-card {
  scroll-snap-align: start; flex: 0 0 auto; width: min(78vw, 300px);
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.best-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.best-ribbon {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--yellow); color: var(--bg); font-weight: 900; font-size: .68rem;
  padding: .35rem .7rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
}
.best-card .ph { border-radius: 0; position: relative; }
.best-card-body { padding: 1.3rem; }
.best-card-body h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.best-card-body p { color: var(--cream-3); font-size: .85rem; margin-bottom: .9rem; }
.best-card-foot { display: flex; align-items: center; justify-content: space-between; }
.price-tag { font-family: var(--display); font-size: 1.25rem; color: var(--orange); }

.combo-photo-row { display: flex; align-items: center; gap: .5rem; padding: .9rem .9rem 0; }
.combo-photo-row .ph { flex: 1 1 auto; --ar: 4/3; }
.combo-photo-row .combo-photo-drink { flex: 0 0 62px; width: 62px; --ar: 1/1; }
.best-card .combo-photo-row .ph { border-radius: 10px; }
.combo-plus { flex: 0 0 auto; font-family: var(--display); font-size: 1.3rem; color: var(--yellow); }
.combo-price-before { display: block; font-size: .78rem; color: var(--cream-3); text-decoration: line-through; }

.drink-picker { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .4rem; }
.drink-choice {
  flex: 0 0 auto; width: 72px; display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem; border-radius: 12px; border: 1px solid var(--line); background: rgba(247,242,233,.04);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.drink-choice:hover { border-color: var(--line-2); }
.drink-choice .ph { width: 48px; height: 48px; border-radius: 8px; }
.drink-choice span { font-size: .68rem; text-align: center; line-height: 1.15; color: var(--cream-2); }
.drink-choice.is-selected { border-color: var(--yellow); background: rgba(255,193,7,.12); }
.drink-choice.is-selected span { color: var(--cream); font-weight: 700; }

/* =============================================================
   9. Menu
   ============================================================= */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.menu-tab {
  padding: .6rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(247,242,233,.04); font-weight: 700; font-size: .85rem;
  display: inline-flex; align-items: center; gap: .5rem; transition: all .3s var(--ease-out);
}
.menu-tab:hover { background: rgba(247,242,233,.09); }
.menu-tab.is-active { background: linear-gradient(135deg, var(--orange), var(--red)); border-color: transparent; color: var(--white); box-shadow: 0 8px 20px -8px rgba(228,33,39,.6); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), border-color .3s var(--ease-out);
}
.menu-card.is-visible { opacity: 1; transform: translateY(0); }
.menu-card:hover { border-color: var(--line-2); }
.menu-card .ph { border-radius: 0; }
.menu-card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2; font-size: .65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; padding: .3rem .6rem; border-radius: 999px;
  background: var(--red); color: var(--white);
}
.menu-card-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.menu-card-top h3 { font-size: 1.05rem; line-height: 1.1; }
.menu-card-price { font-family: var(--display); font-size: 1.1rem; color: var(--orange); white-space: nowrap; }
.menu-card-price-before { display: block; font-family: var(--sans); font-size: .75rem; color: var(--cream-3); text-decoration: line-through; font-weight: 600; }
.menu-card-desc { color: var(--cream-2); font-size: .92rem; }
.menu-card-ing { color: var(--cream-2); font-size: .82rem; line-height: 1.5; }
.menu-card-actions { margin-top: auto; padding-top: .8rem; display: flex; align-items: center; gap: .7rem; }

.qty-stepper { display: flex; align-items: center; gap: .1rem; background: rgba(247,242,233,.06); border: 1px solid var(--line); border-radius: 999px; padding: .2rem; }
.qty-btn { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; transition: background .25s var(--ease-out); }
.qty-btn:hover { background: rgba(247,242,233,.14); }
.qty-value { min-width: 22px; text-align: center; font-weight: 800; font-size: .9rem; }
.btn-add { flex: 1; }

.menu-empty { text-align: center; padding: 3rem 1rem; color: var(--cream-3); display: none; }
.menu-empty.is-visible { display: block; }

/* =============================================================
   10. Promos
   ============================================================= */
.promos-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.promo-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.promo-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 24px 50px -20px rgba(0,0,0,.6); }
.promo-card::before {
  content: ""; position: absolute; inset: -60% -30% auto -30%; height: 220px;
  background: radial-gradient(closest-side, rgba(255,193,7,.25), transparent);
  filter: blur(40px); pointer-events: none;
}
.promo-badge {
  align-self: flex-start; background: var(--yellow); color: var(--bg); font-weight: 900;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; padding: .4rem .8rem; border-radius: 999px;
}
.promo-head { display: flex; align-items: center; gap: 1rem; }
.promo-head .ph { width: 78px; flex: none; border-radius: 14px; --ar: 1/1; }
.promo-head h3 { font-size: 1.25rem; }
.promo-card p.promo-desc { color: var(--cream-2); font-size: .9rem; }
.promo-price-row { display: flex; align-items: baseline; gap: .7rem; margin-top: .2rem; }
.promo-price { font-family: var(--display); font-size: 1.7rem; color: var(--orange); }
.promo-price-before { font-size: .95rem; color: var(--cream-3); text-decoration: line-through; }
.promo-save { font-size: .78rem; color: var(--yellow); font-weight: 800; }

/* =============================================================
   11. Why us
   ============================================================= */
.features-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.feature-card {
  padding: 1.8rem 1.5rem; border-radius: var(--radius); background: rgba(247,242,233,.03);
  border: 1px solid var(--line); text-align: left;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out), border-color .4s var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); background: rgba(247,242,233,.06); border-color: var(--line-2); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(255,122,30,.22), rgba(228,33,39,.22));
  border: 1px solid var(--line);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { color: var(--cream-3); font-size: .87rem; }

/* =============================================================
   12. Gallery
   ============================================================= */
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid .ph { --ar: 1/1; border-radius: var(--radius-sm); }
.gallery-grid .ph.span-2 { grid-column: span 2; --ar: 16/9; }
.gallery-grid .ph.span-row-2 { grid-row: span 2; --ar: 3/4; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   13. Testimonials
   ============================================================= */
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card {
  padding: 1.7rem; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.testi-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.testi-stars { color: var(--yellow); letter-spacing: .1em; margin-bottom: .8rem; font-size: .9rem; }
.testi-text { color: var(--cream-2); font-size: .93rem; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--red)); font-family: var(--display); font-size: .95rem; color: var(--white);
}
.testi-author span { font-weight: 700; font-size: .87rem; }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.3rem; text-align: left; font-weight: 800; font-size: 1.02rem;
}
.faq-q .plus { font-size: 1.4rem; color: var(--orange); transition: transform .4s var(--ease-out); flex: none; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a p { color: var(--cream-2); padding-bottom: 1.3rem; font-size: .92rem; max-width: 62ch; }

/* =============================================================
   15. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }

.form-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-field label { font-size: .8rem; font-weight: 700; color: var(--cream-2); }
.form-field input, .form-field textarea {
  background: rgba(247,242,233,.05); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; color: var(--cream); font-family: var(--sans); font-size: .93rem;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); background: rgba(247,242,233,.08); outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input.is-invalid { border-color: var(--red); background: rgba(228,33,39,.08); }
.field-error { display: none; color: var(--red); font-size: .78rem; font-weight: 700; margin-top: -.15rem; }
.field-error.is-visible { display: block; }

.coverage-unknown-box {
  margin-top: 1rem; padding: 1rem; border-radius: 12px;
  background: rgba(255,193,7,.08); border: 1px solid rgba(255,193,7,.35);
}
.coverage-unknown-box p { color: var(--cream-2); font-size: .85rem; margin-bottom: .9rem; }
.coverage-unknown-box .didi-hint {
  font-size: .85rem; color: var(--cream);
  background: rgba(255,255,255,.05); border-radius: 8px;
  padding: .6rem .8rem; margin-bottom: .9rem;
}
.coverage-unknown-box .didi-hint strong { color: var(--yellow, #ffc107); }
.coverage-unknown-box .coverage-reason {
  font-size: .82rem; color: var(--yellow, #ffc107);
  padding-left: .7rem; border-left: 2px solid rgba(255,193,7,.5);
}
.coverage-unknown-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.coverage-unknown-actions .btn { flex: 1; min-width: 140px; }
.form-note { font-size: .82rem; color: var(--cream-2); margin-top: .6rem; }

.info-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.4rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding-block: .7rem; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { font-size: 1.2rem; flex: none; }
.info-row strong { display: block; font-size: .88rem; }
.info-row span { color: var(--cream-2); font-size: .87rem; }

.social-row { display: flex; gap: .7rem; margin-top: 1rem; }

.map-ph {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.map-ph::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(247,242,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,242,233,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-ph-inner { position: relative; z-index: 1; padding: 2rem; }
.map-ph-icon { font-size: 2rem; margin-bottom: .8rem; }
.map-ph-inner p { color: var(--cream-2); font-size: .9rem; max-width: 32ch; margin-inline: auto; }
.map-ph-inner .btn { margin-top: 1.2rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 4rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr .8fr .8fr 1fr; } }
.footer-brand p { color: var(--cream-3); font-size: .88rem; margin-block: 1rem 1.2rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--sans); text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; color: var(--cream-3); margin-bottom: 1rem; font-weight: 800; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col a { font-size: .9rem; color: var(--cream-2); transition: color .25s var(--ease-out); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 1.6rem; font-size: .8rem; color: var(--cream-3); }

/* =============================================================
   17. Cart drawer
   ============================================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 700; background: rgba(10,7,5,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 701; width: min(100%, 420px);
  background: var(--bg-2); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease-out);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gutter); border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 1.2rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem var(--gutter); display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--cream-3); display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.cart-empty .ic { font-size: 2.4rem; }

.cart-item { display: flex; gap: .9rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.cart-item .ph { width: 68px; flex: none; border-radius: 12px; --ar: 1/1; }
.cart-item-body { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.cart-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.cart-item-top h4 { font-size: .92rem; font-family: var(--sans); text-transform: none; font-weight: 800; }
.cart-item-remove { color: var(--cream-3); font-size: .78rem; text-decoration: underline; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: var(--display); color: var(--orange); font-size: .95rem; }
.cart-item-custom { font-size: .78rem; color: var(--cream-2); line-height: 1.4; }

.menu-card[data-cat="bebidas"] .ph-photo img { object-fit: contain; padding: 1.2rem; }
.ph-contain img { object-fit: contain; padding: .4rem; }

.upsell-row {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line);
}
.upsell-row:last-child { border-bottom: 0; }
.upsell-thumb { width: 52px; height: 52px; flex: none; border-radius: 10px; --ar: 1/1; }
.upsell-row-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.upsell-row-info strong { font-size: .92rem; }
.upsell-row-info span { font-size: .82rem; color: var(--orange); font-family: var(--display); }

.referral-banner {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.35);
  color: var(--yellow); font-weight: 800; font-size: .82rem;
  padding: .7rem .9rem; border-radius: 12px; margin-bottom: .9rem;
}

/* Barra para instalar la app */
.install-bar {
  position: fixed; left: 50%; bottom: 1rem; z-index: 120;
  transform: translate(-50%, calc(100% + 2rem));
  width: min(520px, calc(100vw - 2rem));
  display: flex; align-items: center; gap: .85rem;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 16px; padding: .85rem 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  opacity: 0; transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.install-bar.is-shown { transform: translate(-50%, 0); opacity: 1; }
.install-bar[hidden] { display: none; }
.install-icon { border-radius: 10px; flex: none; }
.install-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .12rem; }
.install-text strong { font-size: .92rem; }
.install-text span { font-size: .78rem; color: var(--cream-2); }
.install-bar .btn { flex: none; }
.install-close {
  flex: none; background: none; border: 0; cursor: pointer;
  color: var(--cream-2); font-size: 1rem; line-height: 1;
  padding: .3rem; border-radius: 6px;
}
.install-close:hover { color: var(--cream); }
@media (max-width: 400px) {
  .install-bar { gap: .6rem; padding: .75rem .8rem; }
  .install-text span { display: none; }
}

/* Pasos para instalar en iPhone */
.ios-steps { margin: 0; padding-left: 1.2rem; color: var(--cream-2); font-size: .9rem; line-height: 1.7; }
.ios-steps li { margin-bottom: .5rem; }
.ios-steps strong { color: var(--cream); }

/* Código de descuento */
.promo-form { max-width: 460px; margin-inline: auto; }
.promo-row { display: flex; gap: .6rem; }
.promo-row input {
  flex: 1; min-width: 0;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px;
  color: var(--cream); font-family: inherit; font-size: 1rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 1rem;
}
.promo-row input::placeholder { letter-spacing: normal; text-transform: none; font-weight: 500; color: var(--cream-2); opacity: .7; }
.promo-row input:focus { outline: none; border-color: var(--yellow); }
.promo-row .btn { flex: none; }
.promo-status { margin-top: .8rem; font-size: .87rem; text-align: center; }
.promo-status.is-ok { color: #7ddc8a; }
.promo-status.is-err { color: #ff8f8f; }
@media (max-width: 420px) {
  .promo-row { flex-direction: column; }
  .promo-row .btn { width: 100%; }
}

.cart-foot { padding: 1.4rem var(--gutter) 1.8rem; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total-row strong { font-family: var(--display); font-size: 1.5rem; color: var(--yellow); }

/* =============================================================
   18. Checkout dialog
   ============================================================= */
dialog#checkout-dialog, dialog#customize-dialog, dialog#upsell-dialog {
  border: 0; padding: 0; background: transparent; max-width: min(94vw, 560px); width: 100%;
  color: var(--cream);
}
dialog#checkout-dialog::backdrop, dialog#customize-dialog::backdrop, dialog#upsell-dialog::backdrop {
  background: rgba(10,7,5,.7); backdrop-filter: blur(4px);
}
.checkout-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.checkout-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.checkout-head h2 { font-size: 1.15rem; }
.checkout-steps { display: flex; gap: .4rem; padding: 1rem 1.6rem 0; }
.checkout-steps span { flex: 1; height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.checkout-steps span::after { content: ""; display: block; height: 100%; width: 0; background: var(--orange); transition: width .35s var(--ease-out); }
.checkout-steps span.is-done::after, .checkout-steps span.is-active::after { width: 100%; }
.checkout-body { padding: 1.6rem; max-height: 62vh; overflow-y: auto; }
.checkout-step { display: none; flex-direction: column; gap: 1rem; }
.checkout-step.is-active { display: flex; }

.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.choice-card {
  border: 1.5px solid var(--line); border-radius: 14px; padding: 1.1rem; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: .4rem; transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
  background-color: var(--bg-3); color: var(--cream);
}
.choice-card .ic { font-size: 1.4rem; }
.choice-card strong { font-size: .92rem; color: var(--cream); }
.choice-card span { font-size: .8rem; color: var(--cream-2); }
.choice-card.is-selected { border-color: var(--orange); background-color: rgba(255,122,30,.14); }

.checkout-summary-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: .87rem; color: var(--cream-2); }
.checkout-summary-total { display: flex; justify-content: space-between; padding-top: .8rem; border-top: 1px solid var(--line); font-family: var(--display); font-size: 1.15rem; color: var(--yellow); }
.checkout-summary-meta { display: flex; flex-direction: column; gap: .3rem; font-size: .85rem; color: var(--cream-2); margin-top: 1rem; }

.checkout-foot { display: flex; flex-wrap: wrap; gap: .8rem; padding: 1.2rem 1.6rem 1.6rem; border-top: 1px solid var(--line); }
.checkout-foot .btn { white-space: normal; line-height: 1.2; text-align: center; }
@media (max-width: 420px) {
  .checkout-foot { flex-direction: column; }
  .checkout-foot .btn { width: 100%; }
}
.checkout-foot .btn { flex: 1; }

.checkout-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: .8rem; padding: 2rem 0; }
.checkout-success.is-active { display: flex; }
.checkout-success .ic { font-size: 3rem; }

/* =============================================================
   19. Toast
   ============================================================= */
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; z-index: 800;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--yellow); color: var(--bg); font-weight: 800; font-size: .88rem;
  padding: .8rem 1.4rem; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(0,0,0,.5);
  transition: transform .35s var(--ease-bounce), opacity .35s var(--ease-out);
  display: flex; align-items: center; gap: .5rem;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* =============================================================
   20. Reveal utility
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* tilt */
[data-tilt] { transition: transform .3s var(--ease-out); transform-style: preserve-3d; will-change: transform; }

/* =============================================================
   21. Responsive tweaks
   ============================================================= */
@media (min-width: 540px) {
  .choice-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .hero-title { max-width: 15ch; }
}
@media (min-width: 960px) {
  .promos-layout { grid-template-columns: 320px 1fr !important; }
}
@media (min-width: 1280px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   22. Reduced motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-meta .dot { animation: none; }
  .marquee-track { animation-duration: 60s; }
  .splash { animation: none; opacity: 0; pointer-events: none; }
}
