/* ============================================================
   ROLLING RYNO SHOP
   Palette and type derived from the MCL portal (mcl-portal
   styles.css) — same brand, retail-front presentation.
   ============================================================ */

:root {
  --bg-deepest: #15140e;
  --bg-base: #1e1c14;
  --bg-card: #25231a;
  --bg-card-hover: #2c2a20;
  --bg-card-elevated: #2f2d22;

  --od: #6b6f3a;
  --od-light: #8e9352;
  --od-dark: #4a4d27;
  --scarlet: #c8102e;
  --scarlet-dark: #8a0a1f;
  --gold: #b8860b;
  --gold-light: #d4a429;

  --text-cream: #f0e6d2;
  --text-base: #d8cdb4;
  --text-muted: #8e8770;
  --text-faint: #5e5a48;

  --border-thin: #3d3a2c;
  --border-strong: #5e5a48;
  --border-accent: var(--gold);

  --success: #7a9b3a;
  --warning: #d49325;
  --danger: var(--scarlet);

  --font-stencil: "Saira Stencil One", "Impact", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-base);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
}

body {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(ellipse at top, #2a2718 0%, var(--bg-base) 60%);
}

a {
  color: var(--gold-light);
  text-decoration: none;
}
a:hover {
  color: var(--text-cream);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg-deepest);
  border-bottom: 1px solid var(--border-thin);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-line-1 {
  font-family: var(--font-stencil);
  font-size: 20px;
  color: var(--text-cream);
  letter-spacing: 2px;
  line-height: 1.1;
}

.brand-line-2 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 3px;
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 9px 14px;
  user-select: none;
}

.cart-icon {
  color: var(--gold-light);
}

.cart-count {
  min-width: 20px;
  text-align: center;
  background: var(--scarlet);
  color: #fff;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
}

/* ============================================================
   NOTICE BAR (ship-date etc.)
   ============================================================ */
.notice-bar {
  background: var(--gold);
  color: #1a1810;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 8px 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  border-bottom: 1px solid var(--border-thin);
  background: linear-gradient(180deg, var(--bg-deepest) 0%, transparent 100%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-photo {
  flex: 0 0 auto;
}

.hero-photo img {
  display: block;
  width: min(360px, 34vw);
  height: auto;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-stencil);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text-cream);
  letter-spacing: 2px;
  line-height: 1.05;
}

.hero-note {
  margin-top: 10px;
  max-width: 560px;
  color: var(--text-muted);
}

.vet-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 9px 16px;
  border: 1px solid var(--gold-light);
  background: linear-gradient(
    90deg,
    rgba(212, 164, 41, 0.14),
    rgba(212, 164, 41, 0.05)
  );
  box-shadow: inset 0 0 0 3px var(--bg-deepest);
  outline: 1px solid var(--gold-dark, #8a6508);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-align: center;
}

.vet-badge .vb-star {
  color: var(--scarlet);
  font-size: 11px;
}

/* ============================================================
   CATALOG GRID
   ============================================================ */
.catalog {
  padding: 28px 0 80px;
}

.catalog-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.loading {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 60px 0;
}

.loading.error {
  color: var(--warning);
}

.retry-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 9px 18px;
  cursor: pointer;
}

.retry-btn:hover {
  border-color: var(--gold);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.pc-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-deepest);
  border-bottom: 1px solid var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pc-image .placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

.product-card.sold-out .pc-image img {
  filter: grayscale(1);
  opacity: 0.45;
}

.soldout-banner {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(21, 20, 14, 0.92);
  border-top: 1px solid var(--scarlet);
  color: var(--scarlet);
  font-family: var(--font-stencil);
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  padding: 10px 0;
}

.pc-body {
  padding: 14px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pc-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-cream);
  line-height: 1.25;
}

.pc-description {
  font-size: 13px;
  color: var(--text-muted);
  white-space: pre-line;
}

.pc-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.per-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.pair-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1810;
  background: var(--gold-light);
  padding: 3px 8px;
  border-radius: 2px;
}

