@font-face {
  font-family: "Gainsborough";
  src: url("assets/fonnts.com-gainsborough-sans.otf") format("opentype");
  font-display: swap;
}

:root {
  --paper: #f6f0e2;
  --paper-deep: #e9dfcb;
  --white: #fffdf7;
  --ink: #130e09;
  --orange: #f27019;
  --orange-dark: #c94d08;
  --blue: #13a9d2;
  --mp-blue: #009ee3;
  --green: #198754;
  --red: #c33124;
  --line: rgba(19, 14, 9, .18);
  --display: "Gainsborough", Impact, "Arial Narrow", sans-serif;
  --body: Inter, "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 7px 7px 0 var(--ink);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper-deep);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(19, 14, 9, .025) 1px, transparent 1px),
    linear-gradient(rgba(19, 14, 9, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

button, input, textarea { font: inherit; }
button, a, input, textarea { border-radius: 0; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.demo-strip {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
}
.demo-strip strong { color: var(--orange); }

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 28px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 28px;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, .85fr);
  gap: 36px;
  min-height: 430px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--orange);
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  right: clamp(12px, 4vw, 44px);
  bottom: -48px;
  width: clamp(210px, 34vw, 390px);
  aspect-ratio: 418 / 439;
  background: url("assets/ruffo-r.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: .72;
  pointer-events: none;
}
.hero__copy { position: relative; z-index: 2; align-self: center; }
.hero__stamp {
  display: inline-block;
  padding: 7px 10px 5px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}
.hero__eyebrow {
  margin: 32px 0 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
}
.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.025em;
}
.hero__copy > p:last-child {
  max-width: 48ch;
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}
.hero__steps {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 8px;
  padding-bottom: 10px;
}
.hero__steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: rgba(246, 240, 226, .92);
  font-size: 13px;
  font-weight: 850;
}
.hero__steps b {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--ink);
  font-variant-numeric: tabular-nums;
}

.category-nav {
  position: sticky;
  z-index: 30;
  top: 33px;
  display: flex;
  gap: 6px;
  margin: 24px 0;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.category-nav a:hover, .category-nav a:focus-visible { color: var(--white); background: var(--ink); }

.service-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  background: var(--white);
}
.service-note__dot {
  width: 14px;
  aspect-ratio: 1;
  background: var(--green);
  box-shadow: 3px 3px 0 var(--ink);
}
.service-note strong { font-size: 12px; letter-spacing: .1em; }
.service-note p { margin: 3px 0 0; font-size: 13px; font-weight: 650; }

.menu-sections { display: grid; gap: 18px; }
.menu-section {
  padding: clamp(22px, 4vw, 38px);
  scroll-margin-top: 100px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.menu-section--orange { background: var(--orange); }
.menu-section--blue { background: var(--blue); }
.menu-section--dark { color: var(--white); background: var(--ink); box-shadow: 7px 7px 0 var(--orange); }
.menu-section__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.menu-section__heading > div > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
}
.menu-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: .82;
}
.menu-section__number {
  font-size: 15px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}
.product-list { border-top: 2px solid currentColor; }
.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
}
.product:last-child { border-bottom: 0; }
.product h3 { margin: 0; font-size: 17px; line-height: 1.15; }
.product p { max-width: 55ch; margin: 7px 0 0; font-size: 13px; font-weight: 600; line-height: 1.4; }
.product__action {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 112px;
}
.product__action strong { color: var(--orange-dark); font-size: 17px; white-space: nowrap; }
.menu-section--orange .product__action strong, .menu-section--blue .product__action strong { color: var(--ink); }
.menu-section--dark .product__action strong { color: var(--orange); }
.add-button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}
.menu-section--dark .add-button { color: var(--ink); background: var(--orange); }
.add-button:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 currentColor; }
.add-button.is-added { color: var(--ink); background: var(--blue); }

