:root {
  --bg: #080808;
  --surface: #121210;
  --surface-2: #1a1915;
  --surface-3: #242117;
  --gold: #f3c65f;
  --gold-soft: #c99e45;
  --cream: #fff6dc;
  --muted: #c9bfa7;
  --line: #5d4926;
  --line-soft: #312817;
  --shadow: 0 22px 60px rgba(0, 0, 0, .48);
  --radius: 24px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.page-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.site-header {
  width: min(100%, 1040px);
  min-height: 124px;
  margin: 0 auto;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: 28px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.brand { min-width: 0; color: var(--cream); text-decoration: none; transform: translateX(7px); }
.brand-name {
  display: block;
  font: italic 400 clamp(21px, 3.2vw, 31px)/1 Georgia, "Times New Roman", serif;
  white-space: nowrap;
}
.brand-name b {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font: normal 700 clamp(44px, 7.25vw, 73px)/.88 Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
}
.brand-logo-letter {
  display: inline-block;
  width: 2.6em;
  height: 2em;
  margin-left: .08em;
  object-fit: contain;
  vertical-align: -.55em;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.75));
}
.brand-kicker {
  display: block;
  margin-top: 9px;
  color: #ff4f57;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav { align-self: end; padding-bottom: 7px; transform: translateY(-20px); }
.site-nav a {
  color: var(--gold);
  font-size: 25px;
  font-weight: 750;
  text-decoration: none;
}
.cart-button {
  position: relative;
  align-self: end;
  width: 54px;
  height: 54px;
  margin-bottom: 0;
  transform: translateY(-20px);
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}
.cart-button svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-button > span { display: none; }
.cart-button b {
  position: absolute;
  top: -4px;
  right: -5px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--gold);
  color: #17130b;
  font-size: 13px;
}

main { width: 100%; padding: 20px 0 72px; }
.order-card { width: min(calc(100% - 32px), 980px); margin: 0 auto; }
.menu-showcase {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #0f0f0e;
  box-shadow: var(--shadow);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.menu-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-3px); border-color: var(--gold-soft); box-shadow: 0 18px 38px rgba(0,0,0,.46); }
.menu-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.menu-card:first-child { grid-column: 1 / -1; }
.menu-card > img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}
.menu-card:first-child > img { height: 500px; object-position: center 54%; }
.menu-card[data-product="intestine"] > img { object-position: 50% 60%; }
.menu-card[data-product="cajun"] > img { object-position: 50% 50%; }
.menu-card-body {
  min-height: 84px;
  padding: 18px 16px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line-soft);
}
.menu-card h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -.02em;
}