/* --- variant picker --- */
.variant-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.variant-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.colour-chip,
.size-pill {
  background: var(--bg-deepest);
  border: 1px solid var(--border-strong);
  color: var(--text-base);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 11px;
  cursor: pointer;
  transition:
    border-color 0.12s,
    color 0.12s;
}

.colour-chip:hover,
.size-pill:hover {
  border-color: var(--gold);
  color: var(--text-cream);
}

.colour-chip.selected,
.size-pill.selected {
  border-color: var(--gold-light);
  color: var(--text-cream);
  background: var(--bg-card-elevated);
  box-shadow: inset 0 0 0 1px var(--gold-light);
}

.colour-chip.oos,
.size-pill.oos {
  color: var(--text-faint);
  border-color: var(--border-thin);
  text-decoration: line-through;
  cursor: not-allowed;
}

.pc-stockline {
  min-height: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warning);
}

/* --- action row --- */
.pc-action {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
  align-items: stretch;
}

.qty-wrap {
  display: flex;
  border: 1px solid var(--border-strong);
  background: var(--bg-deepest);
}

.qty-btn {
  width: 32px;
  background: none;
  border: none;
  color: var(--text-cream);
  font-size: 16px;
  cursor: pointer;
}

.qty-btn:hover {
  color: var(--gold-light);
}

.qty-btn:disabled {
  color: var(--text-faint);
  cursor: not-allowed;
}

.qty-input {
  width: 44px;
  background: none;
  border: none;
  border-left: 1px solid var(--border-thin);
  border-right: 1px solid var(--border-thin);
  color: var(--text-cream);
  font-family: var(--font-mono);
  font-size: 14px;
  text-align: center;
}

.qty-input:disabled {
  color: var(--text-faint);
}

.qty-input:focus {
  outline: 1px solid var(--gold);
}

/* Hide number-input spinners; the +/- buttons do that job */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.add-btn {
  flex: 1;
  background: var(--scarlet);
  border: 1px solid var(--scarlet-dark);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 8px;
  cursor: pointer;
  transition: background 0.12s;
}

.add-btn:hover {
  background: var(--scarlet-dark);
}

.add-btn:disabled {
  background: var(--bg-card-elevated);
  border-color: var(--border-thin);
  color: var(--text-faint);
  cursor: not-allowed;
}

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-deepest);
  border: 1px solid var(--gold);
  color: var(--text-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 11px 18px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-thin);
  background: var(--bg-deepest);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-sep {
  color: var(--text-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-photo img {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    padding: 10px 14px;
  }
  .hero-inner {
    padding: 28px 14px 22px;
  }
  .catalog-inner {
    padding: 0 14px;
    grid-template-columns: 1fr;
  }
  .brand-logo {
    height: 36px;
  }
}

/* ============================================================
   PHOTO CAROUSEL (product cards)
   ============================================================ */
.carousel {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.car-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.18s;
}

.car-img.active {
  opacity: 1;
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 44px;
  background: rgba(21, 20, 14, 0.65);
  border: 1px solid var(--border-strong);
  color: var(--text-cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.car-arrow.prev {
  left: 8px;
}

.car-arrow.next {
  right: 8px;
}

.car-arrow:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.car-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--text-cream);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.car-dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.car-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(21, 20, 14, 0.75);
  border: 1px solid var(--border-thin);
  color: var(--text-base);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  z-index: 2;
}

/* ============================================================
   CART PAGE
   ============================================================ */
a.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

a.cart-button {
  color: var(--text-cream);
}

a.cart-button:hover {
  border-color: var(--gold);
  color: var(--text-cream);
}

.cart-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.back-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
}

.cart-title {
  font-family: var(--font-stencil);
  font-size: clamp(24px, 4vw, 34px);
  color: var(--text-cream);
  letter-spacing: 2px;
  margin: 10px 0 18px;
}