.cart-panel {
  position: sticky;
  top: 61px;
  align-self: start;
  display: grid;
  max-height: calc(100vh - 89px);
  padding: 24px;
  overflow: auto;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.cart-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.cart-panel__head span { font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.cart-panel__head h2 { margin: 4px 0 0; font-family: var(--display); font-size: 42px; font-weight: 400; line-height: .85; }
.cart-count {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  font-size: 16px !important;
  font-variant-numeric: tabular-nums;
}
.cart-empty { display: grid; place-items: center; min-height: 230px; padding: 24px; text-align: center; }
.cart-empty span { font-family: var(--display); font-size: 70px; line-height: 1; }
.cart-empty p { max-width: 20ch; margin: 8px 0 0; font-size: 14px; font-weight: 650; line-height: 1.4; }
.cart-items, .checkout-items { display: grid; }
.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__name { margin: 0; font-size: 13px; font-weight: 850; }
.cart-line__price { display: block; margin-top: 4px; color: var(--orange-dark); font-size: 13px; font-weight: 850; }
.quantity-control { display: flex; align-items: center; align-self: center; border: 1px solid var(--ink); }
.quantity-control button { width: 32px; height: 32px; padding: 0; border: 0; background: transparent; font-size: 18px; font-weight: 900; cursor: pointer; }
.quantity-control button:hover { color: var(--white); background: var(--ink); }
.quantity-control span { min-width: 28px; text-align: center; font-size: 13px; font-weight: 900; }
.cart-panel__total, .checkout-total, .payment-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 0;
  border-top: 2px solid var(--ink);
}
.cart-panel__total span, .checkout-total span, .payment-summary span { font-size: 12px; font-weight: 950; letter-spacing: .1em; }
.cart-panel__total strong, .checkout-total strong, .payment-summary strong { font-size: 26px; font-variant-numeric: tabular-nums; }
.cart-panel > small { margin-top: 10px; font-size: 11px; font-weight: 650; text-align: center; }

.primary-button, .secondary-button, .mp-button {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  cursor: pointer;
}
.primary-button { color: var(--white); background: var(--ink); box-shadow: 4px 4px 0 var(--orange); }
.primary-button:hover:not(:disabled) { color: var(--ink); background: var(--orange); box-shadow: 4px 4px 0 var(--ink); }
.primary-button:disabled { opacity: .42; cursor: not-allowed; box-shadow: none; }
.secondary-button { color: var(--ink); background: var(--paper); box-shadow: 4px 4px 0 var(--ink); }
.secondary-button:hover { background: var(--orange); }

.mobile-cart { display: none; }

.order-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--orange);
}
.order-dialog::backdrop { background: rgba(19, 14, 9, .78); backdrop-filter: blur(2px); }
.dialog-shell { position: relative; display: grid; grid-template-rows: auto auto minmax(0, 1fr); max-height: calc(100dvh - 36px); }
.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--ink);
}
.dialog-header__eyebrow { font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.dialog-header h2 { margin: 5px 0 0; font-family: var(--display); font-size: 38px; font-weight: 400; line-height: .86; }
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  font-size: 27px;
  cursor: pointer;
}
.icon-button:hover { color: var(--ink); background: var(--white); }
.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 12px 18px;
  border-bottom: 1px solid var(--ink);
  list-style: none;
}
.checkout-progress li { display: flex; align-items: center; gap: 6px; color: #5f574d; font-size: 11px; font-weight: 850; }
.checkout-progress span { display: grid; place-items: center; width: 22px; aspect-ratio: 1; border: 1px solid currentColor; font-size: 10px; }
.checkout-progress li.is-current, .checkout-progress li.is-done { color: var(--ink); }
.checkout-progress li.is-current span { color: var(--white); background: var(--ink); }
.checkout-progress li.is-done span { color: var(--ink); background: var(--orange); }
.dialog-content { min-height: 0; overflow-y: auto; }
.checkout-view { display: none; padding: 24px; }
.checkout-view.is-active { display: block; animation: enter .22s ease both; }
.checkout-view > h3 { margin: 0 0 18px; font-family: var(--display); font-size: 42px; font-weight: 400; line-height: .88; }
.view-intro { margin: -6px 0 22px; font-size: 14px; font-weight: 650; line-height: 1.45; }
.checkout-items .cart-line { padding: 12px 0; }
.back-button { margin: 0 0 18px; padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 11px; font-weight: 950; cursor: pointer; }
.back-button:hover { color: var(--orange-dark); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > span { font-size: 11px; font-weight: 950; letter-spacing: .08em; }
.field > span b { color: var(--orange-dark); }
.field > span small { font-weight: 750; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  resize: vertical;
}
.field input[aria-invalid="true"] { border-color: var(--red); }
.field-error { min-height: 16px; color: var(--red); font-size: 12px; font-weight: 750; }
.notify-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  cursor: pointer;
}
.notify-option input { width: 22px; height: 22px; margin: 0; accent-color: var(--ink); }
.notify-option strong, .notify-option small { display: block; }
.notify-option strong { font-size: 12px; }
.notify-option small { margin-top: 4px; font-size: 12px; font-weight: 600; line-height: 1.35; }
.pickup-card { display: grid; gap: 4px; margin-bottom: 20px; padding: 16px; border: 2px solid var(--ink); background: var(--orange); }
.pickup-card span { font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.pickup-card strong { font-size: 18px; }
.pickup-card small { font-size: 12px; font-weight: 700; }

.mp-head { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.mp-head__mark { display: grid; place-items: center; width: 54px; aspect-ratio: 1; color: var(--white); background: var(--mp-blue); font-size: 15px; font-weight: 950; }
.mp-head small { display: block; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.mp-head h3 { margin: 2px 0 0; font-size: 22px; line-height: 1; }
.demo-badge { padding: 6px 8px; border: 1px solid var(--ink); color: var(--ink); background: var(--orange); font-size: 10px; font-weight: 950; }
.payment-warning { margin: 20px 0; padding: 12px; border: 1px solid var(--ink); background: #fff2c2; font-size: 12px; line-height: 1.4; }
.payment-methods { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.payment-methods legend { margin-bottom: 10px; font-size: 11px; font-weight: 950; letter-spacing: .08em; }
.payment-methods label { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--ink); background: var(--white); cursor: pointer; }
.payment-methods label:has(input:checked) { border-width: 2px; box-shadow: 4px 4px 0 var(--mp-blue); }
.payment-methods input { width: 20px; height: 20px; accent-color: var(--mp-blue); }
.payment-methods strong, .payment-methods small { display: block; }
.payment-methods strong { font-size: 13px; }
.payment-methods small { margin-top: 3px; font-size: 11px; font-weight: 600; }
.payment-methods label > b { font-size: 11px; }
.mp-button { border-color: var(--mp-blue); color: var(--white); background: var(--mp-blue); box-shadow: 4px 4px 0 var(--ink); }
.mp-button:hover { color: var(--ink); background: var(--white); }
.secure-note { margin: 14px auto 0; max-width: 55ch; font-size: 10px; font-weight: 650; line-height: 1.4; text-align: center; }

.processing {
  position: absolute;
  z-index: 10;
  inset: 0;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--white);
  background: rgba(19, 14, 9, .96);
  text-align: center;
}
.processing:not([hidden]) { display: grid; }
.processing strong { font-size: 14px; letter-spacing: .08em; }
.processing small { font-size: 12px; }
.spinner { width: 52px; aspect-ratio: 1; border: 6px solid rgba(255,255,255,.22); border-top-color: var(--orange); animation: spin .8s linear infinite; }

.success-mark { display: grid; place-items: center; width: 68px; aspect-ratio: 1; margin-bottom: 18px; color: var(--white); background: var(--green); box-shadow: 5px 5px 0 var(--ink); font-size: 34px; font-weight: 950; }
.tracking-kicker { margin: 0 0 6px; color: var(--green); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.checkout-view[data-view="tracking"] > p:not(.tracking-kicker) { margin: 0 0 18px; font-size: 14px; line-height: 1.45; }
.order-number { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 20px 0; padding: 16px; border: 2px solid var(--ink); background: var(--orange); }
.order-number span { font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.order-number strong { font-size: 24px; font-variant-numeric: tabular-nums; }
.status-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.status-list li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 12px; min-height: 72px; color: #665d52; }
.status-list li::before { content: ""; position: absolute; left: 20px; top: 42px; bottom: 0; width: 2px; background: var(--line); }
.status-list li:last-child::before { display: none; }
.status-list li > span { display: grid; place-items: center; align-self: start; width: 42px; aspect-ratio: 1; border: 2px solid currentColor; background: var(--paper); font-size: 13px; font-weight: 950; }
.status-list strong, .status-list small { display: block; }
.status-list strong { padding-top: 3px; font-size: 14px; }
.status-list small { margin-top: 4px; font-size: 11px; font-weight: 650; }
.status-list li.is-done, .status-list li.is-current { color: var(--ink); }
.status-list li.is-done > span { color: var(--white); border-color: var(--green); background: var(--green); }
.status-list li.is-current > span { color: var(--ink); border-color: var(--orange); background: var(--orange); box-shadow: 3px 3px 0 var(--ink); }
.demo-control { margin-top: 20px; padding: 16px; border: 1px dashed var(--ink); }
.demo-control > span { font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.demo-control p { margin: 5px 0 14px; font-size: 12px; font-weight: 650; }
.is-hidden { display: none !important; }

.ready-toast {
  position: absolute;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(430px, calc(100% - 32px));
  padding: 16px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--orange);
  box-shadow: 8px 8px 0 var(--ink);
  animation: toastIn .3s ease both;
}
.ready-toast[hidden] { display: none; }
.ready-toast__icon { display: grid; place-items: center; width: 46px; aspect-ratio: 1; color: var(--white); background: var(--green); font-size: 24px; font-weight: 950; }
.ready-toast strong { font-size: 14px; }
.ready-toast p { margin: 3px 0 0; font-size: 12px; font-weight: 700; }
.ready-toast button { width: 36px; height: 36px; padding: 0; border: 1px solid var(--ink); background: transparent; font-size: 22px; cursor: pointer; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 4px 90px; font-size: 11px; font-weight: 850; }
.site-footer a { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.site-footer a span { font-size: 9px; letter-spacing: .1em; }
.site-footer img { width: 110px; height: 28px; object-fit: contain; filter: brightness(0); }

@keyframes enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  .page-shell { display: block; padding: 20px; }
  .cart-panel { display: none; }
  .mobile-cart {
    position: fixed;
    z-index: 45;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 14px 18px;
    border: 2px solid var(--ink);
    color: var(--white);
    background: var(--ink);
    box-shadow: 6px 6px 0 var(--orange);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }
  .mobile-cart:disabled { opacity: 0; pointer-events: none; transform: translateY(120%); }
  .mobile-cart b { display: inline-grid; place-items: center; width: 27px; aspect-ratio: 1; margin-right: 8px; color: var(--ink); background: var(--orange); font-variant-numeric: tabular-nums; }
  .mobile-cart strong { font-size: 17px; }
}

@media (max-width: 680px) {
  .demo-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .page-shell { padding: 12px 12px 92px; }
  .hero { grid-template-columns: 1fr; gap: 28px; min-height: 620px; padding: 28px 22px; box-shadow: 5px 5px 0 var(--ink); }
  .hero::after { right: -36px; bottom: 72px; width: 270px; opacity: .6; }
  .hero__copy { align-self: start; }
  .hero h1 { font-size: clamp(49px, 16vw, 72px); }
  .hero__copy > p:last-child { max-width: 26ch; font-size: 14px; }
  .hero__steps { width: min(100%, 270px); }
  .category-nav { top: 32px; margin: 18px 0; }
  .menu-section { padding: 22px 18px; box-shadow: 5px 5px 0 var(--ink); }
  .menu-section--dark { box-shadow: 5px 5px 0 var(--orange); }
  .menu-section h2 { font-size: 48px; }
  .product { grid-template-columns: 1fr; gap: 12px; }
  .product__action { display: flex; align-items: center; justify-content: space-between; justify-items: auto; }
  .add-button { min-height: 44px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .order-dialog { width: 100%; max-width: none; height: 100dvh; max-height: none; border: 0; box-shadow: none; }
  .dialog-shell { height: 100dvh; max-height: none; }
  .dialog-header { padding: 16px; }
  .dialog-header h2 { font-size: 32px; }
  .checkout-progress { padding: 10px 12px; }
  .checkout-progress li { justify-content: center; font-size: 0; }
  .checkout-progress span { width: 28px; font-size: 11px; }
  .checkout-view { padding: 20px 16px calc(26px + env(safe-area-inset-bottom)); }
  .checkout-view > h3 { font-size: 38px; }
  .access__credentials { grid-template-columns: 1fr; }
  .ready-toast { right: 16px; bottom: calc(82px + env(safe-area-inset-bottom)); left: 16px; width: auto; }
}

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