:root {
  color-scheme: dark;
  --ink: #f8faf4;
  --muted: #b8bdb2;
  --soft: rgba(248, 250, 244, 0.72);
  --night: #080b0b;
  --panel: #101515;
  --panel-2: #171e1d;
  --line: rgba(248, 250, 244, 0.12);
  --line-strong: rgba(248, 250, 244, 0.2);
  --mint: #46e7b3;
  --mint-dark: #0c8060;
  --salmon: #ff5a4e;
  --salmon-dark: #d9382f;
  --wasabi: #d8f45f;
  --number-tone: #d8f45f;
  --rice: #f7f2e7;
  --dark-text: #101515;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --page-pad: clamp(16px, 5vw, 64px);
  --card-media-height: clamp(108px, 12vw, 150px);
  --menu-card-height: clamp(300px, 25vw, 320px);
  --bg-base: #080b0b;
  --bg-radial-a: rgba(70, 231, 179, 0.14);
  --bg-radial-b: rgba(255, 90, 78, 0.12);
  --header-bg: rgba(8, 11, 11, 0.78);
  --menu-toolbar-bg: linear-gradient(180deg, rgba(8, 11, 11, 0.98), rgba(8, 11, 11, 0.86));
  --panel-bg: rgba(16, 21, 21, 0.92);
  --panel-bg-strong: rgba(16, 21, 21, 0.96);
  --control-bg: rgba(248, 250, 244, 0.08);
  --control-bg-strong: rgba(16, 21, 21, 0.97);
  --placeholder: rgba(248, 250, 244, 0.42);
  --surface-subtle: rgba(248, 250, 244, 0.055);
  --surface-card: linear-gradient(180deg, rgba(248, 250, 244, 0.08), rgba(248, 250, 244, 0.045));
  --image-frame-bg: rgba(248, 250, 244, 0.08);
}

body[data-theme="light"] {
  color-scheme: light;
  --ink: #12231e;
  --muted: #4f625b;
  --soft: rgba(18, 35, 30, 0.74);
  --night: #f2f7f4;
  --panel: #ffffff;
  --panel-2: #f8fcfa;
  --line: rgba(16, 33, 28, 0.14);
  --line-strong: rgba(16, 33, 28, 0.24);
  --number-tone: #0f7a5d;
  --dark-text: #0b1915;
  --shadow: 0 24px 55px rgba(11, 25, 21, 0.12);
  --shadow-soft: 0 12px 30px rgba(11, 25, 21, 0.1);
  --bg-base: #f2f6f3;
  --bg-radial-a: rgba(15, 122, 93, 0.14);
  --bg-radial-b: rgba(255, 153, 111, 0.15);
  --header-bg: rgba(252, 254, 252, 0.92);
  --menu-toolbar-bg: linear-gradient(180deg, rgba(252, 254, 252, 0.98), rgba(245, 250, 247, 0.95));
  --panel-bg: rgba(255, 255, 255, 0.97);
  --panel-bg-strong: rgba(255, 255, 255, 0.99);
  --control-bg: #ffffff;
  --control-bg-strong: #ffffff;
  --placeholder: rgba(16, 33, 28, 0.46);
  --surface-subtle: rgba(255, 255, 255, 0.8);
  --surface-card: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.96));
  --image-frame-bg: #f7faf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, var(--bg-radial-a), transparent 26rem),
    radial-gradient(circle at 80% 0, var(--bg-radial-b), transparent 26rem),
    var(--bg-base);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

body.legal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(14px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(46vw, 360px);
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 850;
}

.nav-links a {
  transition: color 170ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 8px 6px 16px;
  border: 1px solid rgba(70, 231, 179, 0.36);
  border-radius: 999px;
  background: rgba(70, 231, 179, 0.12);
  color: var(--ink);
  font-weight: 950;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-actions > * {
  flex-shrink: 0;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--control-bg);
  color: var(--ink);
  font-weight: 900;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--control-bg);
  color: var(--ink);
}

.theme-icon {
  font-size: 1.02rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--control-bg-strong);
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--soft);
  font-weight: 850;
  text-align: left;
}

