:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f8f8f5;
  --muted: #aaa9a3;
  --line: rgba(255, 255, 255, 0.11);
  --brand: #ffc400;
  --brand-strong: #ffb800;
  --brand-soft: rgba(255, 196, 0, 0.12);
  --danger: #ff6b6b;
  --success: #35d07f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1220px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 196, 0, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(255, 196, 0, 0.07), transparent 25rem),
    var(--bg);
  color: var(--text);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
select,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

.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;
}

.site-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: var(--brand);
  color: #090909;
  font-weight: 1000;
  font-size: 1.45rem;
  box-shadow: 0 10px 26px rgba(255, 196, 0, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: 0.13em;
}

.brand-copy small {
  max-width: 180px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-button,
.cart-button,
.icon-button,
.category-tab,
.quantity-button,
.remove-button {
  border: 0;
  cursor: pointer;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-2);
}

.language-button {
  min-width: 38px;
  height: 37px;
  padding: 0 9px;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.language-button:hover {
  color: var(--text);
}

.language-button.is-active {
  background: var(--brand);
  color: #090909;
  box-shadow: 0 5px 16px rgba(255, 196, 0, 0.22);
}

.language-button:active {
  transform: scale(0.96);
}

.language-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.35);
  outline-offset: 2px;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--brand);
  color: #090909;
  font-weight: 900;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 999px;
  background: #090909;
  color: var(--brand);
  font-size: 0.78rem;
}

main {
  padding: 0 clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: stretch;
  gap: 24px;
  min-height: 530px;
  padding: clamp(48px, 7vw, 100px) 0 clamp(42px, 6vw, 80px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(255, 196, 0, 0.12), transparent 45%),
    linear-gradient(160deg, #171717, #0b0b0b 70%);
  box-shadow: var(--shadow);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero-copy::before {
  right: -90px;
  top: -90px;
  width: 310px;
  height: 310px;
  border: 60px solid rgba(255, 196, 0, 0.08);
}

.hero-copy::after {
  right: 80px;
  bottom: -145px;
  width: 260px;
  height: 260px;
  background: rgba(255, 196, 0, 0.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.contact-strip h2,
.drawer-header h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 24px 0 0;
  color: #c7c6c0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: #080808;
}

.button-primary:hover {
  background: #ffd13c;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 196, 0, 0.45);
  background: var(--brand-soft);
}

.button-full {
  width: 100%;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.78);
}

.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #131313;
}

.hero-panel-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--brand-soft);
  font-size: 1.3rem;
}

.hero-panel-row div {
  min-width: 0;
}

.hero-panel-row small,
.hero-panel-row strong {
  display: block;
}

.hero-panel-row small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-panel-row strong {
  font-size: 1rem;
  line-height: 1.35;
}

.menu-section {
  padding: 40px 0 clamp(70px, 8vw, 110px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.contact-strip h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 330px);
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  color: var(--muted);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-wrap input::placeholder,
textarea::placeholder,
input::placeholder {
  color: #73736f;
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin: 30px 0 26px;
  padding-bottom: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.category-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #c8c8c2;
  font-weight: 800;
  white-space: nowrap;
}

.category-tab:hover,
.category-tab.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #080808;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 196, 0, 0.09), transparent 9rem),
    var(--panel);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #b6b5af;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--brand);
  color: #070707;
  font-size: 0.95rem;
  font-weight: 1000;
}

.menu-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.product-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.card-spacer {
  flex: 1;
  min-height: 24px;
}

.sauce-options-wrap {
  min-width: 0;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.sauce-options-wrap legend {
  margin-bottom: 8px;
  color: #a9a8a2;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sauce-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sauce-option {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.sauce-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sauce-option span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0c0c;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.sauce-option:hover span {
  border-color: rgba(255, 196, 0, 0.55);
  transform: translateY(-1px);
}

.sauce-option input:checked + span {
  border-color: var(--brand);
  background: var(--brand);
  color: #070707;
}

.sauce-option input:focus-visible + span {
  outline: 3px solid rgba(255, 196, 0, 0.25);
  outline-offset: 2px;
}

.add-button {
  width: 100%;
}

.empty-state {
  margin: 30px 0 0;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(255, 196, 0, 0.14), transparent 45%),
    var(--panel);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px) 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(5px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(100%, 500px);
  height: 100dvh;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: #0d0d0d;
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.4);
  transform: translateX(105%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

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

.drawer-header {
  position: sticky;
  top: -22px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: -22px -22px 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(16px);
}

.drawer-header h2 {
  margin-top: 8px;
  font-size: 1.9rem;
}

.icon-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #1d1d1d;
  font-size: 1.65rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cart-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.cart-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-item-heading h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.cart-item-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 15px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.quantity-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #222;
  font-size: 1.1rem;
}

.quantity-value {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.remove-button {
  padding: 6px 0;
  background: transparent;
  color: #ef8585;
  font-size: 0.8rem;
  font-weight: 850;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 30px;
  text-align: center;
}

.cart-empty > span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--brand-soft);
  font-size: 2rem;
}

.cart-empty h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
}