.product-detail {
  display: none;
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
body.detail-mode .order-card { display: none; }
body.detail-mode:not(.bowl-mode):not(.cajun-mode) .builder { display: block; }
body.detail-mode.bowl-mode .menu-addition:not(.cajun-detail) { display: block; }
body.detail-mode.cajun-mode .cajun-detail { display: block; }
.bun-detail-photo,
.menu-addition-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 20px;
  background: #181511;
}
.bun-detail-photo { object-fit: cover; object-position: center 54%; }
.menu-addition-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-addition-media.party-tray-media { aspect-ratio: 1 / 1; }
.menu-addition-media.party-tray-media img {
  object-fit: cover;
  object-position: center;
}
body.bowl-mode .menu-addition-media img { object-position: 50% 60%; }
body.cajun-mode .menu-addition-media img { object-position: 50% 50%; }
.detail-back {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}
.builder-heading,
.menu-addition-heading {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.builder-heading h2,
.menu-addition-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.price,
.menu-addition-heading > strong {
  flex: none;
  margin: 0;
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
fieldset { margin: 0; padding: 0; border: 0; }
fieldset + fieldset { margin-top: 22px; }
.choice-grid,
.pack-grid,
.spice-grid,
.serving-grid { display: grid; gap: 12px; }
.filling-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.serving-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pack-grid,
.spice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice,
.pack,
.option-tile { position: relative; min-width: 0; cursor: pointer; }
.choice input,
.pack input,
.option-tile input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.choice,
.pack,
.option-tile span {
  min-height: 76px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--cream);
  text-align: center;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.choice:hover,
.pack:hover,
.option-tile:hover span { transform: translateY(-1px); border-color: var(--gold-soft); }
.choice.active,
.pack.active,
.option-tile input:checked + span {
  border-color: var(--gold);
  background: var(--surface-3);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.choice:has(input:focus-visible),
.pack:has(input:focus-visible),
.option-tile input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 3px; }
.choice strong,
.pack strong,
.option-tile span { font-size: 17px; font-weight: 750; }
.serving-options { margin: 0 0 22px; }
.serving-options legend,
.fulfillment-options legend { margin-bottom: 10px; color: var(--cream); font-size: 16px; font-weight: 800; }
.serving-options .option-tile span { flex-direction: column; gap: 5px; }
.serving-options .option-tile small { color: var(--gold); font-size: 15px; font-weight: 900; }
.pack { flex-direction: column; }
.pack-info { display: grid; gap: 4px; }
.pack small { color: var(--gold); font-size: 16px; font-weight: 850; }
.pack em {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 2px);
  transform: translateX(-50%);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: #17130b;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.intestine-options { margin: 0; }
.menu-addition-action,
.add-row { margin-top: 24px; }
.quantity {
  width: 100%;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}
.quantity button {
  height: 100%;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
}
.quantity output { text-align: center; color: var(--cream); font-size: 20px; font-weight: 850; }
.primary,
.secondary {
  min-height: 66px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.primary { background: var(--gold); color: #17130b; }
.primary:hover { background: #ffda7b; }
.primary span { margin-left: 14px; }
.secondary { background: #2c281e; color: var(--cream); }
.add-row,
.menu-addition-action { display: grid; grid-template-columns: 1fr 1.45fr; gap: 12px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.overlay { position: fixed; inset: 0; z-index: 30; background: rgba(0,0,0,.72); backdrop-filter: blur(3px); }
.cart-drawer {
  position: fixed;
  z-index: 31;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--cream);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
  transform: translateX(102%);
  transition: transform .25s ease;
  overflow: hidden;
  overscroll-behavior: contain;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-head h2,
dialog h2 { margin: 0; color: var(--gold); font-size: 27px; }
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--gold);
  font-size: 26px;
  cursor: pointer;
}
.cart-items { min-height: 0; overflow: auto; overscroll-behavior: contain; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.cart-item h3 { margin: 0; font-size: 15px; line-height: 1.35; }
.cart-item p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.remove { border: 0; background: none; color: var(--gold); font-weight: 750; cursor: pointer; }
.empty-cart { margin: auto; padding: 40px 12px; color: var(--muted); text-align: center; }
.empty-cart span { width: 64px; height: 64px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--surface-3); color: var(--gold); font-size: 30px; }
.empty-cart h3 { margin: 18px 0 8px; color: var(--cream); font-size: 24px; }
.empty-cart p { margin: 0; font-size: 15px; line-height: 1.5; }
.cart-footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.total-row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 20px; }
.full { width: 100%; }
.cart-footer p,
.fine-print { color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }

dialog {
  width: min(570px, calc(100% - 28px));
  max-width: 570px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  color: var(--cream);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  overscroll-behavior: contain;
}
dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
dialog form,
.success-dialog { padding: 26px; }
dialog label { display: grid; gap: 7px; margin-top: 16px; font-size: 14px; font-weight: 750; }
.checkout-info { margin: 18px 0 4px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; background: #211b10; }
.checkout-info-block { padding: 15px 0; }
.checkout-info-block + .checkout-info-block { border-top: 1px solid var(--line-soft); }
.checkout-info p { margin: 2px 0 0; color: var(--cream); font-size: 14px; line-height: 1.45; }
.checkout-info-title { display: block; margin-bottom: 5px; color: var(--gold); font-size: 18px; font-weight: 800; line-height: 1.25; }
.checkout-info .minimum-label { margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.delivery-rate { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 5px 0; color: var(--cream); font-size: 14px; line-height: 1.35; }
.delivery-rate b { color: var(--gold); }
.fulfillment-options { margin-top: 18px; }
#checkoutForm .fulfillment-options legend { margin-bottom: 10px; color: var(--cream); font-size: 14px; font-weight: 750; }
.fulfillment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fulfillment-grid .option-tile span { min-height: 58px; font-size: 14px; }
.delivery-fields { margin-top: 4px; padding: 0 14px 14px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(255,255,255,.015); }
.eligibility { margin: 12px 0 0; padding: 10px 12px; border-radius: 10px; background: var(--surface-3); color: var(--muted); font-size: 13px; line-height: 1.45; }
.eligibility.is-ok { color: #b9eba6; }
.eligibility.is-short { color: #ffd581; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: var(--surface-2);
  color: var(--cream);
  font-size: 16px;
}
#checkoutForm input,
#checkoutForm select,
#checkoutForm textarea { font-size: 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(243,198,95,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-summary { margin: 18px 0; padding: 14px; border-radius: 14px; background: #211b10; font-size: 13px; line-height: 1.6; }
.payment-dialog { padding: 26px; text-align: center; }
.payment-dialog .drawer-head { text-align: left; }
.payment-total { margin: 18px 0 14px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--line); border-radius: 14px; background: #211b10; }
.payment-total span { color: var(--cream); font-size: 15px; font-weight: 750; }
.payment-total strong { color: var(--gold); font-size: 26px; }
.payment-method-line { margin: 0 0 12px; color: var(--cream); font-size: 16px; }
.payment-method-line strong { color: var(--gold); }
.payment-steps { margin: 0 0 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); text-align: left; }
.payment-steps h3 { margin: 0 0 8px; color: var(--gold); font-size: 18px; }
.payment-steps ol { margin: 0; padding-left: 22px; color: var(--cream); font-size: 16px; line-height: 1.55; }
.payment-steps li + li { margin-top: 5px; }
.payment-steps strong { color: var(--gold); }
.payment-qr { width: min(100%, 330px); max-height: 345px; display: block; margin: 0 auto; border-radius: 18px; object-fit: contain; background: #fff; }
.payment-recipient { margin: 14px 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.payment-recipient strong { color: var(--cream); font-size: 16px; overflow-wrap: anywhere; }
.copy-recipient { min-height: 48px; margin: 0 0 12px; font-size: 14px; }
.payment-link { display: grid; place-items: center; margin-bottom: 14px; text-decoration: none; }
.payment-link[hidden] { display: none; }
.payment-note-box { margin: 0 0 12px; padding: 14px; display: grid; gap: 9px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); text-align: left; }
.payment-note-box > span { color: var(--gold); font-size: 14px; font-weight: 800; }
.payment-note-box > strong { color: var(--cream); font-size: 15px; line-height: 1.45; overflow-wrap: anywhere; }
.payment-note-box .secondary { min-height: 48px; font-size: 14px; }
.payment-reminder { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.payment-dialog > .text-button { display: block; margin: 14px auto 0; }
.success-dialog { text-align: center; }
.success-icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #17130b; font-size: 28px; }
.success-dialog > p { max-width: 430px; margin: 14px auto 20px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.order-preview { margin: 0 0 18px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #211b10; text-align: left; }
.order-preview-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.order-preview-head span { color: var(--muted); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.order-preview-head strong { color: var(--gold); font-size: 15px; overflow-wrap: anywhere; }
.order-preview-section { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.order-preview-section:last-of-type { border-bottom: 0; }
.order-preview-section h3 { margin: 0 0 8px; color: var(--gold); font-size: 15px; }
.order-preview-section p { margin: 4px 0; color: var(--cream); font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }
.order-preview-section small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 12px; font-weight: 700; }
.order-preview-item { display: flex; justify-content: space-between; gap: 12px; }
.order-preview-total { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; color: var(--cream); font-size: 17px; }
.order-preview-total strong { color: var(--gold); font-size: 22px; }
.success-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.text-button { margin-top: 16px; border: 0; background: none; color: var(--muted); cursor: pointer; }
.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: #17130b;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 22px);
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

::view-transition-old(root) { animation: routeOut 160ms ease-in both; }
::view-transition-new(root) { animation: routeIn 280ms cubic-bezier(.2,.75,.25,1) both; }
@keyframes routeOut { to { opacity: 0; transform: scale(.99); } }
@keyframes routeIn { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 720px) {
  .site-header { min-height: 108px; padding: 17px 16px; gap: 14px; }
  .brand-name { font-size: 21px; }
  .brand-name b { font-size: clamp(38px, 10.4vw, 54px); }
  .site-nav { padding-bottom: 4px; }
  .site-nav a { font-size: 21px; }
  .cart-button { width: 48px; height: 48px; }
  main { padding-top: 12px; }
  .order-card { width: min(calc(100% - 20px), 980px); }
  .menu-showcase { padding: 14px; border-radius: 24px; }
  .menu-grid { gap: 12px; }
  .menu-card { border-radius: 18px; }
  .menu-card > img { height: 47vw; min-height: 190px; max-height: 330px; }
  .menu-card:first-child > img { height: 62vw; min-height: 280px; max-height: 440px; }
  .menu-card-body { min-height: 70px; padding: 14px 8px; }
  .menu-card h2 { font-size: 18px; }
  .product-detail { width: calc(100% - 20px); padding: 16px; border-radius: 24px; }
  .bun-detail-photo, .menu-addition-media { margin-bottom: 19px; border-radius: 18px; }
  .detail-back { margin-bottom: 20px; }
  .builder-heading, .menu-addition-heading { margin-bottom: 22px; }
  .builder-heading h2, .menu-addition-heading h2 { font-size: 30px; }
  .price, .menu-addition-heading > strong { font-size: 27px; }
  .choice, .pack, .option-tile span { min-height: 70px; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; min-height: 102px; padding: 15px 12px; gap: 9px; }
  .brand-name { font-size: 18px; }
  .brand-name b { font-size: clamp(32px, 9.8vw, 45px); letter-spacing: .01em; }
  .brand-kicker { margin-top: 7px; font-size: 12px; letter-spacing: .1em; }
  .site-nav a { font-size: 19px; }
  .cart-button { width: 44px; height: 44px; }
  .cart-button svg { width: 34px; height: 34px; }
  .menu-showcase { padding: 11px; }
  .menu-grid { gap: 10px; }
  .menu-card > img { height: 48vw; min-height: 168px; }
  .menu-card:first-child > img { height: 64vw; min-height: 250px; }
  .menu-card-body { min-height: 64px; }
  .menu-card h2 { font-size: 16px; }
  .product-detail { padding: 14px; }
  .bun-detail-photo, .menu-addition-media { aspect-ratio: 4 / 3; }
  .builder-heading h2, .menu-addition-heading h2 { font-size: 27px; }
  .price, .menu-addition-heading > strong { font-size: 25px; }
  .filling-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .choice { min-height: 66px; padding-inline: 5px; }
  .choice strong { font-size: 14px; }
  .pack-grid, .spice-grid { gap: 9px; }
  .serving-grid { gap: 7px; }
  .serving-options .option-tile span { min-height: 78px; padding-inline: 4px; }
  .serving-options .option-tile strong { font-size: 13px; }
  .pack, .option-tile span { min-height: 68px; }
  .pack strong, .option-tile span { font-size: 16px; }
  .add-row, .menu-addition-action { grid-template-columns: 1fr; }
  .quantity, .primary { min-height: 62px; }
  .form-row, .success-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