.language-menu button.is-active,
.language-menu button:hover,
.language-menu button:focus-visible {
  border-color: rgba(70, 231, 179, 0.5);
  background: rgba(70, 231, 179, 0.16);
  color: var(--ink);
}

.cart-toggle span:last-child {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--dark-text);
}

.floating-cart-reminder {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 46;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(70, 231, 179, 0.42);
  border-radius: 999px;
  background: rgba(8, 11, 11, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  transition: transform 170ms ease, opacity 170ms ease, border-color 170ms ease;
}

.floating-cart-reminder:hover,
.floating-cart-reminder:focus-visible {
  border-color: rgba(70, 231, 179, 0.7);
  transform: translateY(-1px);
}

.floating-cart-reminder.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-cart-icon {
  font-size: 1rem;
  line-height: 1;
}

.floating-cart-text {
  font-size: 0.86rem;
  font-weight: 850;
}

.floating-cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--dark-text);
  font-size: 0.78rem;
  font-weight: 950;
}

.floating-cart-reminder.has-items .floating-cart-count {
  background: var(--wasabi);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 78svh, 780px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 11, 0.96), rgba(8, 11, 11, 0.74) 42%, rgba(8, 11, 11, 0.28)),
    linear-gradient(0deg, var(--night), transparent 30%);
}

.hero-content {
  width: min(760px, 100%);
  align-self: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.details-section h2 {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 9vw, 8.3rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.promo-banner {
  margin-top: 18px;
  max-width: 690px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(144, 225, 193, 0.35);
  background: linear-gradient(132deg, rgba(9, 72, 53, 0.88), rgba(9, 31, 25, 0.8));
  box-shadow: 0 12px 26px rgba(2, 13, 10, 0.28);
}

.promo-banner strong {
  display: block;
  margin: 0;
  color: #f6fff9;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.promo-banner-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-banner-icon {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

.promo-banner p {
  margin: 6px 0 0;
  color: rgba(233, 255, 246, 0.94);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    opacity 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--salmon);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--salmon-dark);
}

.button.glass {
  border-color: rgba(248, 250, 244, 0.28);
  background: rgba(248, 250, 244, 0.08);
  color: var(--ink);
}

.button.whatsapp {
  background: #25d366;
  color: #07100b;
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: #1fb457;
}

.button:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.52;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 520px;
}

.hero-stats .stat-chip {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(248, 250, 244, 0.2);
  border-radius: 12px;
  background: rgba(8, 11, 11, 0.48);
  text-align: left;
}

.hero-stats strong {
  color: var(--number-tone);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-stats small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.popular-section,
.order-section,
.details-section {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.popular-section {
  padding-top: 34px;
  padding-bottom: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading.compact {
  align-items: start;
}

.section-heading h2,
.details-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.menu-summary {
  display: grid;
  gap: 3px;
  min-width: 180px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.menu-summary strong {
  color: var(--number-tone);
  font-size: 2.2rem;
  line-height: 1;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.popular-card {
  position: relative;
  display: grid;
  grid-template-rows: var(--card-media-height) minmax(0, 1fr);
  height: var(--menu-card-height);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.popular-card.has-media {
  min-height: 0;
  background: var(--surface-card);
}

.popular-card:not(.has-media)::after {
  display: none;
}

.popular-card:not(.has-media) {
  min-height: 0;
  background: linear-gradient(180deg, rgba(248, 250, 244, 0.08), rgba(248, 250, 244, 0.05));
}

.popular-card:not(.has-media) .popular-card-content {
  align-self: start;
}

.popular-card .food-media {
  position: relative;
  height: 100%;
  border-radius: 0;
  opacity: 1;
}

.popular-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 11, 0.94), rgba(8, 11, 11, 0.08) 66%);
}

.popular-card.has-media::after {
  display: none;
}

.popular-card-content {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: space-between;
  gap: 10px;
  overflow: hidden;
  padding: 16px;
}

.popular-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.15;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.popular-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--number-tone);
  font-weight: 950;
}

.order-section {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.menu-column {
  min-width: 0;
}

.menu-toolbar {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 14px 0 16px;
  background: var(--menu-toolbar-bg);
  backdrop-filter: blur(16px);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-box input,
.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 244, 0.08);
  color: var(--ink);
  outline: 0;
}

.search-box input {
  padding: 0 16px;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-form input,
.checkout-form select {
  margin-top: 7px;
  padding: 0 12px;
}

.checkout-form select option {
  color: var(--dark-text);
}

.search-box input::placeholder,
.checkout-form input::placeholder {
  color: var(--placeholder);
}

.search-box input:focus,
.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(70, 231, 179, 0.14);
}

.checkout-form.was-validated input:invalid,
.checkout-form input.has-error {
  border-color: var(--salmon);
  box-shadow: 0 0 0 3px rgba(255, 90, 78, 0.15);
}

.category-tabs-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.chip-scroll {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--control-bg);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.chip-scroll[hidden],
.chip-scroll:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
  min-width: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 244, 0.07);
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.category-tabs button.is-active,
.category-tabs button:hover,
.category-tabs button:focus-visible {
  border-color: rgba(70, 231, 179, 0.48);
  background: var(--mint);
  color: var(--dark-text);
}

