:root {
  --green-950: #071b11;
  --green-900: #0b2b1a;
  --green-800: #124728;
  --green-700: #176036;
  --cream-50: #fffdf8;
  --cream-100: #fff7e8;
  --cream-200: #f8ead0;
  --ink-950: #18140f;
  --ink-800: #332a20;
  --ink-600: #6f6253;
  --red-600: #d9232e;
  --red-700: #b91420;
  --orange-500: #f5a524;
  --gold-300: #ffd985;
  --success-700: #146c3a;
  --success-100: #eaf8ef;
  --danger-700: #a8272f;
  --danger-100: #fff0f1;
  --info-700: #2e566e;
  --info-100: #eef7fb;
  --white: #fff;
  --line-dark: rgba(10, 35, 21, .12);
  --line-light: rgba(255, 255, 255, .14);
  --shadow-sm: 0 8px 24px rgba(7, 27, 17, .08);
  --shadow-md: 0 18px 50px rgba(7, 27, 17, .14);
  --shadow-lg: 0 30px 90px rgba(4, 18, 11, .28);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --display: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-950);
  background: var(--cream-50);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: clamp(68px, 8vw, 112px) 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--orange-500), var(--red-600));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid rgba(7, 27, 17, .08);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: box-shadow .2s, background .2s;
}
.topbar.is-scrolled { background: rgba(255, 253, 248, .97); box-shadow: 0 10px 32px rgba(7, 27, 17, .08); }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  background: var(--green-900);
  box-shadow: 0 8px 24px rgba(7, 27, 17, .16);
}
.brand strong { display: block; color: var(--green-950); font-size: 15px; letter-spacing: -.01em; }
.brand small { display: block; margin-top: 1px; color: var(--ink-600); font-size: 11px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav-links a {
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 750;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--green-900); background: rgba(18, 71, 40, .07); }
.hamb {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.hamb span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--green-900); }

.nav-cta, .btn {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s, background .18s, border-color .18s;
}
.nav-cta, .btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  box-shadow: 0 12px 28px rgba(217, 35, 46, .24);
}
.nav-cta:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(217, 35, 46, .3); }
.btn-secondary {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid rgba(11, 43, 26, .16);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: rgba(11, 43, 26, .28); background: #fff; }
.btn-whatsapp { color: var(--white); background: #168a4c; box-shadow: 0 12px 28px rgba(22, 138, 76, .22); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #127741; }
.btn:disabled, .nav-cta[aria-disabled="true"], .order-dock-next:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: none;
}
.btn.big { min-height: 56px; padding-inline: 26px; }
.btn:focus-visible, .nav-cta:focus-visible, .hamb:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(245, 165, 36, .7);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(44px, 6vw, 78px);
  background:
    radial-gradient(circle at 88% 28%, rgba(245, 165, 36, .22), transparent 30%),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .08), transparent 32%),
    linear-gradient(135deg, #071b11 0%, #0b2b1a 60%, #124728 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background: var(--cream-50);
  opacity: .04;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange-500);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: currentColor; }
.hero .eyebrow { color: var(--gold-300); }
.hero h1, .section-head h2, .order-card h2, .drinks-copy h2, .hours-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .94;
}
.hero h1 { max-width: 720px; font-size: clamp(62px, 8vw, 112px); }
.hero-copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero .btn-secondary { color: var(--white); background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); box-shadow: none; }
.hero .btn-secondary:hover { background: rgba(255, 255, 255, .14); }
.hero-steps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  font-weight: 750;
}
.hero-steps b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: var(--green-950); background: var(--gold-300); }
.hero-card { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-product-stage {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: .88;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .28), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  overflow: hidden;
}
.hero-product-stage::after {
  content: "";
  position: absolute;
  left: 15%; right: 15%; bottom: 8%;
  height: 12%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  filter: blur(22px);
}
.hero-product-image { position: absolute; inset: 2% 3% 0; width: 94%; height: 98%; object-fit: contain; z-index: 2; filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .32)); }
.hero-brand-chip {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 16px;
  color: var(--ink-950);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}
.hero-brand-chip img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.hero-brand-chip strong, .hero-brand-chip small { display: block; }
.hero-brand-chip strong { font-size: 13px; }
.hero-brand-chip small { color: var(--ink-600); font-size: 10px; }
.ticket-stub {
  position: absolute;
  z-index: 5;
  min-width: 190px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--ink-950);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}
.ticket-stub span, .ticket-stub strong { display: block; }
.ticket-stub span { color: var(--ink-600); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.ticket-stub strong { margin-top: 4px; font-size: 13px; }
.ticket-stub-one { left: -22px; bottom: 96px; }
.ticket-stub-two { right: -18px; bottom: 28px; }
.tear-divider { height: 10px; background: linear-gradient(90deg, var(--orange-500), var(--red-600)); }

.hours-section { padding-top: 58px; padding-bottom: 36px; }
.hours-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hours-copy h2 { color: var(--green-950); font-size: clamp(40px, 5vw, 68px); }
.hours-copy p { max-width: 680px; margin: 12px 0 0; color: var(--ink-600); }
.hours-panel {
  min-width: 265px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green-900);
}
.hours-panel strong, .hours-panel p { display: block; }
.hours-panel p { margin: 3px 0 18px; color: rgba(255, 255, 255, .72); }
.hours-badge { display: inline-flex; margin-bottom: 12px; padding: 7px 10px; border-radius: 999px; color: var(--green-950); background: var(--gold-300); font-size: 11px; font-weight: 900; }
.hours-card.is-closed .hours-badge { color: var(--danger-700); background: #ffd9dc; }
.hours-panel .btn { width: 100%; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.compact { max-width: 720px; }
.section-head h2 { color: var(--green-950); font-size: clamp(48px, 6vw, 78px); }
.section-head p { margin: 14px 0 0; color: var(--ink-600); font-size: 16px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(18, 71, 40, .22); box-shadow: var(--shadow-md); }
.product-image-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(145deg, #f2eadc, #fffaf1);
}
.product-image-btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.product-image-btn:hover img { transform: scale(1.035); }
.product-image-btn > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(7, 27, 17, .88);
  font-size: 11px;
  font-weight: 850;
}
.product-card > div { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-kicker { color: var(--green-700); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-price { color: var(--red-600); font-size: 13px; white-space: nowrap; }
.product-card h3 { margin: 8px 0 10px; color: var(--green-950); font-size: 26px; letter-spacing: -.04em; }
.product-card ul { flex: 1; margin: 0; padding: 0; list-style: none; color: var(--ink-600); font-size: 13px; }
.product-card li { position: relative; padding-left: 15px; margin: 5px 0; }
.product-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500); }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 20px; }
.btn-card { min-height: 46px; padding: 0 12px; border-radius: 12px; font-size: 12px; }
.btn-card.btn-whatsapp { background: var(--green-700); }