.cart-empty p {
  max-width: 290px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-panel {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.cart-total-row strong {
  color: var(--brand);
  font-size: 1.5rem;
}

.form-group {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.form-group label,
.form-group legend {
  color: #d9d8d2;
  font-size: 0.84rem;
  font-weight: 850;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #151515;
  color: var(--text);
  outline: 0;
}

.form-group input {
  min-height: 48px;
  padding: 0 13px;
}

.form-group textarea {
  padding: 12px 13px;
  resize: vertical;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.78rem;
}

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

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: block;
  min-height: 102px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  margin-bottom: 8px;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.choice-card input:checked + span {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px var(--brand);
}

.cash-note,
.whatsapp-help {
  color: var(--muted);
  line-height: 1.55;
}

.cash-note {
  margin: 0 0 15px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 13px;
  background: var(--brand-soft);
  font-size: 0.82rem;
}

.whatsapp-help {
  margin: 10px 0 0;
  font-size: 0.74rem;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  max-width: calc(100% - 32px);
  padding: 13px 18px;
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 999px;
  background: #191919;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel-row {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 70px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .brand-copy small,
  .cart-button > span:nth-child(2) {
    display: none;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .cart-button {
    padding: 0 12px;
  }

  .hero {
    gap: 16px;
    padding-top: 26px;
  }

  .hero-copy {
    min-height: 420px;
    padding: 31px 24px;
  }

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

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hero-panel-row {
    min-height: unset;
    flex-direction: row;
    align-items: center;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .search-wrap {
    width: 100%;
  }

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

  .menu-card {
    min-height: 260px;
  }

  .contact-strip,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  footer {
    text-align: center;
  }

  .cart-drawer {
    padding: 18px;
  }

  .drawer-header {
    top: -18px;
    margin: -18px -18px 0;
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    gap: 9px;
  }

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

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .topbar-actions {
    gap: 7px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .language-button {
    min-width: 34px;
    height: 36px;
    padding: 0 6px;
    font-size: 0.72rem;
  }
}

@media (max-width: 430px) {
  .topbar-actions {
    gap: 7px;
  }

  .language-picker select {
    width: 58px;
    padding-left: 9px;
    padding-right: 24px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .hero-copy {
    min-height: 390px;
  }

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

  .choice-card span {
    min-height: unset;
  }
}

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

/* Dedicated product customisation page */
.menu-card-selectable {
  min-height: 235px;
}

.menu-card-selectable .product-open-button {
  justify-content: space-between;
  margin-top: 8px;
}

body.product-page-open {
  overflow: hidden;
}

.product-page {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 196, 0, 0.10), transparent 28rem),
    #090909;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.product-page.is-open {
  opacity: 1;
  transform: translateX(0);
}

.product-page-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(14px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(18px);
}

.product-back-button {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #151515;
  color: var(--text);
  font-weight: 850;
}

.product-back-button:hover {
  border-color: rgba(255, 196, 0, 0.48);
}

.product-back-button > span:first-child {
  color: var(--brand);
  font-size: 1.25rem;
}

.product-page-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  letter-spacing: 0.16em;
}

.brand-mark-small {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 1rem;
}

.product-cart-button {
  justify-self: end;
  min-width: 72px;
}

.product-page-shell {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 58px) clamp(14px, 4vw, 28px) 70px;
}

.product-detail-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 2%, rgba(255, 196, 0, 0.12), transparent 17rem),
    linear-gradient(155deg, #181818, #0e0e0e 70%);
  box-shadow: var(--shadow);
}

.product-detail-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.product-page-price {
  padding: 9px 14px;
  font-size: 1.05rem;
}

.product-detail-eyebrow {
  margin-bottom: 13px;
}

.product-detail-card h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-detail-description {
  margin: 18px 0 0;
  color: #c7c6c0;
  font-size: 1rem;
  line-height: 1.65;
}

#productOptionsForm {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.product-option-section {
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(5, 5, 5, 0.46);
}

.product-option-section legend {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
}

.product-option-section legend small,
.product-option-title {
  display: block;
}

.product-option-title {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-option-section legend small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.product-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
}

.product-checkbox-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid #343434;
  border-radius: 13px;
  background: #111;
  cursor: pointer;
  user-select: none;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.product-checkbox-card:hover {
  border-color: rgba(255, 196, 0, 0.55);
  transform: translateY(-1px);
}

.product-checkbox-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.product-checkbox-box {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #555;
  border-radius: 7px;
  color: transparent;
  font-size: 0.86rem;
  font-weight: 1000;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.product-checkbox-label {
  font-size: 0.9rem;
  font-weight: 850;
}

.product-checkbox-card:has(input:checked) {
  border-color: var(--brand);
  background: rgba(255, 196, 0, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.30);
}

/* Standard sauce cards: the checkbox is directly after the hidden input. */
.product-checkbox-card input:checked + .product-checkbox-box {
  border-color: var(--brand);
  background: var(--brand);
  color: #080808;
}

.product-checkbox-card input:focus-visible + .product-checkbox-box {
  outline: 3px solid rgba(255, 196, 0, 0.26);
  outline-offset: 3px;
}

/* Topping cards contain an image between the input and checkbox indicator. */
.product-topping-card input:checked ~ .product-topping-content .product-checkbox-box {
  border-color: var(--brand);
  background: var(--brand);
  color: #080808;
}

.product-topping-card input:focus-visible ~ .product-topping-content .product-checkbox-box {
  outline: 3px solid rgba(255, 196, 0, 0.26);
  outline-offset: 3px;
}


.product-topping-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-topping-card {
  position: relative;
  display: grid;
  grid-template-rows: 98px auto;
  align-items: stretch;
  min-height: 158px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(155deg, #171717, #0d0d0d);
}

.product-topping-card::after {
  content: "✓";
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #080808;
  font-size: 0.9rem;
  font-weight: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 150ms ease, transform 150ms ease;
  pointer-events: none;
}

.product-topping-card:has(input:checked)::after {
  opacity: 1;
  transform: scale(1);
}

.product-topping-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.product-topping-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.26), transparent 52%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 44%);
}

.product-topping-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-topping-content {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 56px;
  padding: 10px 11px;
}

.product-topping-card:hover .product-topping-image img {
  transform: scale(1.045);
  filter: brightness(1.05);
}

.product-topping-card:has(input:checked) {
  border-color: var(--brand);
  background: linear-gradient(155deg, #171717, #0d0d0d);
  box-shadow:
    inset 0 0 0 1px rgba(255, 196, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.24);
}

.product-topping-card:has(input:checked) .product-topping-image {
  box-shadow: inset 0 0 0 2px var(--brand);
}

.product-topping-card:has(input:checked) .product-topping-image img {
  filter: brightness(1.03) saturate(1.04);
}

.product-quantity-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #111;
}

.product-quantity-controls {
  display: grid;
  grid-template-columns: 43px 45px 43px;
  align-items: center;
  min-height: 43px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 13px;
  overflow: hidden;
}

.product-quantity-controls button {
  height: 43px;
  background: transparent;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 950;
}

.product-quantity-controls button:hover {
  background: var(--brand-soft);
}

.product-quantity-controls strong {
  display: grid;
  place-items: center;
  height: 43px;
  border-inline: 1px solid rgba(255, 196, 0, 0.28);
}

.product-add-button {
  min-height: 58px;
  font-size: 1rem;
}

/* The cart must stay above the product page. */
.drawer-backdrop {
  z-index: 100;
}

.cart-drawer {
  z-index: 110;
}

.toast {
  z-index: 130;
}

