@font-face {
  font-family: 'Semplicita';
  src: url('fonts/semplicita-book.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Semplicita';
  src: url('fonts/semplicita-book-italic.otf') format('opentype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Compagnon';
  src: url('fonts/compagnon-medium.otf') format('opentype');
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

:root {
  --font-display: 'Compagnon', Georgia, serif;
  --font-body: 'Semplicita', Arial, Helvetica, sans-serif;
  --blue: #005586;
  --yellow: #f6e057;
  --lavender: #a1aed9;
  --green: #33803d;
  --cream: #e3dcb5;
  --red: #a5301f;
  --orange: #f37433;
  --ink: #171717;
  --paper: #fffdf5;
  --line: rgba(23, 23, 23, 0.24);
  --shadow: 0 10px 30px rgba(23, 23, 23, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.4;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: var(--blue);
  border-bottom: 3px solid var(--ink);
}
.wordmark {
  display: block;
  width: min(310px, 43vw);
  text-decoration: none;
}
.wordmark img { display: block; width: 100%; height: auto; }
.header-meta { display: flex; align-items: center; gap: 22px; font-size: .9rem; }
.header-meta > span { font: 500 1.08rem/1 var(--font-display); }
.header-meta a { padding: 8px 12px; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); text-decoration: none; font-weight: 700; }

.store-shell { width: min(1180px, calc(100% - 32px)); margin: 26px auto 70px; }
.pickup-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.pickup-banner > div { display: grid; gap: 2px; }
.pickup-banner strong { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.8rem); font-weight: 500; }
.eyebrow { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .07em; font-size: .78rem; font-weight: 500; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button-dark { color: var(--paper); background: var(--ink); }
.button-primary { color: var(--paper); background: var(--green); }
.button-light { color: var(--ink); background: var(--yellow); }
.button-block { width: 100%; }
.button:hover:not(:disabled) { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.button:disabled { cursor: not-allowed; }
.button-limit, .button-limit:disabled { color: var(--paper); background: var(--red); opacity: 1; }

.layout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; align-items: start; margin-top: 30px; }
.menu-group { margin: 0 0 42px; scroll-margin-top: 110px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 13px; padding-bottom: 8px; border-bottom: 3px solid var(--ink); }
.section-heading h2 { margin: 0; font: 500 clamp(1.55rem, 3vw, 2.1rem)/1 var(--font-display); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 18px; }
.menu-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 0;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .12s ease, transform .12s ease;
}
.menu-card:hover:not(:disabled) { box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px, -2px); }
.menu-card:focus-visible { outline: 4px solid var(--blue); outline-offset: 3px; }
.menu-card:disabled { cursor: not-allowed; opacity: .62; }
.menu-card-media { display: grid; width: 100%; aspect-ratio: 1; overflow: hidden; place-items: center; background: var(--paper); }
.menu-card-copy { display: flex; flex: 1; flex-direction: column; min-width: 0; padding: 15px 16px 17px; }
.menu-card-copy > strong { font: 500 1.55rem/1.05 var(--font-display); }
.menu-card-copy > span:not(.price) { display: -webkit-box; overflow: hidden; margin-top: 7px; color: #454545; font-size: .88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.menu-card-copy .price { padding-top: 10px; font-weight: 800; }
.menu-card-copy em { color: var(--red); font-size: .8rem; font-style: normal; font-weight: 800; }
.menu-photo {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center 56%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
}
.menu-card-media .pizza-art { width: 56%; }

.pizza-art {
  place-self: center;
  width: 88px;
  aspect-ratio: 1;
  border: 5px solid #b86728;
  border-radius: 50%;
  background-color: #f4bd59;
  background-image: radial-gradient(circle at 30% 30%, #33803d 0 3px, transparent 4px), radial-gradient(circle at 65% 25%, #fff3d4 0 7px, transparent 8px), radial-gradient(circle at 56% 70%, #33803d 0 3px, transparent 4px), radial-gradient(circle at 27% 67%, #fff3d4 0 8px, transparent 9px), radial-gradient(circle, #d9482f 0 59%, #e0a24b 60% 100%);
  box-shadow: inset 0 0 0 3px rgba(64, 24, 7, .18), 0 5px 10px rgba(23, 23, 23, .18);
  transform: rotate(-9deg);
}
.pizza-tomato { background-image: radial-gradient(circle at 30% 32%, #f2c748 0 4px, transparent 5px), radial-gradient(circle at 65% 65%, #33803d 0 3px, transparent 4px), radial-gradient(circle, #bd2f22 0 59%, #e0a24b 60% 100%); }
.pizza-white { background-image: radial-gradient(circle at 35% 32%, #fff7df 0 10px, transparent 11px), radial-gradient(circle at 67% 64%, #fff7df 0 9px, transparent 10px), radial-gradient(circle at 70% 26%, #c98f31 0 3px, transparent 4px), radial-gradient(circle, #efc46b 0 59%, #e0a24b 60% 100%); }
.pizza-pepperoni, .pizza-nduja { background-image: radial-gradient(circle at 28% 28%, #a5301f 0 8px, transparent 9px), radial-gradient(circle at 68% 31%, #a5301f 0 8px, transparent 9px), radial-gradient(circle at 58% 68%, #a5301f 0 8px, transparent 9px), radial-gradient(circle at 25% 70%, #33803d 0 3px, transparent 4px), radial-gradient(circle, #df702c 0 59%, #e0a24b 60% 100%); }
.pizza-mushroom { background-image: radial-gradient(ellipse at 32% 32%, #76523a 0 8px, transparent 9px), radial-gradient(ellipse at 68% 62%, #76523a 0 9px, transparent 10px), radial-gradient(circle at 60% 25%, #a5301f 0 3px, transparent 4px), radial-gradient(circle, #ead69d 0 59%, #e0a24b 60% 100%); }
.pizza-cherry, .pizza-sungold { background-image: radial-gradient(circle at 27% 29%, #f37433 0 7px, transparent 8px), radial-gradient(circle at 68% 28%, #f6e057 0 7px, transparent 8px), radial-gradient(circle at 60% 67%, #f37433 0 7px, transparent 8px), radial-gradient(circle at 28% 68%, #33803d 0 4px, transparent 5px), radial-gradient(circle, #f4c665 0 59%, #e0a24b 60% 100%); }
.item-photo { border: 0; border-radius: 0; background-color: transparent; background-position: center; background-repeat: no-repeat; background-size: contain; box-shadow: none; transform: none; }

.cart-card { position: sticky; top: 98px; padding: 20px; background: var(--paper); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.cart-heading { display: flex; justify-content: space-between; align-items: start; padding-bottom: 13px; border-bottom: 2px solid var(--ink); }
.cart-heading h2 { margin: 2px 0 0; font: 500 1.9rem/1 var(--font-display); }
.cart-count { display: grid; place-items: center; width: 35px; height: 35px; color: var(--paper); background: var(--blue); border: 2px solid var(--ink); font-weight: 800; }
.cart-empty { padding: 34px 4px; text-align: center; }
.cart-empty p { margin: 0 0 5px; font-weight: 800; }
.cart-empty span { color: #555; font-size: .85rem; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line strong { font-size: .9rem; }
.cart-line .line-price { grid-column: 2; grid-row: 1; }
.cart-line small { color: #555; }
.line-actions { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 12px; margin-top: 7px; }
.line-quantity { display: grid; grid-template-columns: 34px 38px 34px; align-items: center; border: 2px solid currentColor; }
.line-quantity button { width: 34px; height: 32px; padding: 0; color: var(--ink); background: var(--yellow); border: 0; font-size: 1rem; font-weight: 800; cursor: pointer; }
.line-quantity button:disabled { cursor: not-allowed; opacity: .38; }
.line-quantity strong { text-align: center; font-size: .88rem; }
.remove-line { padding: 3px 0; color: var(--red); background: none; border: 0; text-decoration: underline; font-size: .78rem; font-weight: 800; cursor: pointer; }
.cart-error, .summary-error { margin: 12px 0 0; padding: 10px; color: var(--paper); background: var(--red); font-size: .82rem; font-weight: 800; }
.cart-footer { padding-top: 18px; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 15px; }

.modal { width: min(680px, calc(100% - 28px)); max-height: min(800px, calc(100vh - 32px)); padding: 0; background: var(--paper); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.item-modal { width: min(820px, calc(100% - 28px)); }
.modal::backdrop { background: rgba(0, 0, 0, .56); }
.modal-header { position: sticky; z-index: 2; top: 0; display: flex; justify-content: space-between; align-items: start; padding: 22px; background: var(--paper); border-bottom: 2px solid var(--ink); }
.modal-header h2 { margin: 3px 0 0; font: 500 clamp(1.7rem, 5vw, 2.4rem)/1 var(--font-display); }
.icon-button { width: 42px; height: 42px; border: 2px solid var(--ink); background: var(--yellow); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.item-detail-media {
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(240px, 52dvh, 430px);
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-bottom: 2px solid var(--ink);
}
.item-detail-media #item-art.item-photo {
  width: 100%;
  height: 100%;
  background-position: center 58%;
  background-size: cover;
}
.item-detail-media #item-art:not(.item-photo) { width: 42%; }
.item-detail-media .icon-button { position: absolute; z-index: 2; top: 16px; right: 16px; }
.item-modal-heading { padding: 18px 22px 0; }
.item-modal-heading h2 { margin: 3px 0 0; font: 500 clamp(2rem, 6vw, 3rem)/1 var(--font-display); }
.modal-lede { margin: 0; padding: 20px 22px; }
.item-modal .modal-lede { padding: 12px 22px 20px; }
.date-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 0 22px 20px; overflow-x: auto; }
.date-choice { min-width: 98px; padding: 10px 6px; background: white; border: 2px solid var(--ink); cursor: pointer; }
.date-choice span, .date-choice strong { display: block; }
.date-choice.active { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.slot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 0 22px 24px; }
.slot-choice { min-height: 62px; padding: 8px; background: white; border: 2px solid var(--ink); cursor: pointer; }
.slot-choice strong { display: block; }
.slot-choice .slot-capacity { display: block; margin-top: 3px; color: var(--green); font-size: .72rem; font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.slot-choice:hover:not(:disabled) { background: var(--lavender); }
.slot-choice-unavailable { color: #5b5b5b; background: #dedbd0; border-color: #777; cursor: not-allowed; }
.slot-choice-unavailable strong { text-decoration: line-through; text-decoration-thickness: 1px; }
.slot-choice-unavailable .slot-capacity { color: var(--red); }
.item-modal-row { display: flex; align-items: center; justify-content: flex-start; gap: 20px; padding: 0 22px 24px; }
.quantity-control { display: grid; grid-template-columns: 44px 52px 44px; align-items: center; margin-top: 7px; border: 2px solid var(--ink); }
.quantity-control button { height: 42px; background: var(--yellow); border: 0; cursor: pointer; font-size: 1.2rem; }
.quantity-control button:disabled { cursor: not-allowed; opacity: .38; }
.quantity-control strong { text-align: center; }
.modifier-list { margin: 0 22px 22px; padding: 16px; border: 2px solid var(--ink); }
.modifier-list legend, .checkout-form legend { font-family: var(--font-display); font-weight: 500; }
.modifier-list legend { font-size: 1.25rem; line-height: 1; }
.modifier-list legend span { color: #666; font-size: .76rem; font-weight: 400; }
.modifier-list label { display: flex; gap: 9px; padding: 8px 0; }
.square-modifier-group > p { margin: 2px 0 10px; color: #555; font-size: .86rem; }
.square-modifier-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.square-modifier-options label { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 46px; padding: 9px 10px; background: white; border: 2px solid var(--ink); cursor: pointer; }
.square-modifier-options input { width: 18px; height: 18px; accent-color: var(--green); }
.square-modifier-options small { font-size: .72rem; }
.addition-picker > p { margin: 2px 0 14px; color: #555; font-size: .86rem; }
.addition-row { display: grid; gap: 8px; padding: 13px 0; border-top: 1px solid var(--line); }
.addition-row:first-child { padding-top: 0; border-top: 0; }
.placement-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.placement-options button { min-height: 48px; padding: 6px 4px; background: white; border: 2px solid var(--ink); cursor: pointer; font-size: .78rem; font-weight: 800; }
.placement-options button[aria-pressed="true"] { background: var(--yellow); box-shadow: 2px 2px 0 var(--ink); }
.placement-options small { display: block; margin-top: 1px; font-size: .68rem; font-weight: 400; }
.item-modal > .button { position: sticky; bottom: 0; gap: 0; border-width: 2px 0 0; }
.form-error { margin: 12px 22px; padding: 12px; color: var(--paper); background: var(--red); font-weight: 800; }

.checkout-shell { width: min(1050px, calc(100% - 32px)); margin: 35px auto 80px; }
.back-link { display: inline-block; margin-bottom: 24px; font-weight: 800; }
.checkout-pickup { position: relative; padding: 24px; background: var(--yellow); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.checkout-pickup h1 { margin: 5px 0 0; font: 500 clamp(2rem, 5vw, 3.7rem)/1 var(--font-display); }
.checkout-pickup > strong { display: block; font-size: 1.5rem; }
.text-button { position: absolute; top: 24px; right: 24px; padding: 0; color: inherit; background: none; border: 0; text-decoration: underline; font-weight: 800; cursor: pointer; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 30px; margin-top: 32px; align-items: start; }
.checkout-form { padding: 24px; background: var(--paper); border: 3px solid var(--ink); }
.checkout-form fieldset { display: grid; gap: 14px; margin: 0 0 28px; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 13px; font: 500 1.35rem/1 var(--font-display); }
.checkout-form label:not(.tip-choice) { display: grid; gap: 5px; font-size: .82rem; font-weight: 800; }
.field-label { display: flex; align-items: baseline; gap: .35rem; }
.field-status { color: #666; font: 400 .76rem/1 var(--font-display); }
.field-status-required { color: var(--red); }
.checkout-form input:not([type=radio]):not([type=checkbox]), .checkout-form textarea { width: 100%; padding: 12px; background: white; border: 2px solid var(--ink); border-radius: 0; }
.checkout-form .remember-contact { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 2px; cursor: pointer; }
.remember-contact input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.remember-contact > span { display: grid; gap: 2px; }
.remember-contact small { color: #666; font: 400 .76rem/1.25 var(--font-display); }
.tip-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.tip-choice { position: relative; }
.tip-choice input { position: absolute; opacity: 0; }
.tip-choice span { display: grid; place-items: center; min-height: 48px; background: white; border: 2px solid var(--ink); font-weight: 800; cursor: pointer; }
.tip-choice input:checked + span { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.custom-tip { max-width: 260px; margin-top: 12px; }
.money-input { display: grid; grid-template-columns: auto 1fr; align-items: center; background: white; border: 2px solid var(--ink); }
.money-input > span { padding-left: 12px; font-size: 1rem; }
.money-input input { border: 0 !important; }
.code-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.code-row .button { min-height: 46px; }
.field-note { min-height: 1.2em; margin: -5px 0 0; color: #555; font-size: .8rem; }
.field-note-error { color: var(--red); font-weight: 800; }
.payment-placeholder { display: grid; gap: 3px; padding: 18px; background: #f3f0df; border: 2px dashed var(--ink); }
.payment-placeholder span { color: #555; font-size: .85rem; }
.payment-options { display: grid; gap: 10px; }
.payment-choice { position: relative; display: grid !important; grid-template-columns: auto 1fr; gap: 11px !important; align-items: start; padding: 15px; background: white; border: 2px solid var(--ink); cursor: pointer; }
.payment-choice input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--green); }
.payment-choice > span { display: grid; gap: 4px; }
.payment-choice small { color: #555; font-size: .78rem; font-weight: 400; line-height: 1.35; }
.payment-choice:has(input:checked) { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.square-card { min-height: 90px; padding: 13px; background: white; border: 2px solid var(--ink); }
.demo-notice { display: grid; gap: 2px; margin-bottom: 25px; padding: 13px; background: var(--lavender); border: 2px solid var(--ink); }
.demo-notice span { font-size: .85rem; }
.order-summary { position: sticky; top: 98px; padding: 22px; background: var(--blue); color: var(--paper); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.order-summary h2 { margin: 3px 0 18px; font: 500 1.8rem/1 var(--font-display); }
.summary-line { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.summary-line > div { display: grid; }
.summary-line span { font-size: .85rem; }
.summary-line .line-actions { display: flex; margin-top: 10px; }
.line-actions-light .line-quantity { color: var(--paper); }
.line-actions-light .remove-line { color: var(--yellow); }
.summary-totals { display: grid; gap: 8px; padding-top: 18px; }
.summary-totals > div { display: flex; justify-content: space-between; gap: 15px; }
.summary-totals small { font-size: .72rem; font-weight: 400; opacity: .8; }
.summary-grand-total { margin-top: 7px; padding-top: 14px; border-top: 2px solid rgba(255,255,255,.7); font-size: 1.18rem; }
.checkout-error { margin: 0 0 22px; }
.checkout-submit { gap: 5px; }
.order-summary > p { margin-bottom: 0; font-size: .78rem; opacity: .8; }

.confirmation-shell { width: min(680px, calc(100% - 32px)); margin: 70px auto; padding: clamp(26px, 6vw, 55px); text-align: center; background: var(--paper); border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.confirmation-mark { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 17px; color: var(--paper); background: var(--green); border: 3px solid var(--ink); border-radius: 50%; font-size: 2rem; }
.confirmation-shell h1 { margin: 7px 0 12px; font: 500 clamp(2.3rem, 7vw, 4.2rem)/1 var(--font-display); }
.confirmation-time { font-size: 1.12rem; }
.confirmation-details { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px; margin: 28px 0; padding: 18px; text-align: left; background: var(--yellow); border: 2px solid var(--ink); }
.confirmation-details strong { text-align: right; }
.payment-pending-shell { text-align: left; }
.payment-pending-shell h1 { max-width: 560px; }
.pending-actions { display: grid; gap: 14px; margin-top: 28px; }
.pending-actions .button { width: 100%; }
.pending-actions form { text-align: center; }
.pending-actions form .text-button { position: static; }

.gift-payment-shell { width: min(680px, calc(100% - 32px)); margin: 42px auto 80px; }
.gift-payment-card { padding: clamp(22px, 5vw, 40px); background: var(--paper); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.gift-payment-card h1 { margin: 6px 0 10px; font: 500 clamp(2.3rem, 7vw, 4rem)/1 var(--font-display); }
.gift-payment-card h2 { margin: 28px 0 8px; font: 500 1.65rem/1.1 var(--font-display); }
.gift-balance { display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; margin: 26px 0; padding: 17px; background: var(--yellow); border: 2px solid var(--ink); }
.gift-balance strong { text-align: right; }
.square-payment-element { min-height: 58px; margin: 15px 0 12px; padding: 12px; background: white; border: 2px solid var(--ink); }
.payment-status { min-height: 1.4em; font-weight: 800; }
.gift-payment-error { margin: 12px 0; }
.gift-payment-notes { margin-top: 26px; padding-top: 17px; border-top: 1px solid var(--line); color: #555; font-size: .8rem; }
.gift-payment-notes p { margin: 0 0 7px; }

.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; }
[hidden] { display: none !important; }

@media (max-width: 900px) {
  .layout-grid, .checkout-grid { grid-template-columns: 1fr; }
  .cart-card, .order-summary { position: static; }
  .cart-card, .order-summary { order: -1; }
}

@media (max-width: 650px) {
  .site-header { min-height: 62px; }
  .header-meta > span { display: none; }
  .store-shell { width: min(100% - 22px, 1180px); margin-top: 16px; }
  .pickup-banner { align-items: stretch; flex-direction: column; gap: 14px; padding: 16px; box-shadow: 4px 4px 0 var(--ink); }
  .pickup-banner .button { width: 100%; }
  .layout-grid { margin-top: 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid { gap: 28px; }
  .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .date-row { grid-template-columns: repeat(4, 98px); }
  .text-button { position: static; display: inline-block; margin-top: 14px; }
  .tip-row { grid-template-columns: repeat(2, 1fr); }
  .placement-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .square-modifier-options { grid-template-columns: 1fr; }
  .checkout-form { padding: 18px; }
  .confirmation-details { grid-template-columns: 1fr; text-align: center; }
  .confirmation-details strong { margin-bottom: 8px; text-align: center; }
}