.drinks-section { background: #f5efe4; }
.drinks-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow-md);
}
.drinks-copy { padding: clamp(34px, 6vw, 68px); }
.drinks-copy h2 { font-size: clamp(50px, 6vw, 82px); }
.drinks-copy > p { max-width: 560px; color: rgba(255, 255, 255, .72); }
.drinks-list-title { display: block; margin-top: 20px; color: var(--gold-300); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.drinks-list { display: grid; gap: 8px; margin: 8px 0 18px; }
.drinks-list span { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.drinks-list b { color: var(--gold-300); }
.drinks-addon-note { display: flex; align-items: center; gap: 11px; margin: 17px 0 22px; padding: 12px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 13px; background: rgba(255, 255, 255, .07); }
.drinks-addon-note > span { padding: 5px 7px; border-radius: 7px; color: var(--green-950); background: var(--gold-300); font-size: 8px; font-weight: 950; }
.drinks-addon-note strong,
.drinks-addon-note small { display: block; }
.drinks-addon-note small { margin-top: 2px; color: rgba(255, 255, 255, .65); font-size: 9px; }
.drinks-photo { min-height: 420px; background: #e9dfcf; }
.drinks-photo img { width: 100%; height: 100%; object-fit: cover; }
.drinks-card .btn-secondary { color: var(--white); background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); box-shadow: none; }

.order-section { background: var(--cream-50); }
.order-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(18, 71, 40, .12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fff8ea);
  box-shadow: var(--shadow-sm);
}
.order-card h2 { color: var(--green-950); font-size: clamp(48px, 6vw, 78px); }
.order-copy > p { color: var(--ink-600); }
.order-guide { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.order-guide li { display: flex; align-items: center; gap: 13px; padding: 14px; border: 1px solid var(--line-dark); border-radius: 16px; background: var(--white); }
.order-guide li > span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--white); background: var(--green-800); font-weight: 900; }
.order-guide strong, .order-guide small { display: block; }
.order-guide small { margin-top: 2px; color: var(--ink-600); }
.order-actions { display: grid; gap: 12px; }

.footer { padding: 52px 0 0; color: rgba(255, 255, 255, .78); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 44px; padding-bottom: 42px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer img { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; }
.footer p { max-width: 460px; color: rgba(255, 255, 255, .62); }
.footer strong { color: var(--white); }
.footer a:hover { color: var(--gold-300); }
.developer-credit { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 12px 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12px; }
.developer-whatsapp { display: inline-flex; align-items: center; gap: 7px; color: var(--white); }
.developer-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.performance-lite .reveal { opacity: 1; transform: none; transition: none; }

/* Guided order */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 24px;
  display: grid;
  place-items: center;
}
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 18, 11, .72); backdrop-filter: blur(8px); }
.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: #f7f4ed;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 50;
  width: 44px;
  height: 44px;
  margin: 14px 14px -58px 0;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.modal-heading {
  min-height: 154px;
  padding: 30px 82px 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}
.modal-heading .eyebrow { margin-bottom: 8px; color: var(--gold-300); }
.modal-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.modal-heading p { max-width: 680px; margin: 8px 0 0; color: rgba(255, 255, 255, .68); }
.order-help-badge {
  flex: 0 0 auto;
  min-width: 220px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
}
.order-help-badge > span { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--green-950); background: var(--gold-300); font-weight: 900; }
.order-help-badge strong, .order-help-badge small { display: block; }
.order-help-badge small { color: rgba(255, 255, 255, .65); font-size: 11px; }