@media (max-width: 720px) {
  .menu-card-selectable {
    min-height: 215px;
  }

  .product-page-header {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
    gap: 9px;
    padding: 9px 12px;
  }

  .product-page-brand strong {
    font-size: 0.86rem;
  }

  .brand-mark-small {
    width: 34px;
    height: 34px;
  }

  .product-back-button {
    min-height: 41px;
    padding: 0 11px;
  }

  .product-cart-button {
    min-width: 61px;
    min-height: 41px;
  }

  .product-page-shell {
    padding-top: 16px;
  }

  .product-detail-card {
    padding: 21px 17px 24px;
    border-radius: 22px;
  }

  .product-detail-topline {
    margin-bottom: 23px;
  }

  .product-option-section {
    padding: 16px;
  }

  .product-topping-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-topping-card {
    grid-template-rows: 92px auto;
    min-height: 148px;
  }
}

@media (max-width: 440px) {
  .product-back-button > span:last-child {
    display: none;
  }

  .product-back-button {
    width: 43px;
    padding: 0;
    justify-content: center;
  }

  .product-page-brand {
    justify-self: start;
  }

  .product-detail-card h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .product-checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-checkbox-card {
    min-width: 0;
    padding: 9px;
  }

  .product-topping-card {
    padding: 0;
    grid-template-rows: 82px auto;
  }

  .product-topping-content {
    min-height: 52px;
    padding: 8px;
    gap: 7px;
  }

  .product-topping-card .product-checkbox-box {
    width: 23px;
    height: 23px;
  }

  .product-checkbox-label {
    overflow-wrap: anywhere;
    font-size: 0.83rem;
  }

  .product-topping-card .product-checkbox-label {
    font-size: 0.76rem;
    line-height: 1.2;
  }
}


/* Compact sauce selection: two quick choices, full sauce list on demand. */
.product-sauce-section {
  display: grid;
  gap: 15px;
}

.sauce-quick-block {
  display: grid;
  gap: 8px;
}

.sauce-subheading {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.sauce-quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 9px;
  min-height: 62px;
  padding: 10px 11px;
  border: 1px solid #343434;
  border-radius: 14px;
  background: #111;
  cursor: pointer;
  user-select: none;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.sauce-quick-card:hover {
  border-color: rgba(255, 196, 0, 0.58);
  transform: translateY(-1px);
}

.sauce-quick-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sauce-quick-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: rgba(255, 196, 0, 0.12);
  color: var(--brand);
  font-size: 1rem;
  font-weight: 1000;
}

.sauce-quick-text {
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.22;
}

.sauce-quick-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #555;
  border-radius: 7px;
  color: transparent;
  font-size: 0.75rem;
  font-weight: 1000;
}

.sauce-quick-card:has(input:checked) {
  border-color: var(--brand);
  background: rgba(255, 196, 0, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.28);
}

.sauce-quick-card:has(input:checked) .sauce-quick-icon,
.sauce-quick-card:has(input:checked) .sauce-quick-check {
  border-color: var(--brand);
  background: var(--brand);
  color: #080808;
}

.sauce-quick-card:has(input:focus-visible) {
  outline: 3px solid rgba(255, 196, 0, 0.26);
  outline-offset: 3px;
}

.sauce-details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0e0e0e;
  overflow: hidden;
}

.sauce-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 11px 13px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.sauce-details summary::-webkit-details-marker {
  display: none;
}

.sauce-details summary > span:first-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sauce-details summary strong {
  font-size: 0.88rem;
}

.sauce-details summary small {
  color: var(--muted);
  font-size: 0.7rem;
}

.sauce-details-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: right;
}

.sauce-details-chevron {
  display: inline-block;
  font-size: 1rem;
  transition: transform 160ms ease;
}

.sauce-details[open] .sauce-details-chevron {
  transform: rotate(180deg);
}

.sauce-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.sauce-regular-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
}

.sauce-regular-card {
  min-width: 0;
  min-height: 54px;
  padding: 9px 10px;
}

.sauce-regular-card .product-checkbox-label {
  min-width: 0;
  font-size: 0.84rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sauce-name-icon {
  display: inline-block;
  margin-right: 5px;
  font-size: 0.92em;
  vertical-align: 0.02em;
}

/* Mobile-friendly warning shown only when a product has no selected topping. */
.topping-warning-dialog {
  width: min(92vw, 470px);
  max-width: 470px;
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: 23px;
  background: transparent;
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.topping-warning-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
}

.topping-warning-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, #171717, #0b0b0b);
}

.topping-warning-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--brand);
  color: #090909;
  font-size: 1.25rem;
  font-weight: 1000;
}

.topping-warning-copy h2 {
  margin: 0 0 7px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.topping-warning-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.topping-warning-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 9px;
  margin-top: 5px;
}

.topping-warning-actions .button {
  min-height: 48px;
  padding: 10px 12px;
  font-size: 0.82rem;
  line-height: 1.2;
}

@media (max-width: 440px) {
  .sauce-quick-card {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 7px;
    min-height: 59px;
    padding: 9px;
  }

  .sauce-quick-icon {
    width: 28px;
    height: 28px;
  }

  .sauce-quick-text {
    font-size: 0.76rem;
  }

  .sauce-details summary {
    padding: 10px 11px;
  }

  .sauce-details-meta > span:first-child {
    display: none;
  }

  .sauce-regular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 9px;
  }

  .sauce-regular-card {
    min-height: 50px;
    gap: 7px;
    padding: 8px;
  }

  .sauce-regular-card .product-checkbox-box {
    width: 23px;
    height: 23px;
  }

  .sauce-regular-card .product-checkbox-label {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .topping-warning-dialog {
    width: calc(100vw - 22px);
    margin: auto auto 11px;
    border-radius: 22px;
  }

  .topping-warning-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 17px;
  }

  .topping-warning-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .topping-warning-actions {
    grid-template-columns: 1fr;
  }

  .topping-warning-actions .button-primary {
    order: -1;
  }
}


/* =========================================================
   Simple two-page flow: read-only menu + separate ordering
   ========================================================= */
.menu-only-page main,
.order-page-body main {
  padding-inline: clamp(14px, 4vw, 48px);
}

.simple-topbar,
.order-topbar {
  min-height: 68px;
}

.menu-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(30px, 7vw, 66px) 0 22px;
  border-bottom: 1px solid var(--line);
}

.menu-intro h1,
.order-intro h1 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 8vw, 5rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.menu-intro p,
.order-intro p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #c3c2bc;
  line-height: 1.65;
}