.cart-notice {
  background: var(--bg-card-elevated);
  border: 1px solid var(--warning);
  color: var(--warning);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 9px 12px;
  margin-bottom: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.cart-line.unavailable {
  grid-template-columns: 72px 1fr auto;
  opacity: 0.75;
}

.cl-thumb {
  width: 72px;
  height: 72px;
  background: var(--bg-deepest);
  border: 1px solid var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cl-thumb .placeholder {
  color: var(--text-faint);
  font-family: var(--font-mono);
}

.cl-name {
  font-weight: 600;
  color: var(--text-cream);
}

.cl-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.cl-flag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--danger);
}

.cl-flag.low {
  color: var(--warning);
}

.cl-total {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-light);
  min-width: 64px;
  text-align: right;
}

.cl-remove {
  background: none;
  border: 1px solid var(--border-thin);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 9px;
  cursor: pointer;
}

.cl-remove:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.cart-empty {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 50px 0;
}

.cart-empty .retry-btn {
  margin-top: 16px;
}

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 16px;
  margin-top: 18px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-cream);
}

.cs-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 14px;
}

/* Session D — fulfillment choice + estimate rows in the cart summary */
.cs-fulfillment {
  margin-bottom: 12px;
}

/* T2 redesign (owner): the pickup notice must be unmissable. */
.cs-pickup {
  border: 2px solid var(--gold);
  background: var(--bg-card-elevated);
  padding: 14px 16px;
}

.cs-pickup-head {
  font-family: var(--font-stencil);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.cs-pickup-body {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-cream);
}

.cs-pickup-body strong {
  color: var(--gold-light);
}

.cs-unavailable {
  font-size: 13px;
  color: var(--text-base);
  border: 1px solid var(--border-thin);
  padding: 10px 12px;
  line-height: 1.45;
}

.cs-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-thin);
  font-size: 14px;
  color: var(--text-base);
  cursor: pointer;
}

.cs-option input {
  accent-color: var(--gold);
}

.cs-option-label {
  flex: 1;
}

.cs-option-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-cream);
}

.cs-total {
  border-top: 1px solid var(--border-strong);
  margin-top: 8px;
  padding-top: 8px;
  color: var(--gold-light);
}

.checkout-btn {
  width: 100%;
  background: var(--scarlet);
  border: 1px solid var(--scarlet-dark);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 13px 8px;
  cursor: pointer;
}

.checkout-btn:hover {
  background: var(--scarlet-dark);
}

.checkout-btn:disabled {
  background: var(--bg-card-elevated);
  border-color: var(--border-thin);
  color: var(--text-faint);
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .cart-line {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "thumb info remove"
      "thumb qty total";
    row-gap: 8px;
  }
  .cl-thumb {
    grid-area: thumb;
    width: 56px;
    height: 56px;
  }
  .cl-info {
    grid-area: info;
  }
  .cl-qty {
    grid-area: qty;
  }
  .cl-total {
    grid-area: total;
  }
  .cl-remove {
    grid-area: remove;
    justify-self: end;
  }
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 28px 24px;
  text-align: center;
}

.success-state {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.success-detail {
  color: var(--text-base);
  margin: 12px 0 22px;
  line-height: 1.7;
}

/* ── booth mode ──
   Unlinked /booth page: PIN gate, tap catalog, QR pay, cash lane.
   Booth rule: readable from a meter away, tappable with a thumb. */

body.booth {
  min-height: 100vh;
  background: var(--bg-deepest);
  font-size: 1.15rem;
}
body.booth #booth-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.booth-gate {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(420px, 92vw);
  text-align: center;
}
.booth-gate h1 {
  font-family: var(--font-stencil);
  color: var(--text-cream);
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.booth-gate input {
  font-size: 1.6rem;
  text-align: center;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-cream);
  letter-spacing: 0.3em;
}
.booth-err {
  color: var(--danger);
  font-weight: 600;
}