.order-form-stepped {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas:
    "stepper progress"
    "stepper error"
    "stepper content"
    "stepper dock";
  column-gap: 28px;
  padding: 26px 28px 28px;
}
.order-progress { grid-area: progress; padding: 0 0 18px; }
.order-progress-copy { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-600); font-size: 13px; }
.order-progress-copy strong { color: var(--green-900); }
.order-progress-track { height: 7px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: #e6e0d7; }
.order-progress-track span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange-500), var(--red-600)); transition: width .25s var(--ease); }
.order-stepper {
  grid-area: stepper;
  position: sticky;
  top: 26px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.order-step-dot {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 0;
  border-radius: 13px;
  color: var(--ink-600);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.order-step-dot > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #ece7de; font-weight: 900; }
.order-step-dot b { font-size: 13px; }
.order-step-dot.is-active { color: var(--green-900); background: #eef6f1; }
.order-step-dot.is-active > span { color: var(--white); background: var(--green-800); }
.order-step-dot.is-complete > span { color: var(--white); background: var(--success-700); }
.order-step-dot:disabled { cursor: default; opacity: .65; }
.step-error { grid-area: error; margin-bottom: 14px; padding: 13px 15px; border: 1px solid #efc5c8; border-radius: 13px; color: var(--danger-700); background: var(--danger-100); font-weight: 750; }
.order-step { grid-area: content; min-width: 0; }
.step-title-block { margin-bottom: 20px; }
.step-kicker { display: block; margin-bottom: 5px; color: var(--green-700); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.step-title-block h3 { margin: 0; color: var(--green-950); font-size: clamp(28px, 3vw, 40px); letter-spacing: -.04em; }
.step-title-block p { margin: 8px 0 0; color: var(--ink-600); }

.form-card {
  min-width: 0;
  margin: 0 0 16px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 27, 17, .05);
}
.form-card legend { padding: 0 6px; color: var(--green-950); font-weight: 900; }
.form-card legend small, .field-label small { color: var(--ink-600); font-size: 10px; font-weight: 650; }
.field-hint, .simple-hint { margin: 0 0 14px; color: var(--ink-600); font-size: 12px; }
.field-label { display: grid; gap: 7px; color: var(--ink-800); font-size: 12px; font-weight: 800; }
.field-label input, .field-label textarea, .field-label select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 43, 26, .18);
  border-radius: 13px;
  color: var(--ink-950);
  background: #fffefb;
  font-weight: 600;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field-label textarea { min-height: 100px; resize: vertical; }
.field-label input::placeholder, .field-label textarea::placeholder { color: #a09689; font-weight: 500; }
.field-label input:hover, .field-label textarea:hover { border-color: rgba(11, 43, 26, .3); }
.field-label input:focus, .field-label textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(23, 96, 54, .12); background: var(--white); }
.field-label input:disabled { color: #958c81; background: #f3f0ea; }
.field-label-large input { min-height: 56px; font-size: 16px; }

.fulfillment-options, .payment-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.choice-card, .option-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #fffefb;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, background .18s, transform .18s;
}
.choice-card:hover, .option-row:hover { transform: translateY(-1px); border-color: rgba(18, 71, 40, .28); box-shadow: var(--shadow-sm); }
.choice-card input, .option-row input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.choice-card:has(input:checked), .option-row:has(input:checked) { border-color: var(--green-700); background: #eef7f1; box-shadow: 0 0 0 3px rgba(23, 96, 54, .1); }
.choice-card > span:not(.choice-icon), .option-row > span { min-width: 0; flex: 1; }
.choice-card strong, .choice-card small, .option-row strong, .option-row small { display: block; }
.choice-card small, .option-row small { margin-top: 2px; color: var(--ink-600); font-size: 11px; font-weight: 550; }
.choice-card > b, .option-price { color: var(--green-700); font-size: 11px; white-space: nowrap; }
.choice-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #f1ece4; font-size: 18px; }
.choice-card:has(input:checked) .choice-icon { background: #dcefe3; }

.choice-card.is-unavailable {
  cursor: not-allowed;
  opacity: .68;
  background: #f4f1ec;
}
.choice-card.is-unavailable:hover {
  transform: none;
  border-color: var(--line-dark);
  box-shadow: none;
}
.choice-card.is-unavailable > b {
  color: var(--ink-600);
}
.delivery-device-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e8c97b;
  border-radius: 15px;
  color: #6d4d08;
  background: #fff7df;
}
.delivery-device-notice > span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
}
.delivery-device-notice strong,
.delivery-device-notice small { display: block; }
.delivery-device-notice small {
  margin-top: 3px;
  color: #765d25;
  line-height: 1.45;
}

.pickup-location-card, .delivery-address-card { margin-top: 16px; padding: 20px; border-radius: 18px; background: #f7f2e9; }
.pickup-location-kicker, .delivery-address-kicker { display: block; margin-bottom: 6px; color: var(--green-700); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.pickup-location-card p { margin: 4px 0; color: var(--ink-600); }
.pickup-location-card a, .delivery-map-link { display: inline-flex; margin-top: 10px; color: var(--green-700); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.delivery-simple-heading strong { display: block; color: var(--green-950); font-size: 19px; }
.delivery-simple-heading p { margin: 5px 0 16px; color: var(--ink-600); font-size: 13px; }
.cep-search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.cep-search-btn { min-width: 160px; }
.delivery-status {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #cadde7;
  border-radius: 13px;
  color: var(--info-700);
  background: var(--info-100);
  font-size: 12px;
  font-weight: 700;
}
.delivery-status.is-loading { position: relative; padding-left: 40px; }
.delivery-status.is-loading::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.delivery-status.is-success { color: var(--success-700); border-color: #b9ddc5; background: var(--success-100); }
.delivery-status.is-error { color: var(--danger-700); border-color: #efc5c8; background: var(--danger-100); }
.delivery-status.is-warning { color: #7a4b00; border-color: #efd28b; background: #fff7df; }
@keyframes spin { to { transform: rotate(360deg); } }
.cep-address-preview { margin-top: 12px; padding: 14px; border: 1px solid #c9dfd0; border-radius: 14px; background: #f0f8f2; }
.cep-address-preview span, .cep-address-preview strong, .cep-address-preview small { display: block; }
.cep-address-preview span { color: var(--success-700); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.cep-address-preview strong { margin-top: 4px; }
.cep-address-preview small { margin-top: 3px; color: var(--ink-600); }
.delivery-fields-grid { display: grid; grid-template-columns: 1.5fr .7fr; gap: 12px; margin-top: 14px; }
.delivery-confirmation-fields .delivery-street-field { grid-column: 1 / -1; }
.delivery-calculate-area { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 16px; padding: 16px; border-radius: 15px; background: var(--green-950); color: var(--white); }
.delivery-calculate-area strong, .delivery-calculate-area small { display: block; }
.delivery-calculate-area small { margin-top: 3px; color: rgba(255, 255, 255, .65); }
.delivery-calculate-btn { flex: 0 0 auto; }
.delivery-service-note { display: block; margin-top: 10px; color: var(--ink-600); }

.modal-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.modal-product-option {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 114px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: #fffefb;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.modal-product-option:hover { transform: translateY(-1px); border-color: rgba(18, 71, 40, .28); box-shadow: var(--shadow-sm); }
.modal-product-option.is-selected { border-color: var(--green-700); background: #eef7f1; box-shadow: 0 0 0 3px rgba(23, 96, 54, .1); }
.modal-product-option img { width: 92px; height: 92px; border-radius: 13px; object-fit: cover; background: #f1ece4; }
.modal-product-option-copy { min-width: 0; }
.modal-product-option-copy strong, .modal-product-option-copy small, .modal-product-option-copy b { display: block; }
.modal-product-option-copy strong { color: var(--green-950); }
.modal-product-option-copy small { margin: 4px 0 7px; color: var(--ink-600); font-size: 10px; line-height: 1.35; }
.modal-product-option-copy b { color: var(--red-600); }
.modal-product-check { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green-700); opacity: 0; transform: scale(.8); transition: opacity .18s, transform .18s; }
.modal-product-option.is-selected .modal-product-check { opacity: 1; transform: scale(1); }
.selected-product-description { margin: 12px 0 0; padding: 11px 13px; border-radius: 12px; color: var(--ink-600); background: #f5f1ea; font-size: 12px; }
.options-list, .bread-choice-list { display: grid; gap: 10px; }
.bread-choice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.optional-callout, .finish-guide, .order-confirmation-warning, .whatsapp-closed-note {
  margin-bottom: 16px;
  padding: 15px;
  border-radius: 16px;
  background: #fff8e8;
  border: 1px solid #efdfba;
}
.optional-callout { display: flex; align-items: center; gap: 12px; }
.optional-callout > span { font-size: 22px; }
.optional-callout strong, .optional-callout small { display: block; }
.optional-callout small { color: var(--ink-600); }
.extra-product-options, .drink-options { display: grid; gap: 10px; }
.order-addon-group { overflow: hidden; border: 1px solid var(--line-dark); border-radius: 15px; background: #fff; }
.order-addon-group + .order-addon-group { margin-top: 12px; }
.order-addon-group-title { padding: 11px 13px; color: var(--green-950); background: #f0f6ee; }
.order-addon-group-title strong,
.order-addon-group-title small { display: block; }
.order-addon-group-title strong { font-size: 12px; }
.order-addon-group-title small { margin-top: 2px; color: var(--ink-600); font-size: 9px; }
.fries-addon-card { margin-top: 14px; }
.fries-addon-intro { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; padding: 11px; border: 1px solid #edd99e; border-radius: 13px; background: #fff8df; }
.fries-addon-intro > span { flex: 0 0 auto; padding: 5px 7px; border-radius: 7px; color: #fff; background: #b8730b; font-size: 8px; font-weight: 950; }
.fries-addon-intro p { min-height: 0; margin: 0; color: #6c562b; font-size: 10px; line-height: 1.4; }
.extra-product-control { border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; }
.qty-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: #fffefb;
}
.qty-row + .qty-row { border-top: 1px solid var(--line-dark); }
.qty-row strong, .qty-row small { display: block; }
.qty-row small { margin-top: 2px; color: var(--ink-600); font-size: 11px; }
.qty-control { flex: 0 0 auto; display: grid; grid-template-columns: 40px 44px 40px; align-items: center; border: 1px solid var(--line-dark); border-radius: 13px; overflow: hidden; background: var(--white); }
.qty-control button { width: 40px; height: 40px; border: 0; color: var(--green-900); background: #f3efe8; font-size: 20px; font-weight: 900; cursor: pointer; }
.qty-control input { width: 44px; height: 40px; padding: 0; border: 0; text-align: center; font-weight: 900; appearance: textfield; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.extra-bread-group { padding: 14px; border-top: 1px solid var(--line-dark); background: #f7f3ec; }
.extra-bread-group > strong { display: block; margin-bottom: 10px; font-size: 12px; }
.extra-bread-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.addon-group + .addon-group { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-dark); }
.addon-group-title { margin-bottom: 10px; }
.addon-group-title strong, .addon-group-title small { display: block; }
.addon-group-title small { margin-top: 3px; color: var(--ink-600); }

.step-actions, .modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.step-actions.split, .modal-actions.split { justify-content: space-between; }
.btn-next-main { min-width: 260px; }

.order-summary-card { padding: 0; overflow: hidden; }
.summary-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; color: var(--white); background: var(--green-900); }
.summary-card-heading span, .summary-card-heading h3 { display: block; }
.summary-card-heading span { color: rgba(255, 255, 255, .64); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.summary-card-heading h3 { margin: 2px 0 0; }
.summary-edit-button { min-height: 38px; padding: 0 12px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 11px; color: var(--white); background: rgba(255, 255, 255, .08); font-weight: 800; cursor: pointer; }
.order-summary { display: grid; }
.order-summary > div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 15px 20px; border-bottom: 1px solid var(--line-dark); }
.order-summary span { color: var(--ink-600); font-size: 12px; }
.order-summary strong { text-align: right; }
.order-summary .summary-total { color: var(--white); background: var(--green-800); border-bottom: 0; }
.order-summary .summary-total span { color: rgba(255, 255, 255, .7); }
.order-summary .summary-total strong { font-size: 20px; }
.finish-guide { display: grid; grid-template-columns: 32px 1fr 32px 1fr; gap: 10px; align-items: center; }
.finish-guide-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--white); background: var(--green-800); font-weight: 900; }
.finish-guide strong, .finish-guide small { display: block; }
.finish-guide small { color: var(--ink-600); }
.order-confirmation-warning { color: var(--danger-700); background: var(--danger-100); border-color: #efc5c8; }
.whatsapp-closed-note { color: var(--info-700); background: var(--info-100); border-color: #cadde7; }
.whatsapp-closed-note a { font-weight: 900; text-decoration: underline; }
.whatsapp-button-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .18); }

.order-cart-dock {
  grid-area: dock;
  position: sticky;
  bottom: 0;
  z-index: 30;
  min-height: 76px;
  margin-top: 20px;
  padding: 12px 12px 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(11, 43, 26, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(7, 27, 17, .15);
  backdrop-filter: blur(14px);
}
.order-cart-dock span, .order-cart-dock strong { display: block; }
.order-cart-dock span { color: var(--ink-600); font-size: 10px; }
.order-cart-dock strong { color: var(--green-950); }
.order-cart-total { min-width: 110px; padding-left: 18px; border-left: 1px solid var(--line-dark); }
.order-dock-next { min-height: 50px; padding: 0 20px; border: 0; border-radius: 13px; color: var(--white); background: linear-gradient(135deg, var(--red-600), var(--red-700)); font-weight: 900; cursor: pointer; }
.order-dock-next.is-final { background: #168a4c; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-form-stepped { grid-template-columns: 190px minmax(0, 1fr); column-gap: 20px; padding-inline: 20px; }
  .fulfillment-options, .payment-options { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 760px); }
  .section-pad { padding: 66px 0; }
  .nav-cta { display: none; }
  .hamb { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: rgba(255, 253, 248, .98);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 13px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-steps { justify-content: center; }
  .hero-card { min-height: 500px; }
  .hero-product-stage { width: min(90vw, 440px); }
  .hours-card, .drinks-card, .order-card { grid-template-columns: 1fr; }
  .hours-panel { min-width: 0; }
  .drinks-photo { min-height: 360px; }
  .order-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  .order-modal { padding: 0; place-items: stretch; }
  .modal-panel { width: 100%; max-height: 100vh; height: 100vh; border: 0; border-radius: 0; }
  .modal-heading { min-height: 132px; padding: 24px 74px 22px 22px; }
  .order-help-badge { display: none; }
  .order-form-stepped {
    display: block;
    padding: 18px 18px 120px;
  }
  .order-progress { padding-bottom: 12px; }
  .order-stepper {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    padding: 8px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .order-step-dot { min-height: 54px; display: grid; grid-template-columns: 1fr; justify-items: center; gap: 3px; padding: 5px 2px; text-align: center; }
  .order-step-dot > span { width: 28px; height: 28px; border-radius: 9px; font-size: 11px; }
  .order-step-dot b { font-size: 9px; }
  .order-cart-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5100;
    min-height: 82px;
    margin: 0;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    border-radius: 20px 20px 0 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .order-cart-total { display: none; }
  .order-dock-next { min-width: 210px; }
  .step-actions { margin-bottom: 8px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 520px); }
  .nav { min-height: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { display: none; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-steps { gap: 6px; }
  .hero-steps span { flex: 1 1 30%; justify-content: center; padding-inline: 8px; font-size: 10px; }
  .hero-card { min-height: 420px; }
  .hero-product-stage { width: min(92vw, 370px); border-radius: 30px; }
  .ticket-stub { min-width: 155px; padding: 11px 12px; }
  .ticket-stub-one { left: 0; bottom: 72px; }
  .ticket-stub-two { right: 0; bottom: 10px; }
  .hours-card, .order-card { padding: 22px; border-radius: 24px; }
  .hours-copy h2, .section-head h2, .order-card h2, .drinks-copy h2 { font-size: 52px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-actions { grid-template-columns: 1fr; }
  .drinks-card { border-radius: 24px; }
  .drinks-copy { padding: 28px 22px; }
  .drinks-photo { min-height: 280px; }
  .order-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .developer-credit { flex-direction: column; gap: 6px; text-align: center; }

  .modal-heading { min-height: 116px; padding: 18px 68px 18px 16px; }
  .modal-heading h2 { font-size: 31px; }
  .modal-heading p { display: none; }
  .modal-close { top: 8px; margin: 8px 8px -52px 0; }
  .order-form-stepped { padding: 14px 12px 118px; }
  .order-progress-copy span { max-width: 56%; text-align: right; }
  .order-stepper { margin-inline: -2px; }
  .step-title-block h3 { font-size: 30px; }
  .form-card { padding: 16px; border-radius: 17px; }
  .fulfillment-options, .payment-options { gap: 9px; }
  .choice-card { min-height: 72px; }
  .cep-search-row { grid-template-columns: 1fr; }
  .cep-search-btn { width: 100%; }
  .delivery-fields-grid { grid-template-columns: 1fr; }
  .delivery-confirmation-fields .delivery-street-field { grid-column: auto; }
  .delivery-calculate-area { align-items: stretch; flex-direction: column; }
  .delivery-calculate-btn { width: 100%; }
  .modal-product-grid { grid-template-columns: 1fr; }
  .bread-choice-list, .extra-bread-options { grid-template-columns: 1fr; }
  .modal-product-option { grid-template-columns: 78px 1fr; min-height: 98px; }
  .modal-product-option img { width: 78px; height: 78px; }
  .qty-row { gap: 8px; padding-inline: 10px; }
  .qty-control { grid-template-columns: 38px 38px 38px; }
  .qty-control button { width: 38px; }
  .qty-control input { width: 38px; }
  .step-actions, .modal-actions { display: grid; grid-template-columns: 1fr; }
  .step-actions.split, .modal-actions.split { display: grid; }
  .step-actions .btn, .modal-actions .btn { width: 100%; }
  .btn-next-main { min-width: 0; }
  .order-summary > div { grid-template-columns: 1fr; gap: 5px; }
  .order-summary strong { text-align: left; }
  .finish-guide { grid-template-columns: 32px 1fr; }
  .order-cart-dock { grid-template-columns: minmax(82px, 1fr) minmax(170px, 1.45fr); }
  .order-dock-next { min-width: 0; padding-inline: 12px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   Aly Burger — responsive hardening and checkout refinements
   Version 20260715-5
   ========================================================= */
html, body {
  width: 100%;
  max-width: 100%;
}
body { overflow-x: hidden; }
@supports (overflow: clip) {
  body { overflow-x: clip; }
}
main, header, footer, section, .container, .hero-grid, .hero-copy, .hero-card,
.product-grid, .product-card, .modal-panel, .order-form-stepped, .order-step {
  min-width: 0;
  max-width: 100%;
}

/* Prevent long labels or dynamic address text from widening the viewport. */
.hero-steps span, .ticket-stub, .delivery-status, .cep-address-preview,
.choice-card, .option-row, .order-summary strong, .order-dock-next,
.field-label input, .field-label textarea {
  overflow-wrap: anywhere;
}

/* Keep all interactive targets comfortably usable with mouse or touch. */
.hamb, .modal-close, .qty-control button, .summary-edit-button,
.order-step-dot, .cep-search-btn, .delivery-calculate-btn {
  min-width: 44px;
  min-height: 44px;
}

/* More predictable desktop checkout dimensions. */
.modal-panel {
  width: min(1160px, calc(100vw - 32px));
  max-height: min(920px, calc(100dvh - 32px));
}
.order-form-stepped { max-width: 1120px; margin-inline: auto; }
.delivery-fields-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.delivery-confirmation-fields .delivery-street-field { grid-column: 1 / -1; }
.delivery-status { line-height: 1.45; }

@media (max-width: 860px) {
  .topbar { backdrop-filter: blur(12px) saturate(1.08); }
  .nav { padding-block: max(6px, env(safe-area-inset-top)); }

  .hero {
    padding-top: 34px;
    padding-bottom: 54px;
  }
  .hero-grid { gap: 34px; }
  .hero-copy { width: 100%; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 11.5vw, 78px);
    line-height: .96;
  }
  .hero-copy > p { max-width: 38rem; }
  .hero-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-steps span {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: 7px;
    white-space: nowrap;
    text-align: center;
  }

  /* On mobile/tablet the floating tickets become a clean row below the image. */
  .hero-card {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
  .hero-product-stage {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }
  .ticket-stub,
  .ticket-stub-one,
  .ticket-stub-two {
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
  }

  .order-modal { padding: 0; }
  .modal-panel {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
  }
  .modal-heading {
    position: relative;
    min-height: 124px;
    padding-top: calc(22px + env(safe-area-inset-top));
  }
  .modal-close { top: calc(8px + env(safe-area-inset-top)); }
  .order-form-stepped {
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
  }
  .order-cart-dock {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 24px); }
  .nav { min-height: 66px; gap: 10px; }
  .brand { gap: 9px; }
  .brand strong { font-size: 14px; }
  .hamb { flex: 0 0 48px; }

  .hero {
    padding-top: 28px;
    padding-bottom: 44px;
  }
  .hero-copy { text-align: left; }
  .hero-copy > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-steps { margin-top: 18px; }
  .hero-steps span {
    min-height: 42px;
    gap: 6px;
    font-size: clamp(9px, 2.55vw, 11px);
  }
  .hero-steps b { flex: 0 0 22px; }
  .hero-card { gap: 8px; }
  .hero-product-stage {
    width: 100%;
    max-width: 430px;
    border-radius: 26px;
  }
  .hero-brand-chip {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }
  .ticket-stub { padding: 11px 12px; border-radius: 14px; }
  .ticket-stub span { font-size: 9px; }
  .ticket-stub strong { font-size: 12px; line-height: 1.25; }

  /* Compact progress indicator: the full step name remains above the bar. */
  .order-progress-copy { align-items: flex-start; }
  .order-stepper {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
  }
  .order-step-dot {
    min-height: 44px;
    padding: 4px;
    display: grid;
    place-items: center;
  }
  .order-step-dot > span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 12px;
  }
  .order-step-dot b { display: none; }

  .order-form-stepped { padding-inline: 12px; }
  .step-title-block { margin-bottom: 16px; }
  .step-title-block h3 { font-size: clamp(28px, 8.5vw, 34px); line-height: 1.05; }
  .step-title-block p { font-size: 13px; line-height: 1.5; }
  .form-card { padding: 15px; }

  .cep-search-row { grid-template-columns: 1fr; }
  .cep-search-btn { width: 100%; }
  .delivery-fields-grid { grid-template-columns: 1fr; }
  .delivery-confirmation-fields .delivery-street-field { grid-column: auto; }
  .delivery-calculate-area {
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
  }
  .delivery-calculate-btn { width: 100%; }

  .modal-product-option {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 96px;
  }
  .modal-product-option img { width: 76px; height: 76px; }
  .modal-product-option-copy small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .qty-row { align-items: center; }
  .qty-row > div:first-child { min-width: 0; }
  .qty-control { grid-template-columns: 44px 42px 44px; }
  .qty-control button { width: 44px; height: 44px; }
  .qty-control input { width: 42px; height: 44px; }

  .order-cart-dock {
    grid-template-columns: minmax(76px, .8fr) minmax(0, 1.55fr);
    gap: 8px;
    min-height: 80px;
  }
  .order-cart-dock > div:first-child { min-width: 0; }
  .order-cart-dock strong { font-size: 13px; }
  .order-dock-next {
    min-width: 0;
    min-height: 54px;
    padding-inline: 10px;
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 20px); }
  .brand img { width: 42px; height: 42px; border-radius: 13px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 58px); }
  .hero-steps span { padding-inline: 4px; }
  .hero-steps b { width: 20px; height: 20px; flex-basis: 20px; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-product-stage { grid-column: 1; }
  .ticket-stub { grid-column: 1; }
  .modal-heading h2 { font-size: 28px; }
  .order-progress-copy { font-size: 12px; }
  .order-progress-copy span { max-width: 62%; }
  .form-card { padding: 14px; }
  .choice-card { padding: 11px; }
  .order-cart-dock { grid-template-columns: minmax(70px, .75fr) minmax(0, 1.6fr); }
  .order-dock-next { font-size: 11px; }
}

/* Extra-small width safeguards (320 px devices and embedded browsers). */
.hours-card > *, .drinks-card > *, .order-card > *, .footer-grid > * {
  min-width: 0;
  max-width: 100%;
}
.hero h1, .section-head h2, .hours-copy h2, .drinks-copy h2, .order-card h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}
@media (max-width: 390px) {
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hours-copy h2, .section-head h2, .order-card h2, .drinks-copy h2 {
    font-size: clamp(38px, 12vw, 48px);
  }
  .drinks-copy, .order-copy { width: 100%; }
}


/* Version 5: clearer device availability and fulfillment layout. */
[hidden] { display: none !important; }
@media (max-width: 640px) {
  .fulfillment-options { gap: 10px; }
  .choice-card-large { min-height: 82px; }
  .choice-card > b { align-self: flex-start; margin-top: 3px; }
  .delivery-device-notice { padding: 12px; }
}

/* Fallback claro para não perder pedidos quando um serviço externo falhar. */
.manual-delivery-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 0;
  background: #187a43;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(24, 122, 67, .18);
}
.manual-delivery-btn:hover { background: #126436; }
.manual-delivery-btn:focus-visible { outline: 3px solid rgba(24, 122, 67, .28); outline-offset: 3px; }

/* =========================================================
   Aly Burger — kiosk ordering experience (v8)
   ========================================================= */
.nav-cta {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.product-actions { grid-template-columns: 1fr; }
.product-actions .btn { min-height: 50px; }
.order-actions { grid-template-columns: minmax(220px, 420px); }

.kiosk-tip {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(172, 116, 17, .18);
  border-radius: 14px;
  background: #fff8df;
  color: #604914;
}
.kiosk-tip span { flex: 0 0 auto; font-size: 20px; }
.kiosk-tip p { margin: 0; font-size: 12px; line-height: 1.45; }
.kiosk-customizer-card { padding: 0; overflow: hidden; }
.kiosk-customizer-card > legend { margin-left: 18px; }
.kiosk-customizer-card > .kiosk-tip { margin: 14px 18px; }
.kiosk-item { min-width: 0; }
.kiosk-item-header {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, #07341d, #0d542e);
}
.kiosk-item-header img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  object-fit: contain;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
}
.kiosk-item-header div { min-width: 0; }
.kiosk-item-header span { display: block; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.kiosk-item-header h4 { margin: 3px 0 4px; font-size: clamp(20px, 3vw, 28px); line-height: 1; overflow-wrap: anywhere; }
.kiosk-item-header div > b { color: #ffd46a; font-size: 16px; }
.kiosk-prep-status {
  align-self: start;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.kiosk-prep-status.is-standard { color: #09371e; background: #c8f5d8; }
.kiosk-prep-status.is-customized { color: #5a3300; background: #ffe0a1; }
.kiosk-remove-item {
  position: absolute;
  right: 18px;
  bottom: 12px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 850;
  cursor: pointer;
}
.kiosk-bread-selector { padding: 15px 18px; border-bottom: 1px solid var(--line-dark); background: #fffdf7; }
.kiosk-bread-selector > span { display: block; margin-bottom: 8px; color: var(--ink-600); font-size: 11px; font-weight: 800; }
.kiosk-bread-selector > div { display: flex; flex-wrap: wrap; gap: 8px; }
.kiosk-bread-selector button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: var(--green-950);
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.kiosk-bread-selector button.is-selected { color: #fff; border-color: var(--green-800); background: var(--green-800); box-shadow: 0 8px 20px rgba(8, 66, 36, .16); }
.kiosk-component-section { padding: 16px 18px; }
.kiosk-component-section + .kiosk-component-section { border-top: 8px solid #f3f0e9; }
.kiosk-component-title { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 10px; }
.kiosk-component-title strong { color: var(--green-950); font-size: 15px; }
.kiosk-component-title small { color: var(--ink-600); font-size: 10px; text-align: right; }
.kiosk-component-list { display: grid; gap: 8px; }
.kiosk-component-row {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 9px 10px 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
  transition: border-color .18s ease, background .18s ease;
}
.kiosk-component-row.is-removed { border-color: rgba(184, 51, 42, .28); background: #fff3f1; }
.kiosk-component-row > span { min-width: 0; }
.kiosk-component-row > span strong,
.kiosk-component-row > span small { display: block; overflow-wrap: anywhere; }
.kiosk-component-row > span strong { color: var(--green-950); font-size: 13px; }
.kiosk-component-row > span small { margin-top: 2px; color: var(--ink-600); font-size: 10px; }
.kiosk-component-control {
  display: grid;
  grid-template-columns: 42px minmax(60px, auto) 42px;
  align-items: center;
  border: 1px solid rgba(8, 66, 36, .15);
  border-radius: 12px;
  overflow: hidden;
  background: #f8faf7;
}
.kiosk-component-control button {
  width: 42px;
  height: 44px;
  border: 0;
  color: #fff;
  background: var(--green-800);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}
.kiosk-component-control button:disabled { color: #9ba69e; background: #e7ebe8; cursor: not-allowed; }
.kiosk-component-control b { padding: 0 7px; color: var(--green-950); font-size: 11px; text-align: center; white-space: nowrap; }
.kiosk-paid-section { background: #fffcf4; }
.extra-product-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kiosk-add-product {
  min-width: 0;
  min-height: 94px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  color: var(--green-950);
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.kiosk-add-product img { width: 70px; height: 70px; border-radius: 13px; object-fit: contain; background: #f5f3ed; }
.kiosk-add-product span { min-width: 0; }
.kiosk-add-product span strong,
.kiosk-add-product span small { display: block; overflow-wrap: anywhere; }
.kiosk-add-product span strong { font-size: 13px; }
.kiosk-add-product span small { margin-top: 3px; color: var(--ink-600); font-size: 10px; }
.kiosk-add-product > b { grid-column: 1 / -1; min-height: 36px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--red-600); font-size: 11px; }
.extra-customizers { display: grid; gap: 14px; margin-block: 14px; }

.summary-kiosk-items { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; padding: 14px !important; background: #f6f4ee; }
.summary-kiosk-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
}
.summary-kiosk-item > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #fff !important; background: var(--green-800); font-weight: 900; }
.summary-kiosk-item div { min-width: 0; }
.summary-kiosk-item div strong,
.summary-kiosk-item div small { display: block; text-align: left; overflow-wrap: anywhere; }
.summary-kiosk-item div small { margin-top: 3px; color: var(--ink-600); font-size: 10px; }
.summary-kiosk-item .summary-removal { color: #a6342d; font-weight: 800; }
.summary-kiosk-item .summary-addition { color: #167143; font-weight: 800; }
.summary-kiosk-item .summary-standard { color: #167143; font-weight: 800; }
.summary-kiosk-item > b { color: var(--green-950); white-space: nowrap; }

@media (hover: hover) {
  .kiosk-add-product:hover { border-color: rgba(8, 66, 36, .35); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(9, 45, 27, .08); }
  .kiosk-component-control button:not(:disabled):hover { background: #126f3d; }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(36px, 10vw, 44px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .modal-close {
    position: absolute;
    top: calc(8px + env(safe-area-inset-top));
    right: 8px;
    float: none;
    margin: 0;
  }
  .modal-heading { min-height: 102px; }
  .modal-product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 86%);
    grid-template-columns: none;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 2px 2px 8px;
  }
  .modal-product-option { scroll-snap-align: center; }
  .order-form-stepped { padding-inline: 10px; }
  .kiosk-customizer-card > legend { margin-left: 12px; }
  .kiosk-customizer-card > .kiosk-tip { margin: 12px; }
  .kiosk-item-header { grid-template-columns: 68px minmax(0, 1fr); gap: 10px; padding: 12px; padding-bottom: 48px; }
  .kiosk-item-header img { width: 68px; height: 68px; border-radius: 15px; }
  .kiosk-prep-status { position: absolute; left: 12px; bottom: 11px; }
  .kiosk-remove-item { right: 12px; bottom: 9px; }
  .kiosk-bread-selector,
  .kiosk-component-section { padding: 13px 12px; }
  .kiosk-component-title { align-items: flex-start; }
  .kiosk-component-row { grid-template-columns: minmax(0, 1fr) auto; min-height: 66px; padding-left: 11px; }
  .kiosk-component-control { grid-template-columns: 40px minmax(52px, auto) 40px; }
  .kiosk-component-control button { width: 40px; height: 46px; }
  .extra-product-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .kiosk-add-product { grid-template-columns: 54px minmax(0, 1fr); min-height: 112px; align-content: center; }
  .kiosk-add-product img { width: 54px; height: 54px; }
  .summary-kiosk-item { grid-template-columns: 28px minmax(0, 1fr); }
  .summary-kiosk-item > b { grid-column: 2; }
  .order-cart-dock {
    grid-template-columns: 70px 72px minmax(0, 1fr);
    gap: 7px;
  }
  .order-cart-total {
    display: block;
    min-width: 0;
    padding-left: 8px;
  }
  .order-cart-total strong { font-size: 12px; white-space: nowrap; }
}

@media (max-width: 370px) {
  .extra-product-options { grid-template-columns: 1fr; }
  .kiosk-component-row { grid-template-columns: 1fr; }
  .kiosk-component-control { width: 100%; grid-template-columns: 46px 1fr 46px; }
  .kiosk-component-control button { width: 46px; }
}

/* =========================================================
   Aly Burger — unified sandwich selection and cart feedback (v10)
   ========================================================= */
.kiosk-item-toggle {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--green-950);
  background: #fffdf7;
  text-align: left;
  cursor: pointer;
}
.kiosk-item-toggle:hover { background: #f5faf6; }
.kiosk-item-toggle:focus-visible {
  outline: 3px solid rgba(23, 96, 54, .28);
  outline-offset: -3px;
}
.kiosk-item-toggle > span { min-width: 0; }
.kiosk-item-toggle strong,
.kiosk-item-toggle small { display: block; overflow-wrap: anywhere; }
.kiosk-item-toggle strong { font-size: 14px; }
.kiosk-item-toggle small { margin-top: 3px; color: var(--ink-600); font-size: 10px; line-height: 1.35; }
.kiosk-item-toggle > b {
  min-width: 58px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-800);
  font-size: 11px;
}
.kiosk-item-toggle > i {
  font-size: 22px;
  font-style: normal;
  transition: transform .18s ease;
}
.kiosk-item-toggle[aria-expanded="true"] > i { transform: rotate(180deg); }

.extra-add-feedback {
  margin: 12px 0 0;
  padding: 11px 12px;
  border: 1px solid #b9ddc5;
  border-radius: 12px;
  color: var(--success-700);
  background: var(--success-100);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}
.kiosk-item-body { background: #fff; }

.order-mini-cart {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border-radius: 12px;
}
.order-mini-cart-icon {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border-radius: 11px;
  color: #fff !important;
  background: var(--green-800);
  font-size: 16px !important;
}
.order-mini-cart > div { min-width: 0; }
.order-mini-cart small {
  display: block;
  margin-top: 1px;
  color: var(--success-700);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.order-mini-cart.is-updated {
  animation: order-cart-confirm .42s ease both;
}
.order-mini-cart.is-updated .order-mini-cart-icon { background: #168a4c; }
@keyframes order-cart-confirm {
  0% { transform: scale(1); }
  45% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

@media (max-width: 640px) {
  .kiosk-item-toggle {
    gap: 8px;
    padding: 11px 12px;
  }
  .kiosk-item-toggle > b { min-width: 50px; padding-inline: 8px; }
  .order-cart-dock {
    grid-template-columns: minmax(88px, .9fr) 64px minmax(116px, 1.25fr);
    gap: 5px;
    padding-inline: 9px;
  }
  .order-mini-cart { grid-template-columns: 26px minmax(0, 1fr); gap: 6px; }
  .order-mini-cart-icon { width: 26px; height: 30px; font-size: 13px !important; }
  .order-mini-cart strong { font-size: 12px; white-space: nowrap; }
  .order-mini-cart small { display: none; }
  .order-cart-total { padding-left: 6px; }
}

@media (max-width: 370px) {
  .order-cart-dock { grid-template-columns: minmax(78px, .85fr) minmax(118px, 1.35fr); }
  .order-cart-total { display: none; }
}

/* =========================================================
   Aly Burger — ofertas semanais e cardápio por categorias (v11)
   ========================================================= */
.weekly-offers-section { background: #fff8ec; }
.weekly-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.weekly-offer-card {
  overflow: hidden;
  border: 1px solid rgba(11, 43, 26, .12);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 27, 17, .08);
}
.weekly-offer-media {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff4da, #f2dfb5);
}
.weekly-offer-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(7, 27, 17, .42));
  pointer-events: none;
}
.weekly-offer-media img { width: 100%; height: 100%; object-fit: cover; }
.weekly-offer-media > span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-600);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.weekly-offer-card > div:last-child { padding: 20px; }
.weekly-offer-card small {
  display: block;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.weekly-offer-card h3 { margin: 7px 0 5px; color: var(--green-950); font-size: 23px; letter-spacing: -.035em; }
.weekly-offer-card p { min-height: 42px; margin: 0; color: var(--ink-600); font-size: 13px; }
.weekly-offer-card footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.weekly-offer-card footer > strong { color: var(--red-600); font-size: 21px; }
.weekly-offer-card .btn-card { color: #fff; background: var(--green-800); }

.complete-combos-section { color: #fff; background: var(--green-950); }
.complete-combos-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 165, 36, .17), transparent 34%),
    linear-gradient(145deg, #123d25, #071b11);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}
.complete-combos-copy .eyebrow { color: var(--gold-300); }
.complete-combos-copy h2 { margin: 10px 0 14px; font-family: var(--display); font-size: clamp(50px, 6vw, 78px); line-height: .92; letter-spacing: -.035em; text-transform: uppercase; }
.complete-combos-copy p { max-width: 630px; color: rgba(255, 255, 255, .72); }
.complete-combos-copy .btn { margin-top: 18px; }
.complete-combos-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
}
.complete-combos-list span { display: flex; justify-content: space-between; gap: 18px; padding: 15px 17px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.complete-combos-list span:last-child { border-bottom: 0; }
.complete-combos-list strong { font-size: 13px; }
.complete-combos-list strong small { display: block; margin-top: 3px; color: rgba(255, 255, 255, .62); font-size: 9px; font-weight: 600; line-height: 1.35; }
.complete-combos-list b { color: var(--gold-300); white-space: nowrap; }
.complete-combo-family { background: rgba(255, 194, 64, .08); }

.sandwich-picker-card { padding: 15px; }
.extra-product-options { display: block; }
.kiosk-catalog-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #f6f3ed;
}
.kiosk-category-rail {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 11px;
  border-right: 1px solid var(--line-dark);
  background: #eee9df;
}
.kiosk-category-rail button {
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink-600);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.kiosk-category-rail button:hover { background: rgba(255, 255, 255, .6); }
.kiosk-category-rail button.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
  background: var(--green-800);
  box-shadow: 0 10px 26px rgba(7, 27, 17, .18);
}
.kiosk-category-rail i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green-900);
  background: #fff;
  font-style: normal;
  font-weight: 950;
}
.kiosk-category-rail strong,
.kiosk-category-rail small { display: block; }
.kiosk-category-rail strong { font-size: 12px; line-height: 1.15; }
.kiosk-category-rail small { margin-top: 3px; color: inherit; font-size: 8px; line-height: 1.25; opacity: .78; }

.kiosk-category-content { min-width: 0; padding: 14px; background: #fff; }
.kiosk-category-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 2px 2px 12px; }
.kiosk-category-heading span,
.kiosk-category-heading strong { display: block; }
.kiosk-category-heading span { color: var(--ink-600); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.kiosk-category-heading strong { color: var(--green-950); font-size: 18px; }
.kiosk-catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.kiosk-catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(7, 27, 17, .06);
}
.kiosk-catalog-card.is-unavailable { background: #f4f1eb; box-shadow: none; }
.kiosk-catalog-image { position: relative; height: 140px; overflow: hidden; background: #f3ede2; }
.kiosk-catalog-image img { width: 100%; height: 100%; object-fit: cover; }
.kiosk-catalog-card.is-unavailable .kiosk-catalog-image img { filter: grayscale(.7); opacity: .58; }
.kiosk-quantity-badge,
.kiosk-combo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 9px;
  color: #fff;
  background: var(--red-600);
  font-size: 10px;
  font-weight: 950;
}
.kiosk-catalog-copy { padding: 12px; }
.kiosk-day-badge {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 999px;
  color: #745119;
  background: #fff1cb;
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kiosk-day-badge.is-today { color: #fff; background: var(--success-700); }
.kiosk-day-badge.is-everyday { color: var(--green-700); background: #e5f4ea; }
.kiosk-catalog-copy h4 { margin: 7px 0 4px; color: var(--green-950); font-size: 15px; line-height: 1.12; }
.kiosk-catalog-copy p { min-height: 34px; margin: 0; color: var(--ink-600); font-size: 9px; line-height: 1.4; }
.kiosk-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 11px; }
.kiosk-card-footer > strong { color: var(--red-600); font-size: 15px; white-space: nowrap; }
.kiosk-catalog-copy button {
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--green-800);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.kiosk-catalog-copy button:disabled { color: #746c61; background: #ded9d0; cursor: not-allowed; }
.kiosk-empty-category { padding: 28px; color: var(--ink-600); text-align: center; }
.kiosk-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
  margin: 9px 0 0;
  padding: 9px;
  border-radius: 10px;
  background: #f4f8f1;
  list-style: none;
}
.kiosk-included-list li { position: relative; padding-left: 14px; color: var(--green-800); font-size: 8px; font-weight: 800; line-height: 1.25; }
.kiosk-included-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success-700); font-weight: 950; }
.kiosk-family-card { grid-column: 1 / -1; border-color: rgba(225, 164, 44, .45); background: linear-gradient(145deg, #fffdf7, #fff7df); }
.kiosk-family-card .kiosk-catalog-image { height: 178px; }

.kiosk-quick-config {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border: 2px solid var(--green-700);
  border-radius: 14px;
  background: #f2faf4;
  box-shadow: 0 9px 24px rgba(10, 70, 38, .1);
}
.kiosk-quick-config.is-family { border-color: #d59622; background: #fff9e9; }
.kiosk-config-heading { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 9px; align-items: center; margin-bottom: 10px; }
.kiosk-config-heading > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: var(--green-800); font-size: 13px; font-weight: 950; }
.kiosk-quick-config.is-family .kiosk-config-heading > span { background: #b8730b; }
.kiosk-config-heading strong,
.kiosk-config-heading small { display: block; }
.kiosk-config-heading strong { color: var(--green-950); font-size: 12px; }
.kiosk-config-heading small { margin-top: 2px; color: var(--ink-600); font-size: 9px; line-height: 1.35; }
.kiosk-config-fields { display: grid; gap: 8px; }
.kiosk-quick-config label { display: grid; gap: 4px; color: var(--green-950); font-size: 9px; font-weight: 850; }
.kiosk-quick-config select {
  width: 100%;
  min-height: 45px;
  padding: 0 34px 0 10px;
  border: 1px solid rgba(11, 43, 26, .22);
  border-radius: 10px;
  color: var(--green-950);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.kiosk-config-actions { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7px; margin-top: 10px; }
.kiosk-config-actions button { width: 100%; min-height: 44px; }
.kiosk-config-actions button.is-secondary { color: var(--green-800); border: 1px solid rgba(11, 43, 26, .18); background: #fff; }
.kiosk-config-status { display: block; margin-top: 7px; color: var(--ink-600); font-size: 8px; text-align: center; }
.kiosk-family-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; padding: 10px; border-radius: 10px; background: #fff; }
.kiosk-family-total span,
.kiosk-family-total small { display: block; }
.kiosk-family-total span { color: var(--green-950); font-size: 9px; font-weight: 850; }
.kiosk-family-total small { margin-top: 2px; color: var(--ink-600); font-size: 7px; font-weight: 600; }
.kiosk-family-total strong { color: var(--red-600); font-size: 17px; white-space: nowrap; }

.kiosk-offer-section {
  padding: 16px;
  border-bottom: 1px solid var(--line-dark);
  background: #f3faf5;
}
.kiosk-offer-control {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.kiosk-offer-control strong,
.kiosk-offer-control small,
.kiosk-included-drink strong,
.kiosk-included-drink small { display: block; }
.kiosk-offer-control small,
.kiosk-included-drink small { margin-top: 2px; color: var(--ink-600); font-size: 9px; }
.kiosk-offer-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.kiosk-offer-pills button {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--green-900);
  background: #fff;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}
.kiosk-offer-pills button.is-selected {
  color: #fff;
  border-color: var(--green-800);
  background: var(--green-800);
}
.kiosk-static-included > b { color: var(--success-700); font-size: 11px; }
.kiosk-included-drinks { display: grid; gap: 8px; margin-top: 12px; }
.kiosk-included-drink {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .75fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: #fff;
}
.kiosk-included-drink select {
  width: 100%;
  min-height: 43px;
  padding: 0 35px 0 11px;
  border: 1px solid rgba(11, 43, 26, .18);
  border-radius: 10px;
  color: var(--green-950);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .weekly-offer-grid { grid-template-columns: 1fr; }
  .weekly-offer-card { display: grid; grid-template-columns: 180px minmax(0, 1fr); }
  .weekly-offer-media { height: 100%; min-height: 205px; }
  .complete-combos-shell { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .weekly-offer-card { grid-template-columns: 118px minmax(0, 1fr); border-radius: 20px; }
  .weekly-offer-media { min-height: 190px; }
  .weekly-offer-card > div:last-child { padding: 15px; }
  .weekly-offer-card h3 { font-size: 18px; }
  .weekly-offer-card p { min-height: 0; font-size: 11px; }
  .weekly-offer-card footer { align-items: stretch; flex-direction: column; margin-top: 12px; }
  .weekly-offer-card .btn-card { width: 100%; }
  .complete-combos-shell { padding: 23px 18px; border-radius: 25px; }
  .complete-combos-copy h2 { font-size: 49px; }

  .sandwich-picker-card { padding: 9px; }
  .kiosk-catalog-layout { grid-template-columns: 104px minmax(0, 1fr); border-radius: 15px; }
  .kiosk-category-rail { gap: 5px; padding: 7px; }
  .kiosk-category-rail button {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 7px 4px;
    text-align: center;
  }
  .kiosk-category-rail i { width: 30px; height: 30px; }
  .kiosk-category-rail strong { font-size: 10px; }
  .kiosk-category-rail small { display: none; }
  .kiosk-category-content { padding: 8px; }
  .kiosk-category-heading { display: block; padding: 2px 2px 9px; }
  .kiosk-category-heading strong { font-size: 15px; }
  .kiosk-catalog-grid { grid-template-columns: 1fr; gap: 8px; }
  .kiosk-catalog-image { height: 108px; }
  .kiosk-catalog-copy { padding: 9px; }
  .kiosk-catalog-copy h4 { font-size: 13px; }
  .kiosk-catalog-copy p { min-height: 0; font-size: 8px; }
  .kiosk-card-footer { align-items: stretch; flex-direction: column; }
  .kiosk-card-footer > strong { font-size: 14px; }
  .kiosk-catalog-copy button { width: 100%; min-height: 42px; }
  .kiosk-included-list { grid-template-columns: 1fr; }
  .kiosk-family-card .kiosk-catalog-image { height: 138px; }
  .kiosk-config-actions { grid-template-columns: 1fr; }

  .kiosk-offer-control,
  .kiosk-included-drink { grid-template-columns: 1fr; }
  .kiosk-offer-pills { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .kiosk-catalog-layout { display: block; }
  .kiosk-category-rail {
    position: sticky;
    top: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .kiosk-category-rail button { min-height: 66px; }
  .kiosk-category-rail i { width: 25px; height: 25px; font-size: 10px; }
  .kiosk-category-rail strong { font-size: 9px; }
  .kiosk-catalog-image { height: 128px; }
}