.map-mini-link,
.back-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  color: var(--text);
  font-weight: 850;
}

.map-mini-link:hover,
.back-menu-link:hover {
  border-color: rgba(255, 196, 0, .48);
  background: var(--brand-soft);
}

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

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(17, 17, 17, .78);
}

.quick-info-item > span {
  font-size: 1.25rem;
}

.quick-info-item small,
.quick-info-item strong {
  display: block;
}

.quick-info-item small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.quick-info-item strong {
  font-size: .9rem;
  line-height: 1.3;
}

.menu-browser {
  padding-top: 24px;
  padding-bottom: 125px;
}

.menu-tools {
  display: flex;
  justify-content: flex-end;
}

.read-only-menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.read-only-menu-card {
  min-height: 0;
  padding: 19px;
}

.read-only-menu-card h3 {
  margin-top: 18px;
}

.read-only-menu-card .product-description {
  margin-bottom: 0;
}

.order-cta-bar {
  position: fixed;
  z-index: 55;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 24px), 760px);
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 196, 0, .35);
  border-radius: 19px;
  background: rgba(17, 17, 17, .94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .48);
  backdrop-filter: blur(18px);
}

.order-cta-copy strong,
.order-cta-copy small {
  display: block;
}

.order-cta-copy strong {
  font-size: .94rem;
}

.order-cta-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
}

.order-cta-button {
  min-height: 48px;
  white-space: nowrap;
}

.simple-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 34px;
}

.order-intro {
  padding: clamp(26px, 6vw, 54px) 0 18px;
  border-bottom: 1px solid var(--line);
}

.order-intro .back-menu-link {
  margin-bottom: 28px;
}

.order-intro h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.order-menu-section {
  padding-top: 30px;
}

.compact-section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.order-page-body .menu-card-selectable {
  min-height: 225px;
}

@media (max-width: 720px) {
  .brand-copy small {
    display: none;
  }

  .simple-topbar,
  .order-topbar {
    padding-inline: 12px;
  }

  .menu-intro {
    align-items: stretch;
    flex-direction: column;
    padding-top: 28px;
  }

  .menu-intro h1,
  .order-intro h1 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .menu-intro p,
  .order-intro p {
    margin-top: 12px;
    font-size: .94rem;
  }

  .map-mini-link {
    align-self: flex-start;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .menu-tools .search-wrap,
  .compact-section-heading .search-wrap {
    width: 100%;
  }

  .read-only-menu-grid,
  .order-page-body .menu-grid {
    grid-template-columns: 1fr;
  }

  .read-only-menu-card,
  .order-page-body .menu-card-selectable {
    min-height: 0;
    padding: 17px;
  }

  .read-only-menu-card h3,
  .order-page-body .menu-card-selectable h3 {
    margin-top: 16px;
  }

  .read-only-menu-card .product-description,
  .order-page-body .menu-card-selectable .product-description {
    font-size: .88rem;
    line-height: 1.45;
  }

  .order-page-body .menu-card-selectable .card-spacer {
    min-height: 14px;
  }

  .order-page-body .product-open-button {
    min-height: 46px;
  }

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

  .simple-footer {
    display: block;
    padding-bottom: 112px;
    font-size: .82rem;
  }

  .order-page-body .simple-footer {
    padding-bottom: 34px;
  }

  .order-cta-copy {
    display: none;
  }

  .order-cta-bar {
    padding: 8px;
  }

  .order-cta-button {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
  }

  .order-intro .back-menu-link {
    margin-bottom: 24px;
  }
}

@media (max-width: 470px) {
  .order-topbar .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .order-topbar .language-button {
    min-width: 31px;
    width: 31px;
    padding: 0;
  }

  .order-topbar .cart-button {
    min-width: 56px;
    padding-inline: 10px;
  }

  .order-topbar .cart-label {
    display: none;
  }

  .quick-info-item {
    min-height: 64px;
  }
}

/* Extra compact ordering header */
.order-intro { padding-top: 24px; padding-bottom: 20px; }
.order-intro .back-menu-link { margin-bottom: 20px; }
.order-intro h1 { font-size: clamp(2rem, 9vw, 3.5rem); }
.order-intro p { max-width: 620px; margin-top: 10px; }
.order-menu-section { padding-top: 20px; }
@media (max-width: 720px) {
  .order-intro { padding-top: 18px; }
  .order-intro .back-menu-link { margin-bottom: 17px; }
  .order-intro h1 { font-size: 2.35rem; }
  .order-menu-section { padding-top: 16px; }
}


/* =========================================================
   QR landing page: menu only, no large information blocks
   ========================================================= */
.compact-menu-browser {
  padding-top: 16px;
  padding-bottom: 118px;
}

.compact-menu-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  align-items: center;
  gap: 9px;
}

.compact-menu-tools .search-wrap {
  width: 100%;
}

.map-icon-link {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  font-size: 1.12rem;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.map-icon-link:hover {
  border-color: rgba(255, 196, 0, .55);
  background: var(--brand-soft);
}

.map-icon-link:active {
  transform: scale(.96);
}

.compact-category-tabs {
  margin-top: 14px;
  margin-bottom: 18px;
}

.menu-only-page .simple-topbar {
  min-height: 62px;
}

.menu-only-page .read-only-menu-card h3 {
  margin-top: 14px;
}

@media (max-width: 720px) {
  .compact-menu-browser {
    padding-top: 11px;
  }

  .compact-menu-tools {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 7px;
  }

  .compact-menu-tools .search-wrap,
  .map-icon-link {
    min-height: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .compact-category-tabs {
    margin-top: 11px;
    margin-bottom: 15px;
  }

  .menu-only-page .read-only-menu-card {
    padding: 15px 16px;
  }

  .menu-only-page .read-only-menu-card h3 {
    margin-top: 13px;
  }
}

/* =========================================================
   Final mobile ordering refinements
   ========================================================= */
html,
body {
  overflow-x: clip;
}

body.order-page-body {
  padding-bottom: env(safe-area-inset-bottom);
}

.order-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 14px;
}

.order-intro .back-menu-link {
  margin: 0;
}

.order-intro h1 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  line-height: 1.05;
  text-align: right;
}