.booth-big {
  font-family: var(--font-stencil);
  font-size: 1.4rem;
  width: 100%;
  padding: 18px;
  min-height: 64px;
  border: none;
  border-radius: 10px;
  background: var(--od);
  color: var(--text-cream);
  cursor: pointer;
  letter-spacing: 0.05em;
}
.booth-big:hover:not(:disabled) {
  background: var(--od-light);
}
.booth-big:disabled {
  background: var(--bg-card);
  color: var(--text-faint);
  cursor: default;
}
.booth-alt {
  background: var(--gold);
  color: var(--bg-deepest);
}
.booth-alt:hover:not(:disabled) {
  background: var(--gold-light);
}
.booth-clear {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-muted);
  padding: 12px;
  min-height: 48px;
  font-size: 1rem;
  cursor: pointer;
}
.booth-clear:hover {
  color: var(--text-cream);
  border-color: var(--text-muted);
}

.booth-catalog {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.booth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  align-content: start;
  overflow-y: auto;
}
.booth-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 10px;
  color: var(--text-cream);
  text-align: left;
  cursor: pointer;
}
.booth-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}
.booth-item-name {
  font-weight: 700;
  font-size: 1.05rem;
}
.booth-item-variant {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.booth-item-price {
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 1.1rem;
}
/* Session D T2c: booth brand header + compact hero (storefront classes
   reused; these overrides only shrink it so the grid stays high on a
   tablet). Crest hidden on narrow screens to protect working space. */
.booth .hero.booth-hero {
  padding: 18px 0 14px;
}
.booth .booth-hero .hero-title {
  font-size: clamp(26px, 4.5vw, 40px);
  margin: 4px 0 10px;
}
.booth .booth-hero .hero-photo img {
  max-height: 130px;
  width: auto;
}
@media (max-width: 700px) {
  .booth .booth-hero .hero-photo {
    display: none;
  }
}

/* Session D T2: tile photo + live stock count. T2b: storefront parity —
   square frame, object-fit contain (COVER CROPS; the shop's .pc-image
   shows the whole photo letterboxed on --bg-deepest, so the booth does
   too — owner finding, 23 Aug 2026). */
.booth-item-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background: var(--bg-deepest);
}
.booth-item-nophoto {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
}
.booth-item-stock {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booth-cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-base);
  border: 1px solid var(--border-thin);
  border-radius: 12px;
  padding: 16px;
  align-self: start;
  position: sticky;
  top: 16px;
}
.booth-cart h2 {
  font-family: var(--font-stencil);
  color: var(--text-cream);
  letter-spacing: 0.06em;
}
.booth-cart-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booth-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--text-base);
  font-size: 1rem;
}
.booth-line-ctl {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.booth-line-ctl button {
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-cream);
  cursor: pointer;
}
.booth-line-ctl b {
  min-width: 1.4em;
  text-align: center;
  color: var(--text-cream);
}
.booth-total {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--gold-light);
  text-align: center;
  min-height: 1.6em;
}

/* Session D: second line = card total incl. GRT (estimate) */
.booth-total small {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Session D T2: cash receipt email (optional) */
.booth-email input {
  font-size: 1.1rem;
}
.booth-email-hint {
  color: var(--warning);
  font-size: 0.95rem;
  text-align: center;
}
.booth-done-note {
  font-family: var(--font-mono);
  color: var(--text-base);
  text-align: center;
}

.booth-pay {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(560px, 94vw);
  text-align: center;
}
.booth-pay h2 {
  font-family: var(--font-stencil);
  color: var(--text-cream);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.booth-qr {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  line-height: 0;
}
.booth-qr svg {
  width: min(70vmin, 480px);
  height: auto;
  display: block;
}
.booth-order {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.booth-wait {
  color: var(--warning);
  font-size: 1.2rem;
}
.booth-tender {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-base);
  font-size: 1.2rem;
}
.booth-tender input {
  font-size: 2rem;
  text-align: center;
  padding: 12px;
  width: 8em;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-cream);
  font-family: var(--font-mono);
}
.booth-change {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--success);
  min-height: 1.2em;
}

.booth-done {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: min(480px, 92vw);
}
.booth-done h2 {
  font-family: var(--font-stencil);
  font-size: 3.4rem;
  color: var(--success);
  letter-spacing: 0.08em;
}
.booth-done-total {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--text-cream);
}

@media (max-width: 760px) {
  .booth-catalog {
    grid-template-columns: 1fr;
  }
  .booth-cart {
    position: static;
    order: -1;
  }
}