.menu-sections {
  display: grid;
  gap: 34px;
}

.menu-category {
  display: grid;
  gap: 14px;
  scroll-margin-top: 170px;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.category-heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.category-heading p {
  max-width: 520px;
  margin: 5px 0 0;
  color: var(--muted);
}

.category-heading span {
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  align-items: stretch;
}

.compact-menu-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.compact-menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-subtle);
}

.compact-menu-copy h4 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.compact-menu-copy p {
  min-height: 0;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.compact-menu-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.menu-card {
  display: grid;
  grid-template-rows: var(--card-media-height) minmax(0, 1fr);
  height: var(--menu-card-height);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
}

.food-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--image-frame-bg);
}

.food-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease;
}

.menu-card:hover .food-media img,
.popular-card:hover .food-media img {
  transform: scale(1.035);
}

.fallback-art {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.fallback-art::before,
.fallback-art::after {
  display: none;
}

.fallback-art span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-subtle);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 950;
}

.menu-card-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
}

.menu-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.menu-card h4 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.menu-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.item-actions > span {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.add-button,
.quantity-stepper button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--dark-text);
  font-size: 1.3rem;
  font-weight: 950;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 3px;
  border: 1px solid rgba(70, 231, 179, 0.34);
  border-radius: 999px;
  background: rgba(70, 231, 179, 0.1);
}

.quantity-stepper button {
  width: 36px;
  height: 36px;
  background: rgba(248, 250, 244, 0.12);
  color: var(--ink);
  font-size: 1.08rem;
}

.quantity-stepper span {
  min-width: 22px;
  text-align: center;
  font-weight: 950;
}

.sold-out-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 90, 78, 0.42);
  border-radius: 999px;
  background: rgba(255, 90, 78, 0.16);
  color: #ffd7d4;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  width: min(440px, 100svw);
  max-height: none;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-bg-strong);
  backdrop-filter: blur(12px);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 250, 244, 0.08);
  color: var(--ink);
  font-weight: 950;
}

.close-cart {
  display: inline-grid;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 16px 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.18;
}

.cart-line p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.empty-cart {
  margin: 0;
  padding: 18px;
  color: var(--muted);
}

.checkout-form {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.checkout-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-subtle);
}

.checkout-card h3 {
  margin: 0;
  font-size: 1rem;
}

.checkout-form label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.segmented,
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented label,
.payment-methods label {
  flex: 1 1 auto;
}

.segmented label.is-disabled,
.payment-methods label.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.segmented input,
.payment-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.segmented span,
.payment-methods span {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 244, 0.07);
  color: var(--muted);
  font-weight: 950;
  text-align: center;
}

.segmented input:checked + span,
.payment-methods input:checked + span {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--dark-text);
}

.card-fields {
  display: grid;
  gap: 12px;
}

.card-fields.is-hidden,
.scheduled-at-field.is-hidden,
.delivery-fields.is-hidden,
.minimum-row.is-hidden,
.voucher-total-row.is-hidden {
  display: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
}

.totals {
  display: grid;
  gap: 8px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.totals strong {
  color: var(--number-tone);
}

.minimum-row strong {
  color: var(--number-tone);
}

.totals .grand-total {
  align-items: center;
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 950;
}

.checkout-button {
  width: 100%;
}

.checkout-actions {
  display: grid;
  gap: 10px;
}

.cancel-order-button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: -5px 0 0;
  color: var(--wasabi);
  font-size: 0.88rem;
  font-weight: 850;
}