.order-menu-section {
  padding-top: 14px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 27px;
  margin-top: 13px;
  padding: 0 9px;
  border: 1px solid rgba(255, 107, 107, 0.42);
  border-radius: 999px;
  background: rgba(255, 107, 107, 0.1);
  color: #ffaaaa;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-card.is-unavailable {
  opacity: 0.62;
}

.menu-card.is-unavailable:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.product-open-button:disabled {
  cursor: not-allowed;
  background: #303030;
  color: #9d9d98;
  box-shadow: none;
}

.order-info-line {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.4;
}

.sauce-limit-feedback {
  margin: 0;
  padding: 0 12px 12px;
  color: #ffd86b;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-topping-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-page-shell {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

.cart-drawer {
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
}

@media (max-width: 720px) {
  .order-intro {
    padding: 13px 0 10px;
  }

  .order-intro h1 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .order-intro .back-menu-link {
    min-height: 42px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  .order-menu-section {
    padding-top: 10px;
    padding-bottom: 54px;
  }

  .order-menu-section .category-tabs {
    margin-top: 14px;
    margin-bottom: 17px;
  }

  .cart-drawer {
    padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
  }

  .drawer-header {
    top: -18px;
    margin: -18px -14px 0;
    padding: 18px 14px;
  }

  .cart-item-heading {
    gap: 9px;
  }

  .cart-item-heading > strong {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.92rem;
  }
}

@media (max-width: 470px) {
  .order-topbar {
    gap: 6px;
  }

  .order-topbar .brand-copy {
    display: none;
  }

  .order-topbar .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .order-topbar .topbar-actions {
    gap: 5px;
  }

  .order-intro {
    align-items: flex-start;
    gap: 10px;
  }

  .order-intro h1 {
    flex: 1;
    padding-top: 6px;
  }

  .cart-item-bottom {
    align-items: center;
    gap: 8px;
  }

  .quantity-controls {
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .menu-only-page .simple-topbar,
  .order-topbar {
    padding-inline: 9px;
  }

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

  .menu-only-page .brand-copy strong {
    font-size: 0.9rem;
  }

  .menu-only-page .language-button,
  .order-topbar .language-button {
    min-width: 30px;
    width: 30px;
  }

  .order-intro .back-menu-link span:last-child {
    display: none;
  }

  .order-intro .back-menu-link {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .sauce-quick-card {
    grid-template-columns: minmax(0, 1fr) 21px;
    min-height: 62px;
  }

  .sauce-quick-icon {
    display: none;
  }

  .sauce-quick-text {
    font-size: 0.74rem;
  }

  .sauce-regular-card .product-checkbox-label {
    font-size: 0.7rem;
  }
}

/* =========================================================
   Ordering workspace — intentionally different from QR menu
   ========================================================= */
.order-page-body {
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.055), transparent 210px),
    #080808;
}

.order-page-body .site-shell {
  width: min(100%, 1040px);
}

.order-page-body .order-topbar {
  border-bottom-color: rgba(255, 196, 0, 0.22);
  background: rgba(11, 11, 11, 0.94);
}

.order-page-body main {
  width: min(100%, 900px);
  margin-inline: auto;
}

.order-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  padding: 18px 0 13px;
  border-bottom: 0;
}

.order-intro-copy {
  min-width: 0;
}

.order-mode-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.order-mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.11);
}

.order-intro h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  line-height: 0.98;
  text-align: left;
  letter-spacing: -0.045em;
}

.order-menu-section {
  padding-top: 10px;
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

.order-menu-section .menu-tools {
  justify-content: stretch;
}

.order-menu-section .search-wrap {
  width: 100%;
  max-width: none;
  background: #101010;
}

.order-menu-section .category-tabs {
  margin: 13px 0 16px;
}

.order-product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.order-product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 15px;
  min-height: 142px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.025), transparent 58%),
    #111111;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.order-product-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: rgba(255, 255, 255, 0.16);
}

.order-product-card.is-customizable::before {
  background: var(--brand);
  box-shadow: 0 0 18px rgba(255, 196, 0, 0.28);
}

.order-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.3);
  background:
    linear-gradient(100deg, rgba(255, 196, 0, 0.045), transparent 58%),
    #121212;
}

.order-product-main {
  min-width: 0;
}

.order-product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.order-product-card .product-badge {
  min-height: 24px;
  padding-inline: 8px;
  font-size: 0.62rem;
}

.order-product-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.09);
  color: #e9c750;
  font-size: 0.65rem;
  font-weight: 850;
  white-space: nowrap;
}

.order-product-card.is-quick-add .order-product-hint {
  background: rgba(255, 255, 255, 0.055);
  color: #aaa9a3;
}

.order-product-card h3 {
  margin: 13px 0 0;
  font-size: clamp(1.06rem, 4.7vw, 1.35rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.order-product-card .product-description {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: #9f9e98;
  font-size: 0.82rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.order-product-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  width: 112px;
}

.order-product-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--brand);
  color: #080808;
  font-size: 0.88rem;
  font-weight: 1000;
  white-space: nowrap;
}

.order-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 112px;
  min-height: 43px;
  padding: 0 10px 0 12px;
  border: 1px solid rgba(255, 196, 0, 0.38);
  border-radius: 12px;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.order-action-button.is-choose {
  background: var(--brand);
  color: #080808;
}

.order-action-button:hover {
  transform: translateY(-1px);
  background: #ffd13c;
  color: #080808;
}

.order-action-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.12);
  font-size: 1rem;
  line-height: 1;
}

.order-action-button.is-add .order-action-icon {
  background: rgba(255, 196, 0, 0.12);
}

.order-action-button:disabled {
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
  background: #292929;
  color: #8a8a85;
  transform: none;
}

.order-product-card.is-unavailable {
  opacity: 0.58;
}

.order-product-card.is-unavailable:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.105);
  background: #111111;
}

.order-product-card .availability-badge {
  margin-top: 9px;
}

.order-page-body .simple-footer {
  display: none;
}

.mobile-cart-bar {
  position: fixed;
  z-index: 55;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 22px), 520px);
  min-height: 58px;
  padding: 8px 10px 8px 9px;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: 17px;
  background: var(--brand);
  color: #080808;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.52);
  cursor: pointer;
}

.mobile-cart-bar[hidden] {
  display: none;
}

.mobile-cart-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 1000;
}

.mobile-cart-count {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 12px;
  background: #090909;
  color: var(--brand);
  font-size: 0.86rem;
}

