:root {
  color-scheme: light;
  --font-section: "Cinzel", "Times New Roman", Georgia, serif;
  --font-body: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-script: "Allura", "Brush Script MT", cursive;
  --font-label: "Montserrat", Arial, Helvetica, sans-serif;
  --paper: #fbf7ef;
  --paper-warm: #f5ede2;
  --ink: #201008;
  --brown: #8b552f;
  --brown-dark: #2a160c;
  --rose: #b95569;
  --rose-soft: #d8a092;
  --line: #dec4ae;
  --cream: #fffaf2;
  --blue: #1d5fd1;
  --blue-dark: #164da8;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(245, 237, 226, 0.96)),
    #eadfd0;
  color: var(--ink);
  font-family: var(--font-body);
}

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.order-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 6px clamp(14px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.96);
  backdrop-filter: blur(12px);
}

.brand-link {
  width: 128px;
  height: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 0;
  overflow: hidden;
}

.brand-link img {
  width: 128px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.menu-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-float-button {
  position: fixed;
  top: 72px;
  right: 18px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: #FF746C;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 116, 108, 0.26);
}

.cart-float-button svg {
  width: 25px;
  height: 25px;
}

.cart-float-button:focus-visible {
  outline: 3px solid rgba(255, 116, 108, 0.36);
  outline-offset: 3px;
}

.cart-float-count {
  position: absolute;
  top: -8px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.order-shell {
  width: min(100%, 1140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin: 0 auto;
  padding: 22px clamp(14px, 3vw, 30px) 36px;
}

.order-main,
.cart-panel {
  min-width: 0;
}

.order-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-section);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

#order-title {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
}

.pickup-note {
  max-width: 240px;
  margin: 0;
  color: rgba(32, 16, 8, 0.76);
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.preorder-note {
  max-width: 660px;
  margin: 8px 0 0;
  color: rgba(32, 16, 8, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.preorder-note p {
  margin: 0;
}

.preorder-note p + p {
  margin-top: 8px;
}

.status-message {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 85, 105, 0.35);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--brown-dark);
  font-size: 14px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.category-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.category-tabs button[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

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

.product-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 0;
  padding: 12px;
  border: 1px solid rgba(222, 196, 174, 0.95);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 6px 16px rgba(67, 38, 20, 0.06);
}

.product-copy {
  min-height: 96px;
}

.product-category {
  margin: 0 0 5px;
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 0 0 5px;
  color: var(--brown-dark);
  font-family: var(--font-section);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.product-description {
  margin: 0;
  color: rgba(32, 16, 8, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.product-card label {
  display: grid;
  gap: 4px;
}

.product-card label span {
  color: rgba(32, 16, 8, 0.78);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.product-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: end;
  gap: 8px;
}

.choice-field {
  grid-column: 1 / -1;
}

.variation-field {
  min-width: 0;
}

.product-controls.is-single-choice .choice-field {
  display: none;
}

.product-controls.is-assorted {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
}

.added-feedback {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(29, 95, 209, 0.18);
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 18px rgba(29, 95, 209, 0.22);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

.added-feedback.is-visible {
  animation: added-feedback-in 1.15s ease both;
}

@keyframes added-feedback-in {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  18%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3px);
  }
}

.variation-select,
.choice-select,
.add-on-select,
.assorted-pack-select,
.assorted-quantity-select,
.quantity-select {
  appearance: none;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 32px 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(45deg, transparent 50%, var(--rose) 50%) calc(100% - 16px) 50% / 5px 5px no-repeat,
    linear-gradient(135deg, var(--rose) 50%, transparent 50%) calc(100% - 12px) 50% / 5px 5px no-repeat,
    #fff;
  color: var(--ink);
  font-size: 14px;
}

.variation-select,
.choice-select,
.add-on-select,
.quantity-select {
  font-size: 13px;
}

.variation-select:focus,
.choice-select:focus,
.add-on-select:focus,
.assorted-pack-select:focus,
.assorted-quantity-select:focus,
.quantity-select:focus {
  outline: 2px solid rgba(29, 95, 209, 0.24);
  outline-offset: 1px;
}

.add-button {
  width: 64px;
  height: 56px;
  min-width: 64px;
  min-height: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.add-button small {
  max-width: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.add-button span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(29, 95, 209, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.product-controls > .add-button {
  align-self: end;
  justify-self: center;
}

.product-controls.has-quantity {
  grid-template-columns: minmax(0, 1fr) 76px 64px;
}

.product-controls.has-quantity .choice-field {
  grid-column: 1 / -1;
}

.variation-field.is-static {
  min-width: 0;
}

.variation-summary {
  min-height: 36px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 9px;
  border: 1px solid rgba(222, 196, 174, 0.95);
  border-radius: 5px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.product-card label .variation-summary {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.quantity-field {
  min-width: 0;
}

.quantity-select {
  text-align: center;
}

.add-on-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 8px;
}

.assorted-pack-row {
  display: grid;
  grid-template-columns: minmax(132px, 158px) 64px;
  justify-content: start;
  align-items: end;
  gap: 8px;
}

.assorted-options-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  align-items: end;
  gap: 8px;
}

.assorted-flavor-label,
.assorted-quantity-label {
  margin: 2px 0 0;
  color: rgba(32, 16, 8, 0.78);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.assorted-quantity-label {
  text-align: center;
}

.assorted-summary {
  margin: 2px 0 0;
  color: var(--brown-dark);
  font-size: 17px;
  font-style: italic;
  line-height: 1.2;
}

.assorted-options {
  display: grid;
  gap: 6px;
}

.assorted-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  align-items: end;
  gap: 8px;
  padding-top: 7px;
  border-top: 1px dotted rgba(216, 160, 146, 0.7);
}

.assorted-option-name {
  color: var(--brown-dark);
  font-size: 13px;
  line-height: 1.25;
}

.assorted-option-name strong,
.assorted-option-name span {
  display: block;
}

.assorted-option-name span {
  color: rgba(32, 16, 8, 0.64);
  font-size: 11px;
  font-style: italic;
}

.checkout-button {
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.add-button:hover span,
.checkout-button:hover {
  background: var(--blue-dark);
}

.cart-float-button:hover {
  background: #e8615a;
}

.add-button:focus-visible {
  outline: 2px solid rgba(29, 95, 209, 0.34);
  outline-offset: 3px;
}

.add-button:disabled,
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cart-panel {
  align-self: start;
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 14px 34px rgba(67, 38, 20, 0.12);
}

.cart-header,
.cart-total-row,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  color: var(--rose);
  font-family: var(--font-section);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-count {
  color: rgba(32, 16, 8, 0.7);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 86px;
  padding: 14px 0;
}

.cart-empty {
  margin: 0;
  color: rgba(32, 16, 8, 0.65);
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.cart-line {
  align-items: start;
}

.cart-line strong {
  display: block;
  color: var(--brown-dark);
  font-size: 14px;
  line-height: 1.25;
}

.cart-line span {
  display: block;
  margin-top: 3px;
  color: rgba(32, 16, 8, 0.68);
  font-size: 12px;
  line-height: 1.3;
}

.remove-button {
  flex: 0 0 auto;
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.fulfillment-field {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.fulfillment-field legend {
  grid-column: 1 / -1;
  margin: 0 0 7px;
  color: rgba(32, 16, 8, 0.78);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.fulfillment-field label {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.fulfillment-field label:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.fulfillment-field input {
  width: 14px;
  height: 14px;
  accent-color: var(--blue);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-total-row {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.cart-total-row strong {
  font-size: 18px;
}

.checkout-button {
  width: 100%;
}

.turnstile-widget {
  min-height: 0;
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}

.turnstile-widget:empty {
  display: none;
}

.cart-footnote {
  margin: 10px 0 0;
  color: rgba(32, 16, 8, 0.66);
  font-size: 12px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.order-footer {
  width: min(100%, 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 34px) 28px;
}

.order-footer a,
.order-footer span {
  color: rgba(32, 16, 8, 0.42);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.order-footer a:hover {
  color: rgba(32, 16, 8, 0.72);
}

.confirmation-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 30px clamp(14px, 3vw, 34px) 36px;
}

.confirmation-hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(20px, 4vw, 34px) 0 26px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.confirmation-mark {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(29, 95, 209, 0.16);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 26px rgba(29, 95, 209, 0.18);
}

.confirmation-mark svg {
  width: 34px;
  height: 34px;
}

.confirmation-lede {
  max-width: 660px;
  margin: 0;
  color: rgba(32, 16, 8, 0.76);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.confirmation-details {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 20px;
}

.confirmation-summary,
.confirmation-items-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 26px rgba(67, 38, 20, 0.08);
}

.confirmation-summary h2,
.confirmation-items-panel h2 {
  margin: 0;
  color: var(--rose);
  font-family: var(--font-section);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.confirmation-meta {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.confirmation-meta div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(216, 160, 146, 0.72);
}

.confirmation-meta div:last-child {
  border-bottom: 0;
}

.confirmation-meta dt {
  color: rgba(32, 16, 8, 0.64);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.confirmation-meta dd {
  margin: 0;
  color: var(--brown-dark);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.confirmation-note,
.confirmation-total-note,
.confirmation-empty {
  margin: 16px 0 0;
  color: rgba(32, 16, 8, 0.7);
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
}

.confirmation-items-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.confirmation-items-heading strong {
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

.confirmation-items {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.confirmation-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(216, 160, 146, 0.72);
}

.confirmation-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.confirmation-item strong {
  color: var(--brown-dark);
  font-size: 14px;
  line-height: 1.3;
}

.confirmation-item > strong {
  font-family: var(--font-label);
  font-size: 13px;
  white-space: nowrap;
}

.confirmation-item span {
  display: block;
  margin-top: 3px;
  color: rgba(32, 16, 8, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.confirmation-totals {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.confirmation-total-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(32, 16, 8, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.confirmation-total-row strong {
  color: var(--brown-dark);
  font-family: var(--font-label);
  white-space: nowrap;
}

.confirmation-total-row.final {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dotted rgba(216, 160, 146, 0.72);
  color: var(--brown-dark);
  font-weight: 700;
}

.confirmation-receipt-link {
  width: fit-content;
  margin-top: 6px;
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.confirmation-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.confirmation-button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.confirmation-button:hover {
  border-color: var(--blue-dark);
}

.confirmation-button.primary:hover {
  background: var(--blue-dark);
}

@media (min-width: 1100px) {
  .cart-panel {
    position: fixed;
    top: 84px;
    right: max(clamp(14px, 3vw, 30px), calc((100vw - 1140px) / 2 + 30px));
    z-index: 8;
    width: 320px;
    max-height: calc(100vh - 104px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 4px;
  }
}

@media (max-width: 1099px) {
  .order-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .confirmation-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .order-header {
    min-height: 54px;
    padding: 5px 12px;
  }

  .cart-float-button {
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .brand-link {
    width: 112px;
    height: 40px;
  }

  .brand-link img {
    width: 112px;
    max-height: 40px;
  }

  .order-shell {
    width: 100%;
    max-width: 100%;
    padding: 18px 14px 32px;
    overflow-x: hidden;
  }

  .order-main,
  .product-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .order-title-row {
    display: grid;
    gap: 10px;
  }

  .pickup-note {
    max-width: none;
    text-align: left;
  }

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

  .product-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card h2,
  .product-description {
    overflow-wrap: anywhere;
  }

  .variation-select,
  .choice-select,
  .add-on-select,
  .quantity-select {
    max-width: 100%;
    font-size: 14px;
  }

  .assorted-pack-select,
  .assorted-quantity-select {
    max-width: 100%;
    font-size: 15px;
  }

  .product-controls {
    grid-template-columns: minmax(0, min(252px, calc(100% - 78px))) 64px;
    justify-content: space-between;
  }

  .product-controls.has-quantity {
    grid-template-columns: minmax(0, 1fr) 72px 64px;
  }

  .assorted-pack-row {
    grid-template-columns: minmax(132px, 158px) 64px;
  }

  .add-button {
    width: 64px;
    height: 58px;
    min-width: 64px;
    min-height: 58px;
    justify-self: center;
  }

  .add-on-fields {
    grid-template-columns: 1fr;
  }

  .order-footer {
    width: 100vw;
    max-width: 100vw;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 0 14px 24px;
    text-align: center;
  }

  .confirmation-shell {
    width: 100%;
    max-width: 100%;
    padding: 22px 14px 32px;
    overflow-x: hidden;
  }

  .confirmation-hero {
    padding-top: 16px;
  }

  .confirmation-summary,
  .confirmation-items-panel {
    padding: 15px;
  }

  .confirmation-items-heading {
    align-items: start;
  }

  .confirmation-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .confirmation-item > strong {
    justify-self: start;
  }

  .confirmation-actions {
    display: grid;
  }
}
