:root {
  --forest-950: #173222;
  --forest-800: #24492f;
  --forest-700: #2f5e3d;
  --forest-100: #e8f0e8;
  --cream-50: #fffdf8;
  --cream-100: #fbf4e8;
  --cream-200: #f3e6d2;
  --amber-500: #e6a93a;
  --brown-900: #342319;
  --brown-700: #614b3d;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(52, 35, 25, 0.08);
  --shadow-lg: 0 30px 80px rgba(34, 66, 43, 0.18);
  --radius-md: 18px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100vw - 40px));
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown-900);
  background: var(--cream-50);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--forest-950);
  color: white;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(97, 75, 61, 0.11);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 15px; box-shadow: var(--shadow-sm); }
.brand span { display: grid; gap: 2px; }
.brand strong { color: var(--forest-800); font-size: 16px; letter-spacing: 0.08em; }
.brand small { color: var(--brown-700); font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { text-decoration: none; font-size: 14px; font-weight: 750; }
.desktop-nav a:hover { color: var(--forest-700); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(230, 169, 58, 0.7); outline-offset: 3px; }
.button-primary { background: var(--forest-800); color: white; box-shadow: 0 14px 34px rgba(36, 73, 47, 0.22); }
.button-primary:hover { background: var(--forest-950); box-shadow: 0 18px 38px rgba(36, 73, 47, 0.3); }
.button-secondary { border-color: rgba(97, 75, 61, 0.2); background: white; color: var(--brown-900); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 68px;
  background:
    radial-gradient(circle at 4% 15%, rgba(230, 169, 58, 0.13), transparent 28%),
    radial-gradient(circle at 96% 84%, rgba(36, 73, 47, 0.12), transparent 30%),
    var(--cream-50);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}
.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: 13px;
  font-weight: 800;
}
.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: #45a65a; box-shadow: 0 0 0 5px rgba(69, 166, 90, 0.13); }
.eyebrow { margin: 24px 0 10px; color: var(--forest-700); font-size: 13px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.hero h1 em { color: var(--forest-700); font-weight: inherit; }
.hero-lead { max-width: 620px; margin: 26px 0 0; color: var(--brown-700); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-facts { display: flex; gap: 34px; margin: 38px 0 0; }
.hero-facts div { display: grid; gap: 4px; }
.hero-facts dt { color: var(--forest-800); font-size: 22px; font-weight: 900; }
.hero-facts dd { margin: 0; color: var(--brown-700); font-size: 12px; font-weight: 700; }
.hero-media {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -12px 14% auto -12px;
  height: 42%;
  border: 1px solid rgba(230, 169, 58, 0.38);
  border-radius: 36px;
  z-index: -1;
}
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 26px; }
.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest-800);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 28px, 720px); }
  .desktop-nav { display: none; }
  .hero { padding: 34px 0 50px; }
  .hero-layout { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { grid-row: 1; transform: none; }
  .hero-copy { grid-row: 2; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 68px; gap: 10px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { display: none; }
  .header-cta { min-height: 42px; padding: 10px 15px; font-size: 13px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-facts { justify-content: space-between; gap: 12px; }
  .hero-media figcaption { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

[hidden] { display: none !important; }
.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 { padding: 92px 0; }
.section-heading { max-width: 680px; margin-bottom: 34px; }
.section-heading h2,
.value-copy h2,
.payment-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.024em;
}
.section-heading > p:last-child,
.value-copy > p,
.payment-card > div > p {
  margin: 14px 0 0;
  color: var(--brown-700);
  font-size: 16px;
  line-height: 1.7;
}
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.split-heading > div { max-width: 650px; }
.text-link { color: var(--forest-800); font-size: 14px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.text-link span { display: inline-block; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }
.centered-heading { margin-inline: auto; text-align: center; }

.trust-strip { border-block: 1px solid rgba(97, 75, 61, 0.11); background: var(--white); }
.trust-grid { min-height: 98px; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { display: grid; align-content: center; gap: 5px; padding: 18px 34px; border-left: 1px solid rgba(97, 75, 61, 0.11); }
.trust-grid div:last-child { border-right: 1px solid rgba(97, 75, 61, 0.11); }
.trust-grid strong { color: var(--forest-800); font-size: 14px; }
.trust-grid span { color: var(--brown-700); font-size: 12px; line-height: 1.45; }

.story-section { overflow: hidden; background: var(--white); }
.story-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(52px, 7vw, 96px); }
.story-visual { min-width: 0; }
.brand-poster { width: min(330px, 68%); aspect-ratio: 1; margin: 0 auto -36px 0; padding: 12px; border: 1px solid rgba(97, 75, 61, 0.12); border-radius: 28px; background: white; box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
.brand-poster img { width: 100%; height: 100%; object-fit: contain; border-radius: 20px; }
.drink-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-left: 72px; }
.drink-collage figure { position: relative; min-width: 0; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border: 6px solid white; border-radius: 22px; background: var(--cream-100); box-shadow: var(--shadow-sm); }
.drink-collage figure:nth-child(2) { transform: translateY(-18px); }
.drink-collage img { width: 100%; height: 100%; object-fit: cover; }
.drink-collage figcaption { position: absolute; inset: auto 8px 8px; padding: 6px 8px; border-radius: 9px; background: rgba(23, 50, 34, 0.78); color: white; font-size: 9px; font-weight: 750; text-align: center; backdrop-filter: blur(6px); }
.story-copy h2, .review-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 62px); font-weight: 800; line-height: 1.08; letter-spacing: -0.024em; }
.story-copy > p:not(.eyebrow), .review-copy > p { color: var(--brown-700); font-size: 15px; line-height: 1.75; }
.story-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.story-principles div { min-height: 116px; display: grid; align-content: start; gap: 8px; padding: 16px; border-radius: 17px; background: var(--cream-100); }
.story-principles strong { color: var(--forest-800); font-family: var(--font-display); font-size: 21px; }
.story-principles span { color: var(--brown-700); font-size: 11px; line-height: 1.45; }

.section-featured { background: var(--cream-100); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(97, 75, 61, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(52, 35, 25, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(36, 73, 47, 0.25); box-shadow: 0 18px 44px rgba(52, 35, 25, 0.1); }
.product-image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-100); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.popular-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--forest-800);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.sold-out-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #8e3e32;
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.product-card.is-unavailable .product-image-wrap img { filter: grayscale(0.45); opacity: 0.72; }
.product-card.is-unavailable:hover { transform: none; }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-card-copy { flex: 1; }
.product-category { margin: 0 0 8px !important; color: var(--forest-700) !important; font-size: 11px !important; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.product-card-copy > p:last-child { display: -webkit-box; overflow: hidden; margin: 8px 0 0; color: var(--brown-700); font-size: 13px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 20px; }
.product-card-footer > div { display: grid; gap: 4px; }
.product-card-footer strong { color: var(--forest-800); font-size: 17px; }
.product-card-footer small { color: var(--brown-700); font-size: 11px; }
.add-product {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: var(--forest-800);
  color: white;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36, 73, 47, 0.22);
}
.add-product:hover { background: var(--forest-950); }
.add-product:disabled, .combo-add:disabled { background: #a9a39b; cursor: not-allowed; }
.add-product:focus-visible { outline: 3px solid rgba(230, 169, 58, 0.7); outline-offset: 3px; }

.menu-section { background: var(--cream-50); }
.menu-heading { margin-bottom: 28px; }
.data-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 73, 47, 0.08);
  color: var(--forest-800);
  font-size: 11px;
  font-weight: 750;
}
.data-status::before { width: 7px; height: 7px; border-radius: 50%; background: #d09a35; content: ""; }
.data-status[data-state="live"]::before { background: #398556; }
.data-status[data-state="fallback"] { background: rgba(142, 62, 50, 0.08); color: #7f382e; }
.data-status[data-state="fallback"]::before { background: #a85243; }
.menu-toolbar { position: sticky; top: 76px; z-index: 20; display: grid; gap: 14px; padding: 14px 0; background: rgba(255, 253, 248, 0.94); backdrop-filter: blur(16px); }
.category-tabs { display: flex; gap: 9px; overflow-x: auto; padding: 2px 2px 5px; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(97, 75, 61, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--brown-900);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.category-tabs button span { display: grid; min-width: 22px; height: 22px; place-items: center; padding-inline: 5px; border-radius: 999px; background: var(--cream-200); font-size: 10px; }
.category-tabs button[aria-selected="true"] { border-color: var(--forest-800); background: var(--forest-800); color: white; }
.category-tabs button[aria-selected="true"] span { background: rgba(255, 255, 255, 0.16); }
.search-box { min-height: 50px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid rgba(97, 75, 61, 0.16); border-radius: 16px; background: white; box-shadow: var(--shadow-sm); }
.search-box > span:not(.sr-only) { color: var(--forest-700); font-size: 25px; line-height: 1; transform: rotate(-20deg); }
.search-box input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--brown-900); font: inherit; font-size: 14px; }
.menu-result-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 30px 0 20px; }
.menu-result-head h3 { margin: 0; font-family: var(--font-display); font-size: 30px; }
.menu-result-head p { margin: 6px 0 0; color: var(--brown-700); font-size: 13px; }
.result-count { padding: 8px 11px; border-radius: 999px; background: var(--cream-200); color: var(--brown-700); font-size: 12px; font-weight: 800; }
.empty-state { padding: 64px 20px; border: 1px dashed rgba(97, 75, 61, 0.25); border-radius: 24px; text-align: center; }
.empty-state strong { font-size: 20px; }
.empty-state p { color: var(--brown-700); }

.combo-section { background: #f2e9d9; }
.combo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.combo-card { overflow: hidden; display: flex; flex-direction: column; border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }
.combo-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.combo-card-media img { width: 100%; height: 100%; object-fit: cover; }
.combo-save { position: absolute; top: 12px; right: 12px; padding: 7px 9px; border-radius: 999px; background: var(--amber-500); color: var(--brown-900); font-size: 10px; font-weight: 900; }
.combo-card-body { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.combo-card-body > span { color: var(--forest-700); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.combo-card h3 { margin: 7px 0 8px; font-size: 18px; line-height: 1.25; }
.combo-card p { flex: 1; margin: 0; color: var(--brown-700); font-size: 12px; line-height: 1.55; }
.combo-price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 14px; }
.combo-price strong { color: var(--forest-800); font-size: 22px; }
.combo-price del { color: #9b8a7d; font-size: 12px; }
.combo-add { min-height: 43px; border: 0; border-radius: 13px; background: var(--forest-800); color: white; font: inherit; font-size: 12px; font-weight: 850; cursor: pointer; }
.combo-add:hover { background: var(--forest-950); }

.value-section { background: var(--forest-950); color: white; }
.value-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(54px, 8vw, 110px); }
.value-copy .eyebrow { color: #b7d6bd; }
.value-copy > p { color: #d6e2d8; }
.value-copy .button { margin-top: 22px; background: var(--amber-500); color: var(--brown-900); box-shadow: none; }
.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-cards article { min-height: 190px; padding: 24px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 22px; background: rgba(255, 255, 255, 0.065); }
.value-cards span { color: var(--amber-500); font-size: 12px; font-weight: 900; letter-spacing: 0.09em; }
.value-cards h3 { margin: 34px 0 8px; font-size: 17px; }
.value-cards p { margin: 0; color: #c8d7cc; font-size: 13px; line-height: 1.55; }

.review-section { background: var(--white); }
.review-layout { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: clamp(54px, 8vw, 110px); }
.review-copy .button { margin-top: 18px; }
.review-prompts { display: grid; gap: 12px; }
.review-prompts article { display: grid; grid-template-columns: 46px 1fr; column-gap: 16px; padding: 20px; border: 1px solid rgba(97, 75, 61, 0.12); border-radius: 20px; background: var(--cream-100); }
.review-prompts span { grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-800); color: white; font-size: 11px; font-weight: 900; }
.review-prompts h3 { margin: 2px 0 5px; font-size: 16px; }
.review-prompts p { margin: 0; color: var(--brown-700); font-size: 12px; line-height: 1.5; }

.order-section { background: var(--cream-100); }
.order-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.order-steps li { display: flex; gap: 16px; padding: 24px; border-radius: 22px; background: white; box-shadow: var(--shadow-sm); }
.order-steps > li > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px; border-radius: 50%; background: var(--forest-100); color: var(--forest-800); font-weight: 900; }
.order-steps h3 { margin: 2px 0 7px; font-size: 17px; }
.order-steps p { margin: 0; color: var(--brown-700); font-size: 13px; line-height: 1.55; }

.payment-section { background: var(--cream-50); }
.payment-card { display: grid; grid-template-columns: 1fr 260px; align-items: center; gap: 60px; padding: 44px; border: 1px solid rgba(97, 75, 61, 0.13); border-radius: 30px; background: linear-gradient(135deg, white, var(--cream-100)); box-shadow: var(--shadow-lg); }
.payment-card > div { max-width: 670px; }
.payment-card strong { color: var(--forest-800); }
.payment-card small { display: block; margin-top: 14px; color: var(--brown-700); }
.qr-preview { padding: 12px; border: 1px solid rgba(97, 75, 61, 0.14); border-radius: 22px; background: white; }
.qr-preview { aspect-ratio: 1; }
.qr-preview img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }

.site-footer { padding: 54px 0 24px; background: #10261a; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 50px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid a, .footer-grid span { color: #bfd0c2; font-size: 13px; text-decoration: none; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { border-radius: 16px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { letter-spacing: 0.08em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #91aa97; font-size: 11px; }

.mobile-cart-bar {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 17px;
  border: 0;
  border-radius: 18px;
  background: var(--forest-800);
  color: white;
  box-shadow: 0 18px 50px rgba(23, 50, 34, 0.35);
  font: inherit;
  cursor: pointer;
}
.mobile-cart-bar > span:first-child { display: grid; gap: 2px; text-align: left; }
.mobile-cart-bar strong { font-size: 13px; }
.mobile-cart-bar small { color: #d4e3d7; font-size: 11px; }
.mobile-cart-bar > span:last-child { font-size: 13px; font-weight: 850; }
.drawer-backdrop, .modal-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(18, 26, 20, 0.54); backdrop-filter: blur(4px); }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(460px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--cream-50);
  box-shadow: -24px 0 70px rgba(23, 50, 34, 0.22);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}
.cart-drawer[aria-hidden="false"] { transform: translateX(0); visibility: visible; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid rgba(97, 75, 61, 0.12); }
.drawer-header p { margin: 0 0 3px; color: var(--forest-700); font-size: 11px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.drawer-header h2 { margin: 0; font-family: var(--font-display); font-size: 30px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(97, 75, 61, 0.16); border-radius: 50%; background: white; color: var(--brown-900); font: inherit; font-size: 24px; cursor: pointer; }
.drawer-content { min-height: 0; overflow: auto; padding: 0 22px 26px; }
.cart-items { display: grid; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(97, 75, 61, 0.11); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 14px; background: var(--cream-100); }
.cart-item-copy { min-width: 0; display: grid; gap: 4px; }
.cart-item-copy strong { overflow: hidden; font-size: 13px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-copy span { color: var(--brown-700); font-size: 11px; }
.cart-item-copy button, .clear-cart { width: fit-content; padding: 0; border: 0; background: transparent; color: #9a4235; font: inherit; font-size: 11px; font-weight: 750; cursor: pointer; }
.quantity-control { display: flex; align-items: center; gap: 7px; }
.quantity-control button { width: 30px; height: 30px; border: 1px solid rgba(97, 75, 61, 0.15); border-radius: 50%; background: white; font: inherit; cursor: pointer; }
.quantity-control strong { min-width: 15px; text-align: center; font-size: 12px; }
.cart-empty { padding: 54px 16px 28px; text-align: center; }
.cart-empty strong { font-size: 20px; }
.cart-empty p { color: var(--brown-700); font-size: 13px; }
.cart-form { display: grid; gap: 14px; margin-top: 24px; }
.cart-form label { display: grid; gap: 7px; color: var(--brown-900); font-size: 12px; font-weight: 800; }
.cart-form label > span { color: var(--brown-700); font-size: 10px; font-weight: 500; }
.cart-form input, .cart-form textarea { width: 100%; border: 1px solid rgba(97, 75, 61, 0.17); border-radius: 13px; background: white; color: var(--brown-900); font: inherit; font-size: 13px; outline: 0; }
.cart-form input { min-height: 46px; padding: 0 13px; }
.cart-form textarea { resize: vertical; padding: 12px 13px; }
.cart-form input:focus, .cart-form textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(47, 94, 61, 0.12); }
.drawer-footer { padding: 18px 22px 22px; border-top: 1px solid rgba(97, 75, 61, 0.12); background: white; }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; }
.cart-total-row span { font-size: 13px; font-weight: 750; }
.cart-total-row strong { color: var(--forest-800); font-size: 22px; }
.drawer-footer > p { margin: 7px 0 14px; color: var(--brown-700); font-size: 10px; }
.button-block { width: 100%; }
.clear-cart { display: block; margin: 12px auto 0; }
.drawer-open, .modal-open { overflow: hidden; }

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 18px;
  border-radius: 28px;
  background: var(--cream-50);
  box-shadow: 0 34px 100px rgba(23, 50, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.product-modal[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.product-modal > img { width: 100%; align-self: stretch; object-fit: cover; border-radius: 20px; background: var(--cream-100); }
.product-modal-copy { align-self: center; padding: 12px 18px 12px 0; }
.product-modal-copy h2 { margin: 0; font-family: var(--font-display); font-size: 34px; line-height: 1.08; }
.product-modal-copy > p:not(.eyebrow) { color: var(--brown-700); font-size: 13px; line-height: 1.55; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.option-list { display: grid; gap: 9px; margin: 20px 0; }
.option-button { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border: 1px solid rgba(97, 75, 61, 0.17); border-radius: 14px; background: white; color: var(--brown-900); font: inherit; cursor: pointer; }
.option-button.is-selected { border-color: var(--forest-800); background: var(--forest-100); box-shadow: inset 0 0 0 1px var(--forest-800); }
.option-button span { font-size: 13px; font-weight: 800; }
.option-button strong { color: var(--forest-800); font-size: 13px; }
.order-handoff {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 30px;
  border-radius: 28px;
  background: var(--cream-50);
  box-shadow: 0 34px 100px rgba(23, 50, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.order-handoff[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.order-handoff-close { position: sticky; top: 0; z-index: 4; float: right; margin-bottom: -42px; }
.order-ready-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-800); color: white; font-size: 25px; font-weight: 900; }
.order-handoff .eyebrow { margin-top: 18px; }
.order-handoff h2 { max-width: 540px; margin: 0; padding-right: 42px; color: var(--brown-900); font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; }
.order-handoff-intro { max-width: 600px; margin: 14px 0 20px; color: var(--brown-700); font-size: 14px; line-height: 1.65; }
.bill-image-preview { min-height: 280px; display: grid; place-items: center; overflow: hidden; padding: 14px; border: 1px solid rgba(97, 75, 61, 0.16); border-radius: 20px; background: #f3e6d2; }
.bill-image-preview > p { margin: 0; color: var(--brown-700); font-size: 13px; font-weight: 750; }
.bill-image-preview img { width: min(100%, 440px); height: auto; border-radius: 12px; box-shadow: 0 16px 42px rgba(52, 35, 25, 0.18); }
.bill-image-actions { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 10px; margin-top: 14px; }
.bill-image-actions .button:disabled { background: #b2aaa2; color: white; cursor: wait; box-shadow: none; }
.share-limit-note { margin: 10px 0 0; color: var(--brown-700); font-size: 11px; line-height: 1.5; text-align: center; }
.order-text-fallback { margin-top: 18px; border: 1px solid rgba(97, 75, 61, 0.14); border-radius: 16px; background: white; }
.order-text-fallback summary { padding: 14px 16px; color: var(--forest-800); font-size: 12px; font-weight: 850; cursor: pointer; }
.order-text-fallback[open] { padding: 0 16px 16px; }
.order-text-fallback[open] summary { margin-inline: -16px; }
.order-copy-label { display: block; margin-bottom: 8px; color: var(--forest-800); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.order-handoff textarea { width: 100%; min-height: 210px; resize: vertical; padding: 16px; border: 1px solid rgba(97, 75, 61, 0.2); border-radius: 16px; background: white; color: var(--brown-900); font: 600 13px/1.65 var(--font-sans); outline: 0; }
.order-handoff textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(47, 94, 61, 0.12); }
.copy-status { min-height: 22px; margin: 10px 0 12px; color: var(--brown-700); font-size: 12px; font-weight: 700; }
.copy-status[data-state="success"] { color: #2f6f43; }
.copy-status[data-state="manual"] { color: #9a4235; }
.cross-device-note { margin: 0 0 14px; padding: 12px 14px; border-left: 4px solid var(--amber-500); border-radius: 10px; background: #fff5db; color: var(--brown-700); font-size: 12px; line-height: 1.55; }
.cross-device-note kbd { padding: 2px 5px; border: 1px solid rgba(97, 75, 61, 0.22); border-radius: 5px; background: white; color: var(--brown-900); font: 700 11px var(--font-sans); box-shadow: 0 1px 0 rgba(97, 75, 61, 0.15); }
.order-handoff-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 120; max-width: calc(100vw - 28px); padding: 12px 17px; border-radius: 999px; background: var(--brown-900); color: white; box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 750; transform: translateX(-50%); }
.status-pill.is-closed { background: #f5e9df; color: #8b4936; }
.status-pill.is-closed span { background: #c16a4b; box-shadow: 0 0 0 5px rgba(193, 106, 75, 0.13); }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-layout { grid-template-columns: 1fr; }
  .story-visual { max-width: 680px; }
  .combo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-layout { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .payment-card { grid-template-columns: 1fr 220px; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-grid div, .trust-grid div:last-child { min-height: 74px; padding: 13px 6px; border: 0; border-bottom: 1px solid rgba(97, 75, 61, 0.1); }
  .trust-grid div:last-child { border-bottom: 0; }
  .brand-poster { margin-left: auto; }
  .split-heading { display: grid; align-items: start; }
  .menu-toolbar { top: 68px; }
  .order-steps { grid-template-columns: 1fr; }
  .payment-card { grid-template-columns: 1fr; padding: 28px; }
  .qr-preview { width: min(250px, 100%); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .mobile-cart-bar { right: 14px; bottom: 12px; left: 14px; min-width: 0; }
  .toast { bottom: 84px; }
}

@media (max-width: 560px) {
  .section-heading h2, .value-copy h2, .payment-card h2 { font-size: 38px; }
  .product-grid { grid-template-columns: 1fr; gap: 15px; }
  .product-card { display: grid; grid-template-columns: 124px 1fr; border-radius: 19px; }
  .product-image-wrap { min-height: 100%; aspect-ratio: auto; }
  .product-image-wrap img { height: 100%; object-fit: cover; }
  .product-card-body { padding: 14px; }
  .product-category { display: none; }
  .product-card h3 { font-size: 15px; }
  .product-card-copy > p:last-child { font-size: 11px; -webkit-line-clamp: 2; }
  .product-card-footer { margin-top: 12px; }
  .product-card-footer strong { font-size: 14px; }
  .product-card-footer small { display: none; }
  .add-product { width: 38px; height: 38px; flex-basis: 38px; }
  .popular-badge, .sold-out-badge { top: 9px; left: 9px; padding: 6px 8px; font-size: 9px; }
  .menu-result-head h3 { font-size: 25px; }
  .value-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .value-cards article { min-height: 170px; padding: 18px; }
  .value-cards h3 { margin-top: 24px; font-size: 15px; }
  .value-cards p { font-size: 11px; }
  .story-principles { grid-template-columns: 1fr; }
  .story-principles div { min-height: auto; }
  .drink-collage { margin-left: 0; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card { display: grid; grid-template-columns: 124px 1fr; }
  .combo-card-media { aspect-ratio: auto; }
  .combo-card-media img { height: 100%; }
  .combo-card-body { padding: 14px; }
  .combo-card h3 { font-size: 16px; }
  .combo-card p { font-size: 11px; }
  .combo-price { margin: 12px 0; }
  .review-prompts article { grid-template-columns: 42px 1fr; padding: 16px; }
  .review-prompts span { width: 42px; height: 42px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .product-modal { grid-template-columns: 1fr; gap: 14px; padding: 12px; }
  .product-modal > img { max-height: 260px; }
  .product-modal-copy { padding: 0 8px 8px; }
  .product-modal-copy h2 { font-size: 28px; padding-right: 42px; }
  .order-handoff { padding: 22px 16px 18px; border-radius: 22px; }
  .order-handoff-close { top: 0; }
  .order-ready-mark { width: 44px; height: 44px; }
  .order-handoff h2 { font-size: 29px; }
  .bill-image-preview { min-height: 220px; padding: 9px; }
  .bill-image-actions { grid-template-columns: 1fr; }
  .order-handoff textarea { min-height: 190px; }
  .order-handoff-actions { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item img { width: 60px; height: 60px; }
  .quantity-control { grid-column: 2; }
}