.mobile-cart-bar > strong {
  font-size: 0.92rem;
  white-space: nowrap;
}

.mobile-cart-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.11);
  font-size: 1.1rem;
  font-weight: 1000;
}

@media (min-width: 760px) {
  .order-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-product-card {
    min-height: 162px;
  }
}

@media (max-width: 720px) {
  .order-intro {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px 0 8px;
  }

  .order-intro h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .order-intro .back-menu-link {
    align-self: center;
  }

  .order-menu-section {
    padding-top: 8px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .order-product-card {
    gap: 11px;
    min-height: 136px;
    padding: 14px 13px 14px 15px;
    border-radius: 16px;
  }

  .order-product-side {
    width: 101px;
  }

  .order-action-button {
    width: 101px;
    padding-inline: 9px;
    font-size: 0.72rem;
  }

  .order-product-card .product-description {
    font-size: 0.77rem;
    -webkit-line-clamp: 2;
  }

  .order-product-hint {
    font-size: 0.61rem;
  }
}

@media (max-width: 340px) {
  .order-mode-label {
    font-size: 0.62rem;
  }

  .order-intro h1 {
    font-size: 1.45rem;
  }

  .order-product-card {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .order-product-side,
  .order-action-button {
    width: 92px;
  }

  .order-action-button {
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  .order-action-icon {
    width: 20px;
    height: 20px;
  }

  .order-product-card .product-description {
    -webkit-line-clamp: 1;
  }
}


/* =========================================================
   Unified page width for menu, order and product pages
   ========================================================= */
.menu-only-page .site-shell,
.order-page-body .site-shell {
  width: min(100%, 1500px);
}

.order-page-body main {
  width: 100%;
  margin-inline: 0;
}

.order-page-body .menu-section,
.menu-only-page .menu-section {
  width: 100%;
}

.order-page-body .order-topbar,
.menu-only-page .simple-topbar {
  min-height: 62px;
}

.order-page-body .order-menu-section,
.menu-only-page .compact-menu-browser {
  max-width: none;
}

.order-page-body .order-product-list,
.menu-only-page .read-only-menu-grid {
  width: 100%;
}

.product-page-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 720px) {
  .order-page-body .site-shell,
  .menu-only-page .site-shell,
  .product-page-shell {
    width: 100%;
  }

  .order-page-body main,
  .menu-only-page main {
    width: 100%;
  }
}


@media (min-width: 1100px) {
  .product-page-shell {
    max-width: 1200px;
    margin-inline: auto;
  }
  .product-detail-card {
    padding-inline: 24px;
  }
}

/* =========================================================
   Compact QR menu — optimized for quick phone scanning
   ========================================================= */
.menu-only-page .compact-menu-browser {
  padding-top: 10px;
  padding-bottom: 112px;
}

.menu-only-page .compact-category-tabs {
  position: sticky;
  top: 62px;
  z-index: 20;
  margin: 10px 0 12px;
  padding: 7px 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.92));
  backdrop-filter: blur(16px);
}

.menu-only-page .read-only-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  width: min(100%, 920px);
  margin-inline: auto;
}

.menu-only-page .read-only-menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 13px 12px 15px;
  border-radius: 15px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.025), transparent 65%),
    #111111;
}

.menu-only-page .read-only-menu-card:hover {
  transform: none;
  border-color: rgba(255, 196, 0, 0.28);
  box-shadow: none;
}

.compact-product-copy {
  min-width: 0;
}