.delivery-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

.scooter {
  display: inline-block;
  font-size: 1.3rem;
  animation: scooter-run 1.4s ease-in-out infinite;
}

@keyframes scooter-run {
  0%,
  100% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(3px);
  }
}

.payment-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.payment-card-note {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 10px;
  color: var(--ink);
  font-weight: 760;
}

.payment-shop-intro {
  margin-top: 2px;
}

.payment-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.payment-option-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 11px 0 9px;
  border: 1px solid rgba(123, 212, 112, 0.28);
  border-radius: 999px;
  background: rgba(248, 250, 244, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.payment-option-chip.is-selected {
  border-color: rgba(123, 212, 112, 0.54);
  background: rgba(123, 212, 112, 0.17);
  box-shadow: inset 0 0 0 1px rgba(123, 212, 112, 0.2);
}

.payment-option-chip.is-selected::after {
  content: "✓";
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 999px;
  background: rgba(123, 212, 112, 0.9);
  color: #142018;
  font-size: 0.62rem;
  font-weight: 900;
}

.payment-option-icon {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 13px;
  place-items: center;
  border-radius: 3px;
  border: 1px solid rgba(248, 250, 244, 0.56);
  background: rgba(8, 12, 11, 0.42);
}

.payment-option-icon-cash {
  border-color: rgba(123, 212, 112, 0.5);
  background: linear-gradient(135deg, rgba(30, 131, 95, 0.72), rgba(23, 83, 64, 0.78));
}

.payment-option-icon-cash span {
  font-size: 0.62rem;
  font-weight: 900;
  color: #ecfff4;
}

.payment-option-icon-card {
  border-color: rgba(139, 183, 255, 0.62);
  background: linear-gradient(135deg, rgba(35, 71, 150, 0.82), rgba(31, 106, 183, 0.82));
}

.payment-option-icon-card span {
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.82);
}

.payment-card-types-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 244, 0.08);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-card-logos {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 244, 0.11);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.card-logo-giro {
  color: #8bb7ff;
  border-color: rgba(139, 183, 255, 0.45);
  background: rgba(24, 62, 132, 0.22);
}

.card-logo-visa {
  color: #173c96;
  border-color: rgba(255, 255, 255, 0.74);
  background: #f8fbff;
}