.compact-product-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.menu-only-page .read-only-menu-card h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: clamp(0.98rem, 3.9vw, 1.12rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-only-page .read-only-menu-card .product-description {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #9f9e99;
  font-size: clamp(0.75rem, 3.05vw, 0.84rem);
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.compact-price-badge {
  min-width: 66px;
  padding: 8px 9px;
  border-radius: 10px;
  font-size: 0.86rem;
  text-align: center;
  white-space: nowrap;
}

.compact-availability-badge {
  flex: 0 1 auto;
  min-height: 22px;
  margin: 0;
  padding-inline: 7px;
  overflow: hidden;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-only-page .read-only-menu-card.is-unavailable {
  opacity: 0.58;
}

@media (max-width: 720px) {
  .menu-only-page main {
    padding-inline: 11px;
  }

  .menu-only-page .compact-menu-tools {
    gap: 7px;
  }

  .menu-only-page .compact-category-tabs {
    margin-inline: -11px;
    padding-inline: 11px;
  }

  .menu-only-page .category-tab {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .menu-only-page .read-only-menu-card {
    min-height: 68px;
    padding: 10px 10px 10px 12px;
  }

  .compact-price-badge {
    min-width: 61px;
    padding-inline: 7px;
    font-size: 0.8rem;
  }

  .menu-only-page .read-only-menu-card h3 {
    font-size: 0.94rem;
  }
}

/* =========================================================
   Final consistency pass — one site, one page frame
   Menu, ordering and product customization now share the
   same content width, gutters and header scale.
   ========================================================= */
:root {
  --lokeren-page-max: 900px;
  --lokeren-page-gutter: clamp(14px, 4vw, 24px);
}

.menu-only-page .site-shell,
.order-page-body .site-shell {
  width: 100%;
  max-width: none;
}

.menu-only-page main,
.order-page-body main {
  width: min(100%, var(--lokeren-page-max));
  margin-inline: auto;
  padding-inline: var(--lokeren-page-gutter);
}

.menu-only-page .simple-topbar,
.order-page-body .order-topbar {
  width: 100%;
  min-height: 62px;
  padding-inline: var(--lokeren-page-gutter);
}

.menu-only-page .compact-menu-browser,
.order-page-body .order-menu-section,
.menu-only-page .read-only-menu-grid,
.order-page-body .order-product-list {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.product-page-header {
  padding-inline: var(--lokeren-page-gutter);
}

.product-page-shell {
  width: min(100%, var(--lokeren-page-max));
  max-width: var(--lokeren-page-max);
  margin-inline: auto;
  padding-inline: var(--lokeren-page-gutter);
}

@media (max-width: 720px) {
  .menu-only-page main,
  .order-page-body main {
    padding-inline: 14px;
  }

  .menu-only-page .simple-topbar,
  .order-page-body .order-topbar,
  .product-page-header {
    padding-inline: 14px;
  }

  .product-page-shell {
    padding-inline: 14px;
  }

  .menu-only-page .compact-category-tabs {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

@media (max-width: 360px) {
  .menu-only-page main,
  .order-page-body main,
  .product-page-shell {
    padding-inline: 11px;
  }

  .menu-only-page .simple-topbar,
  .order-page-body .order-topbar,
  .product-page-header {
    padding-inline: 11px;
  }

  .menu-only-page .compact-category-tabs {
    margin-inline: -11px;
    padding-inline: 11px;
  }
}

/* =========================================================
   LOKEREN NIGHTLINE — bespoke visual identity
   A night-route / kitchen-ticket system built specifically
   around the 17:00–02:00 Lokeren service window.
   ========================================================= */
:root {
  --nightline-yellow: #ffd000;
  --nightline-ink: #070706;
  --nightline-paper: #141411;
  --nightline-paper-2: #1a1914;
  --nightline-cream: #f5f0df;
  --nightline-dim: #9c998e;
  --nightline-gutter: clamp(14px, 4vw, 24px);
  --nightline-max: 900px;
}

body {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    #080807;
  background-size: 28px 28px;
}

.menu-only-page .site-shell,
.order-page-body .site-shell {
  width: 100%;
  max-width: none;
}

.menu-only-page main,
.order-page-body main,
.product-page-shell {
  width: min(100%, var(--nightline-max));
  margin-inline: auto;
  padding-inline: var(--nightline-gutter);
}

/* Brand: route badge rather than a generic restaurant header */
.menu-only-page .simple-topbar,
.order-page-body .order-topbar,
.product-page-header {
  min-height: 68px;
  padding-inline: var(--nightline-gutter);
  border-bottom: 1px solid rgba(255, 208, 0, .22);
  background:
    linear-gradient(90deg, rgba(255,208,0,.055), transparent 36%),
    rgba(8, 8, 7, .95);
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 72%, 72% 100%, 0 100%, 0 16%);
  background: var(--nightline-yellow);
  box-shadow: 0 9px 24px rgba(255, 208, 0, .18);
}

.brand-copy strong,
.product-page-brand strong {
  color: var(--nightline-cream);
  letter-spacing: .19em;
}

.brand-copy small {
  color: #858279;
}

.brand-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  margin-left: 3px;
  padding: 0 8px;
  border: 1px solid rgba(255,208,0,.32);
  border-radius: 999px;
  background: rgba(255,208,0,.07);
  color: var(--nightline-yellow);
  font-size: .65rem;
  font-weight: 1000;
  letter-spacing: .04em;
}

.brand-route-badge i {
  color: #77746b;
  font-style: normal;
}

.product-route-mini {
  margin-left: 7px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,208,0,.28);
  color: var(--nightline-yellow);
  font-size: .64rem;
  font-weight: 1000;
  letter-spacing: .08em;
}

.language-switcher {
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background: #121210;
}

.language-button {
  border-radius: 0;
}

.language-button.is-active {
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  background: var(--nightline-yellow);
}

/* Search looks like a route scanner */
.search-wrap {
  position: relative;
  min-height: 49px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  background: #11110f;
}

.search-wrap::after {
  content: "";
  position: absolute;
  inset: 7px 7px 7px auto;
  width: 3px;
  background: repeating-linear-gradient(to bottom, var(--nightline-yellow) 0 3px, transparent 3px 6px);
  opacity: .8;
}

.map-icon-link {
  border-radius: 0;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  background: var(--nightline-yellow);
  color: #080807;
}

/* Categories become stops on a night route */
.menu-only-page .compact-category-tabs,
.order-menu-section .category-tabs {
  position: sticky;
  top: 68px;
  z-index: 20;
  isolation: isolate;
  gap: 6px;
  margin: 11px 0 14px;
  padding: 10px 2px 11px;
  background: rgba(8,8,7,.96);
  backdrop-filter: blur(16px);
}

.menu-only-page .compact-category-tabs::before,
.order-menu-section .category-tabs::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10px;
  right: 10px;
  bottom: 16px;
  height: 1px;
  background: rgba(255,208,0,.25);
}

.category-tab {
  position: relative;
  min-height: 38px;
  padding: 0 13px 0 27px;
  border: 0;
  border-radius: 0;
  background: #0d0d0b;
  color: #a7a49a;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.category-tab::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border: 2px solid #5e5b53;
  border-radius: 50%;
  background: #0d0d0b;
}

.category-tab:hover,
.category-tab.is-active {
  background: var(--nightline-yellow);
  color: #080807;
}

.category-tab.is-active::before {
  border-color: #080807;
  background: #080807;
  box-shadow: 0 0 0 4px rgba(8,8,7,.12);
}

/* Menu tickets */
.menu-only-page .read-only-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.menu-only-page .read-only-menu-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 76px;
  align-items: stretch;
  gap: 0;
  min-height: 78px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  background:
    linear-gradient(90deg, rgba(255,208,0,.045), transparent 32%),
    var(--nightline-paper);
}

.menu-only-page .read-only-menu-card::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 9px;
  bottom: 9px;
  border-left: 1px dashed rgba(255,208,0,.28);
}

.menu-ticket-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--nightline-yellow);
  font-variant-numeric: tabular-nums;
}

.menu-ticket-code small,
.order-ticket-code small {
  color: #77746b;
  font-size: .5rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.menu-ticket-code b,
.order-ticket-code b {
  font-size: .92rem;
  line-height: 1;
}

.compact-product-copy {
  min-width: 0;
  padding: 12px 12px 11px 14px;
}

.menu-only-page .read-only-menu-card h3 {
  margin: 0;
  color: var(--nightline-cream);
  font-size: clamp(.96rem, 3.9vw, 1.08rem);
}

.menu-only-page .read-only-menu-card .product-description {
  margin-top: 5px;
  color: var(--nightline-dim);
}

.compact-price-badge {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100%;
  padding: 0 7px;
  border-left: 1px dashed rgba(8,8,7,.45);
  border-radius: 0;
  background: var(--nightline-yellow);
  color: #080807;
  font-size: .85rem;
  font-weight: 1000;
}

/* The fixed CTA is a detachable ticket stub */
.order-cta-bar {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 0;
  width: min(calc(100% - 22px), 620px);
  min-height: 62px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,208,0,.42);
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  background: rgba(17,17,15,.97);
}

.order-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 9px 14px;
}

.order-cta-copy strong {
  color: var(--nightline-cream);
}

.order-cta-button {
  position: relative;
  height: 100%;
  min-height: 62px;
  padding-inline: 16px;
  border: 0;
  border-left: 1px dashed rgba(8,8,7,.48);
  border-radius: 0;
  clip-path: none;
  background: var(--nightline-yellow);
  color: #080807;
}

/* Order page uses the same ticket language, but becomes actionable */
.order-page-body {
  background:
    linear-gradient(180deg, rgba(255,208,0,.045), transparent 190px),
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    #080807;
  background-size: auto, 28px 28px, auto;
}

.order-intro {
  position: relative;
  align-items: center;
  padding: 16px 0 8px;
}

.order-mode-label {
  color: var(--nightline-yellow);
}

.order-mode-dot {
  border-radius: 0;
  transform: rotate(45deg);
}

.order-intro h1 {
  color: var(--nightline-cream);
  letter-spacing: -.04em;
}

.order-product-list {
  gap: 10px;
  counter-reset: nightline-order;
}

.order-product-card {
  counter-increment: nightline-order;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 108px;
  gap: 0;
  min-height: 142px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  background:
    linear-gradient(90deg, rgba(255,208,0,.04), transparent 34%),
    var(--nightline-paper);
}

.order-product-card::before {
  display: none;
}

.order-ticket-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px dashed rgba(255,208,0,.25);
  color: var(--nightline-yellow);
}

.order-product-main {
  padding: 14px 13px;
}

.order-product-card h3 {
  margin-top: 11px;
  color: var(--nightline-cream);
}

.order-product-meta {
  gap: 5px;
}

.order-product-card .product-badge,
.order-product-hint {
  border-radius: 0;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.order-product-side {
  width: auto;
  border-left: 1px dashed rgba(255,208,0,.3);
  background: #0d0d0b;
}

.order-product-price {
  width: 100%;
  min-height: 42px;
  border-radius: 0;
  background: var(--nightline-yellow);
}

.order-action-button {
  width: calc(100% - 14px);
  min-height: 44px;
  margin: 0 7px 8px;
  border-radius: 0;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.order-action-icon {
  border-radius: 0;
}

.mobile-cart-bar {
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  background: var(--nightline-yellow);
}

.mobile-cart-count,
.mobile-cart-arrow {
  border-radius: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* Product builder: a numbered kitchen route rather than a generic form */
.product-page {
  background:
    linear-gradient(90deg, rgba(255,208,0,.035), transparent 40%),
    #080807;
}

.product-page-header {
  background: rgba(8,8,7,.97);
}

.product-page-shell {
  padding-top: 18px;
}

.product-detail-card {
  position: relative;
  padding: clamp(20px,4vw,34px);
  border: 1px solid rgba(255,208,0,.25);
  border-radius: 0;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  background:
    linear-gradient(90deg, rgba(255,208,0,.055), transparent 32%),
    #11110f;
}

.product-detail-card::before {
  content: "17→02 / BUILD";
  position: absolute;
  top: 0;
  right: 20px;
  padding: 4px 9px;
  background: var(--nightline-yellow);
  color: #080807;
  font-size: .58rem;
  font-weight: 1000;
  letter-spacing: .1em;
}

.product-detail-card h2 {
  color: var(--nightline-cream);
}

#productOptionsForm {
  counter-reset: build-step;
}

.product-option-section,
.product-quantity-section {
  counter-increment: build-step;
  position: relative;
  border-radius: 0;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  background: #0c0c0a;
}

.product-option-section::before,
.product-quantity-section::before {
  content: counter(build-step, decimal-leading-zero);
  position: absolute;
  top: 13px;
  right: 14px;
  color: rgba(255,208,0,.32);
  font-size: 1.18rem;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
}

.sauce-quick-card,
.product-checkbox-card,
.product-topping-card,
.sauce-list-disclosure,
.product-add-button {
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.product-topping-card {
  background: #10100e;
}

.product-topping-image {
  background: #f5f1e7;
}

.product-checkbox-box,
.sauce-quick-check {
  border-radius: 0;
}

.product-add-button {
  min-height: 56px;
  background: var(--nightline-yellow);
}

/* Cart drawer remains part of the same system */
.cart-drawer,
.topping-warning-card {
  border-radius: 0;
  background: #11110f;
}

.drawer-header {
  border-bottom-color: rgba(255,208,0,.22);
}

@media (min-width: 760px) {
  .order-product-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-copy small {
    display: none;
  }

  .brand-route-badge {
    min-height: 25px;
    padding-inline: 6px;
    font-size: .58rem;
  }

  .menu-only-page main,
  .order-page-body main,
  .product-page-shell {
    padding-inline: 13px;
  }

  .menu-only-page .simple-topbar,
  .order-page-body .order-topbar,
  .product-page-header {
    padding-inline: 13px;
  }

  .menu-only-page .compact-category-tabs,
  .order-menu-section .category-tabs {
    margin-inline: -13px;
    padding-inline: 13px;
  }

  .order-product-card {
    grid-template-columns: 38px minmax(0,1fr) 102px;
  }

  .order-product-main {
    padding: 13px 11px;
  }
}

@media (max-width: 390px) {
  .brand-route-badge {
    display: none;
  }

  .menu-only-page .read-only-menu-card {
    grid-template-columns: 39px minmax(0,1fr) 68px;
    min-height: 74px;
  }

  .menu-only-page .read-only-menu-card::after {
    left: 38px;
  }

  .compact-product-copy {
    padding-inline: 11px 9px;
  }

  .order-product-card {
    grid-template-columns: 35px minmax(0,1fr) 95px;
    min-height: 136px;
  }

  .order-product-side,
  .order-action-button {
    width: auto;
  }

  .order-action-button {
    font-size: .69rem;
  }

  .product-route-mini {
    display: none;
  }
}

@media (max-width: 340px) {
  .menu-only-page main,
  .order-page-body main,
  .product-page-shell {
    padding-inline: 10px;
  }

  .menu-only-page .simple-topbar,
  .order-page-body .order-topbar,
  .product-page-header {
    padding-inline: 10px;
  }

  .menu-only-page .compact-category-tabs,
  .order-menu-section .category-tabs {
    margin-inline: -10px;
    padding-inline: 10px;
  }

  .order-product-card {
    grid-template-columns: 32px minmax(0,1fr) 88px;
  }

  .order-product-hint {
    display: none;
  }
}