.card-logo-amex {
  color: #f5fbff;
  border-color: rgba(125, 222, 255, 0.52);
  background: linear-gradient(135deg, #1a8fbd, #0f4c75);
}

.card-logo-mastercard {
  gap: 6px;
  color: #17212f;
  border-color: rgba(255, 255, 255, 0.74);
  background: #ffffff;
}

.mc-circles {
  position: relative;
  width: 17px;
  height: 11px;
}

.mc-circles span {
  position: absolute;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mc-circles span:first-child {
  left: 0;
  background: #e44f3e;
}

.mc-circles span:last-child {
  right: 0;
  background: #f29a2e;
}

.card-logo-maestro {
  color: #ffffff;
  border-color: rgba(96, 150, 255, 0.52);
  background: linear-gradient(135deg, #1f5bbd, #48a5ef);
}

body[data-theme="light"] .card-logo {
  border-color: rgba(16, 33, 28, 0.18);
  background: #ffffff;
  color: #132b23;
}

body[data-theme="light"] .card-logo-giro {
  color: #1954c9;
  border-color: rgba(31, 91, 189, 0.38);
  background: #eef4ff;
}

body[data-theme="light"] .card-logo-visa,
body[data-theme="light"] .card-logo-mastercard {
  border-color: rgba(16, 33, 28, 0.18);
}

body[data-theme="light"] .card-logo-amex {
  color: #ffffff;
  border-color: rgba(26, 143, 189, 0.36);
  background: linear-gradient(135deg, #29a8d8, #166992);
}

body[data-theme="light"] .payment-option-chip {
  border-color: rgba(15, 122, 93, 0.22);
  background: #ffffff;
  color: #16322a;
}

body[data-theme="light"] .payment-option-chip.is-selected {
  border-color: rgba(15, 122, 93, 0.36);
  background: rgba(15, 122, 93, 0.12);
  color: #16322a;
}

body[data-theme="light"] .payment-option-chip.is-selected::after {
  background: rgba(15, 122, 93, 0.9);
  color: #ffffff;
}

body[data-theme="light"] .payment-card-types-label {
  border-color: rgba(16, 33, 28, 0.18);
  background: #ffffff;
  color: #3a554a;
}

.voucher-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.scheduled-at-field {
  display: grid;
  gap: 6px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.schedule-subcard {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(248, 250, 244, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.schedule-subcard span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.schedule-subcard:focus-within {
  border-color: rgba(123, 212, 112, 0.6);
  box-shadow: 0 0 0 3px rgba(123, 212, 112, 0.16);
  transform: translateY(-1px);
}

.schedule-subcard input {
  min-height: 42px;
}

.voucher-button {
  min-height: 44px;
  padding: 10px 14px;
}

.voucher-status {
  min-height: 18px;
  margin: 0;
  color: var(--number-tone);
  font-size: 0.83rem;
  font-weight: 820;
}

.voucher-status.is-error {
  color: #ff897f;
}

.voucher-total-row strong {
  color: var(--number-tone);
}

.details-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 280px), 420px);
  gap: 24px;
  align-items: start;
  padding-top: clamp(42px, 7vw, 74px);
  padding-bottom: clamp(42px, 7vw, 74px);
  border-top: 1px solid var(--line);
  background: var(--rice);
  color: var(--dark-text);
}

.details-section p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(16, 21, 21, 0.72);
}

.location-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.maps-button {
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
}

.details-section p.pickup-note {
  margin: 0;
  color: rgba(16, 21, 21, 0.66);
}

.details-section .eyebrow {
  color: var(--mint-dark);
}

.hours-card {
  padding: 18px;
  border: 1px solid rgba(16, 21, 21, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 21, 21, 0.08);
}

.hours-card h3 {
  margin: 0 0 12px;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hours-card dt {
  color: rgba(16, 21, 21, 0.62);
  font-weight: 850;
}

.hours-card dd {
  margin: 0;
  font-weight: 950;
}

.hours-status {
  margin: 14px 0 0;
  color: var(--number-tone);
  font-weight: 850;
}

.hours-status.is-closed {
  color: #ff897f;
}

.about-section {
  padding: clamp(42px, 7vw, 74px) clamp(16px, 5vw, 64px) clamp(60px, 9vw, 96px);
  border-top: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.about-copy p {
  margin: 0;
  color: var(--soft);
}

.legal-section {
  padding: clamp(42px, 7vw, 74px) clamp(16px, 5vw, 64px) clamp(56px, 8vw, 84px);
  border-top: 1px solid var(--line);
}

.allergens-section {
  padding: clamp(36px, 6vw, 62px) clamp(16px, 5vw, 64px) clamp(62px, 9vw, 102px);
  border-top: 1px solid var(--line);
}

.allergens-copy {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.allergens-copy p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.legal-heading h2 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-button {
  min-width: 220px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(86vh, 800px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-modal-panel .icon-button {
  position: absolute;
  top: 12px;
  right: 12px;
}

.legal-modal-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.legal-modal-content {
  margin-top: 14px;
}

.legal-modal-content p {
  margin: 10px 0 0;
  color: var(--soft);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(0, 0, 0, 0.56);
}

.confirmation {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
}

.confirmation[hidden],
.cart-backdrop[hidden] {
  display: none;
}

body[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 252, 249, 0.95), rgba(248, 252, 249, 0.76) 42%, rgba(248, 252, 249, 0.34)),
    linear-gradient(0deg, rgba(242, 247, 244, 0.98), transparent 30%);
}

body[data-theme="light"] .promo-banner {
  border-color: rgba(19, 123, 88, 0.3);
  background: linear-gradient(138deg, rgba(233, 249, 239, 0.96), rgba(219, 243, 231, 0.92));
  box-shadow: 0 10px 22px rgba(11, 72, 51, 0.12);
}

body[data-theme="light"] .promo-banner strong {
  color: #0b5a44;
}

body[data-theme="light"] .promo-banner-icon {
  filter: drop-shadow(0 1px 1px rgba(10, 61, 45, 0.14));
}

body[data-theme="light"] .promo-banner p {
  color: #285847;
}

body[data-theme="light"] .schedule-subcard {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 33, 28, 0.14);
}

body[data-theme="light"] .popular-card::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.18) 66%);
}

body[data-theme="light"] .popular-card p {
  color: rgba(16, 33, 28, 0.72);
}

body[data-theme="light"] .hero-stats .stat-chip {
  border-color: rgba(16, 33, 28, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

body[data-theme="light"] .search-box input,
body[data-theme="light"] .checkout-form input,
body[data-theme="light"] .checkout-form select,
body[data-theme="light"] .segmented span,
body[data-theme="light"] .payment-methods span {
  background: #ffffff;
}

body[data-theme="light"] .language-toggle,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .chip-scroll {
  border-color: rgba(16, 33, 28, 0.18);
  background: #ffffff;
  color: #16322a;
}

body[data-theme="light"] .language-menu {
  border-color: rgba(16, 33, 28, 0.16);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(10, 30, 24, 0.14);
}

body[data-theme="light"] .language-menu button {
  color: #3a554a;
}

body[data-theme="light"] .language-menu button.is-active,
body[data-theme="light"] .language-menu button:hover,
body[data-theme="light"] .language-menu button:focus-visible {
  border-color: rgba(15, 122, 93, 0.46);
  background: rgba(15, 122, 93, 0.14);
  color: #16322a;
}

body[data-theme="light"] .floating-cart-reminder {
  border-color: rgba(16, 33, 28, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: #16322a;
  box-shadow: 0 12px 28px rgba(10, 30, 24, 0.16);
}

body[data-theme="light"] .sold-out-pill {
  border-color: rgba(185, 28, 28, 0.55);
  background: rgba(220, 38, 38, 0.2);
  color: #b91c1c;
}

.confirmation-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.confirmation-panel .icon-button {
  position: absolute;
  top: 14px;
  right: 14px;
}

.confirmation-panel h2 {
  max-width: 400px;
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 7vw, 3.5rem);
  font-weight: 560;
  line-height: 1;
}

.confirmation-panel p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.confirmation-panel .button {
  margin-top: 22px;
}

@media (max-width: 1200px) {
  .site-header {
    gap: 14px;
  }
}

@media (max-width: 940px) {
  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    max-width: none;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .details-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-summary {
    justify-items: start;
    text-align: left;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .legal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 660px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: min(43vw, 172px);
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 6px;
  }

  .cart-toggle {
    min-height: 40px;
    min-width: 40px;
    padding: 0 6px;
    justify-content: center;
  }

  .cart-toggle .cart-icon {
    display: none;
  }

  .language-toggle {
    min-height: 40px;
    min-width: 54px;
    justify-content: center;
    padding: 0 8px;
    gap: 4px;
  }

  .language-menu {
    min-width: 90px;
  }

  .language-menu button {
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
  }

  .theme-toggle {
    min-height: 40px;
    min-width: 40px;
  }

  .floating-cart-reminder {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 8px;
    gap: 6px;
  }

  .floating-cart-text {
    display: none;
  }

  .hero {
    min-height: 570px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 11, 11, 0.96), rgba(8, 11, 11, 0.72)),
      linear-gradient(0deg, var(--night), transparent 34%);
  }

  .hero-content {
    align-self: end;
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .compact-menu-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .compact-menu-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

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

  .menu-toolbar {
    top: 66px;
    margin-left: calc(var(--page-pad) * -1);
    margin-right: calc(clamp(16px, 5vw, 64px) * -1);
    padding-left: var(--page-pad);
    padding-right: clamp(16px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
  }

  .category-heading {
    display: grid;
    align-items: start;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .voucher-row {
    grid-template-columns: 1fr;
  }

  .voucher-button {
    width: 100%;
  }

  .details-section {
    gap: 18px;
  }

  .hours-card {
    padding: 16px;
  }

  .hours-card dl div {
    display: grid;
    gap: 2px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand strong {
    max-width: 122px;
    font-size: 0.86rem;
  }

  .floating-cart-reminder {
    right: 10px;
    bottom: 10px;
  }
}
