/* Tappr Kiosk — Portrait-only Fast-Food-Style.
 *
 * Target: ~1080×1920 Portrait, responsiv nach unten und oben skalierbar.
 * Dark-Theme (Sidebar-Bg #17171f), Coral-Akzent (#ff4d4d), Touch-first.
 * Landscape-Layout kommt später als zweites Layout — aktuell draussen.
 */

:root {
  --k-bg:           #17171f;
  --k-bg-2:         #1e1e27;
  --k-bg-3:         #272732;
  --k-text:         #f0f0ec;
  --k-text-mute:    #9d9da2;
  --k-border:       rgba(255, 255, 255, 0.08);
  --k-border-soft:  rgba(255, 255, 255, 0.04);
  --k-coral:        #ff4d4d;
  --k-coral-hover:  #e63a3a;
  --k-red:          #ef4444;
  --k-red-soft:     rgba(239, 68, 68, 0.15);

  --k-radius:       12px;
  --k-radius-lg:    20px;
  --k-radius-xl:    28px;

  --k-font-sans:    system-ui, -apple-system, 'Segoe UI', 'DM Sans', sans-serif;
  --k-font-mono:    ui-monospace, 'JetBrains Mono', Menlo, monospace;

  --k-header-h:     64px;
  --k-categories-h: 64px;
  --k-cart-collapsed: 80px;
  --k-cart-expanded: 60vh;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

/* HTML-hidden-Attribut muss über Layout-Regeln (display:flex/grid/...) stehen. */
[hidden] { display: none !important; }

body.kiosk-dark {
  background: var(--k-bg);
  color: var(--k-text);
  font-family: var(--k-font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.kiosk-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.kiosk-brand {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--k-text);
}

/* ══════════════════════════════════════════════════════════════════
 * Pair-Screen (unverändert aus Commit 5)
 * ══════════════════════════════════════════════════════════════════ */

.pair-card {
  background: var(--k-bg-2);
  border: 1px solid var(--k-border);
  border-radius: var(--k-radius-lg);
  padding: 40px 32px;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.pair-headline { font-size: 20px; font-weight: 500; margin: 16px 0 4px; }
.pair-sub { color: var(--k-text-mute); font-size: 14px; margin: 0 0 24px; }
.pair-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.pair-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--k-bg);
  border: 2px solid var(--k-border);
  border-radius: var(--k-radius);
  color: var(--k-text);
  font-family: var(--k-font-mono);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.pair-input:focus { border-color: var(--k-coral); background: var(--k-bg-2); }
.pair-input::placeholder { color: var(--k-text-mute); opacity: 0.5; letter-spacing: 0.1em; }
.pair-error {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: var(--k-red-soft);
  border-radius: var(--k-radius);
  color: #fca5a5;
  font-size: 14px;
  line-height: 1.4;
}
.pair-scan-hint { font-size: 12px; opacity: 0.7; font-weight: 400; margin-left: 6px; }

/* ══════════════════════════════════════════════════════════════════
 * Buttons
 * ══════════════════════════════════════════════════════════════════ */

.kiosk-btn {
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--k-radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 160ms ease, opacity 160ms ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.kiosk-btn-primary { background: var(--k-coral); color: #fff; }
.kiosk-btn-primary:hover,
.kiosk-btn-primary:focus-visible { background: var(--k-coral-hover); }
.kiosk-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.kiosk-btn-ghost {
  background: transparent;
  color: var(--k-text-mute);
  border: 1px solid var(--k-border);
  margin-top: 12px;
}
.kiosk-btn-ghost:hover { background: var(--k-border-soft); color: var(--k-text); }
.kiosk-btn-ghost:disabled { cursor: not-allowed; opacity: 0.6; }

/* ══════════════════════════════════════════════════════════════════
 * Shop-Layout — Portrait Fast-Food
 * ══════════════════════════════════════════════════════════════════ */

.kiosk-boot {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--k-text-mute);
  font-family: var(--k-font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--k-bg);
  z-index: 500;
}

.shop {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ─── Header ─────────────────────────────────────────── */

.shop-header {
  flex-shrink: 0;
  height: var(--k-header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--k-border-soft);
  background: var(--k-bg);
}
.shop-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.shop-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.shop-venue-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--k-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border: 1px solid var(--k-border);
  background: transparent;
  color: var(--k-text-mute);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.header-btn:not(:disabled):hover { background: var(--k-border-soft); color: var(--k-text); }
.header-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.header-btn-icon { padding: 0; justify-content: center; width: 40px; }

/* ─── Kategorien (horizontal scroll) ────────────────── */

.shop-categories {
  flex-shrink: 0;
  height: var(--k-categories-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--k-border-soft);
  background: var(--k-bg);
}
.shop-categories::-webkit-scrollbar { display: none; }

.chip-category {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 10px 18px;
  min-height: 44px;
  border: none;
  background: transparent;
  color: var(--k-text-mute);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 160ms ease;
}
.chip-category:hover { color: var(--k-text); }
.chip-category.is-active {
  color: var(--k-coral);
}
.chip-category.is-active::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 6px;
  height: 3px;
  background: var(--k-coral);
  border-radius: 2px;
}

/* ─── Produkt-Grid (2 Spalten, scrollbar) ───────────── */

.shop-main {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 16px;
  padding-bottom: calc(var(--k-cart-collapsed) + 16px);
  -webkit-overflow-scrolling: touch;
}
.shop-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--k-bg-2);
  border-radius: var(--k-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--k-border-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}
.product-tile:active { transform: scale(0.98); }
.product-tile:hover { border-color: var(--k-border); }
.product-tile-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--k-bg-3);
}
.product-tile-image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-tile-image.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-text-mute);
  font-family: var(--k-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.product-tile-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--k-coral);
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.4);
  transition: background-color 160ms ease, transform 120ms ease;
}
.product-tile-add:hover { background: var(--k-coral-hover); }
.product-tile-add:active { transform: scale(0.9); }

.product-tile-body {
  padding: 12px 14px 14px;
}
.product-tile-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--k-text);
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-tile-price {
  font-family: var(--k-font-mono);
  font-size: 14px;
  color: var(--k-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--k-coral);
  color: #fff;
  font-family: var(--k-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 1;
}

.shop-empty {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  color: var(--k-text-mute);
}

/* ══════════════════════════════════════════════════════════════════
 * Bottom-Sheet Warenkorb
 * ══════════════════════════════════════════════════════════════════ */

.cart-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--k-cart-expanded);
  transform: translateY(calc(100% - var(--k-cart-collapsed)));
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--k-bg-2);
  border-top: 1px solid var(--k-border);
  border-radius: var(--k-radius-xl) var(--k-radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  z-index: 150;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cart-sheet[data-state="expanded"] {
  transform: translateY(0);
}

/* Summary-Bar (immer sichtbar, die oberen 80 px des Sheets) */
.cart-summary {
  flex-shrink: 0;
  height: var(--k-cart-collapsed);
  width: 100%;
  padding: 0 20px;
  border: none;
  background: transparent;
  color: var(--k-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.cart-summary-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cart-summary-icon {
  width: 24px; height: 24px;
  color: var(--k-text-mute);
}
.cart-summary[data-active="true"] .cart-summary-icon { color: var(--k-coral); }
.cart-summary-qty {
  font-size: 15px;
  font-weight: 500;
}
.cart-summary-total {
  font-family: var(--k-font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--k-text);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
}
.cart-summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--k-coral);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.cart-sheet[data-empty="true"] .cart-summary-cta { opacity: 0.4; }

/* Expanded-Body */
.cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px 24px;
  min-height: 0;
  /* Wenn collapsed, Body ist ausserhalb translateY — also unsichtbar. */
}
.cart-body-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--k-border-soft);
  margin-bottom: 12px;
}
.cart-body-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.cart-collapse {
  width: 36px; height: 36px;
  border: none;
  background: var(--k-bg-3);
  color: var(--k-text-mute);
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-collapse:hover { background: var(--k-border); color: var(--k-text); }

.cart-items {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--k-bg);
  border-radius: var(--k-radius);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--k-text);
}
.cart-item-price {
  font-family: var(--k-font-mono);
  font-size: 13px;
  color: var(--k-text);
  letter-spacing: 0.02em;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 36px; height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--k-bg-3);
  color: var(--k-text);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-btn:hover { background: var(--k-border); }
.cart-qty-value {
  min-width: 28px;
  text-align: center;
  font-family: var(--k-font-mono);
  font-size: 15px;
  color: var(--k-text);
}
.cart-item-remove {
  border: none;
  background: transparent;
  color: var(--k-text-mute);
  cursor: pointer;
  padding: 6px 4px;
  font-size: 16px;
  margin-left: 4px;
}
.cart-item-remove:hover { color: var(--k-coral); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--k-text-mute);
  font-size: 14px;
  gap: 8px;
  padding: 32px 20px;
}
.cart-empty p { margin: 0; }
.cart-empty-sub { font-size: 12px; opacity: 0.7; }

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--k-border-soft);
  margin-bottom: 12px;
}
.cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-family: var(--k-font-mono);
  color: var(--k-text);
}
.cart-line-mute { color: var(--k-text-mute); }
.cart-line-total {
  font-size: 18px;
  font-weight: 500;
  padding-top: 6px;
  border-top: 1px solid var(--k-border-soft);
  margin-top: 4px;
}
.cart-checkout-btn {
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════════
 * Checkout-View (Zahlart-Auswahl)
 * ══════════════════════════════════════════════════════════════════ */

/* Views werden per data-view auf .shop getoggelt. Nur einer sichtbar. */
.shop[data-view="checkout"] > .shop-header,
.shop[data-view="checkout"] > .shop-categories,
.shop[data-view="checkout"] > .shop-main,
.shop[data-view="checkout"] > .cart-sheet,
.shop[data-view="success"] > .shop-header,
.shop[data-view="success"] > .shop-categories,
.shop[data-view="success"] > .shop-main,
.shop[data-view="success"] > .cart-sheet {
  display: none;
}
.checkout-view,
.success-view {
  position: fixed;
  inset: 0;
  background: var(--k-bg);
  z-index: 120;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.checkout-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--k-border-soft);
}
.checkout-back {
  width: 44px; height: 44px;
  border: none;
  background: var(--k-bg-3);
  color: var(--k-text);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout-back:hover { background: var(--k-border); }
.checkout-title {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.checkout-total {
  font-family: var(--k-font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--k-text);
}

.checkout-body {
  flex: 1;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.checkout-intro {
  text-align: center;
  color: var(--k-text-mute);
  margin: 0;
  font-size: 16px;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 12px;
  border: 1px solid var(--k-border);
  background: var(--k-bg-2);
  color: var(--k-text);
  border-radius: var(--k-radius-lg);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 160ms ease, transform 120ms ease, background-color 160ms ease;
}
.payment-option:hover { border-color: var(--k-coral); }
.payment-option:active { transform: scale(0.96); }
.payment-option:disabled { opacity: 0.4; cursor: not-allowed; }
.payment-option svg { color: var(--k-text); }
.payment-option[data-pay="twint"] svg { color: #ff4d4d; }

.checkout-pending {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 31, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.checkout-spinner {
  width: 56px; height: 56px;
  border: 4px solid var(--k-border);
  border-top-color: var(--k-coral);
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}
@keyframes spinner { to { transform: rotate(360deg); } }
.checkout-pending-text {
  font-size: 16px;
  color: var(--k-text);
  margin: 0;
  font-family: var(--k-font-mono);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════════
 * Success-View
 * ══════════════════════════════════════════════════════════════════ */

.success-view {
  padding: 32px 20px 40px;
  gap: 24px;
}
.success-head {
  text-align: center;
}
.success-label {
  font-family: var(--k-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--k-text-mute);
  margin: 0 0 8px;
}
.success-number {
  font-size: 72px;
  font-weight: 600;
  color: var(--k-coral);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-variant-numeric: tabular-nums;
}
.success-qr {
  display: inline-flex;
  padding: 16px;
  background: #fff;
  border-radius: var(--k-radius-lg);
  margin: 0 auto 20px;
  width: 200px;
  height: 200px;
}
.success-qr svg {
  width: 100%;
  height: 100%;
}
.success-pickup {
  font-size: 16px;
  color: var(--k-text);
  margin: 0;
  font-weight: 500;
}

.success-receipt {
  background: var(--k-bg-2);
  border: 1px solid var(--k-border-soft);
  border-radius: var(--k-radius-lg);
  padding: 20px;
}
.success-receipt-title {
  font-size: 13px;
  font-family: var(--k-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--k-text-mute);
  margin: 0 0 12px;
  font-weight: 500;
}
.success-items {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--k-border-soft);
  padding-bottom: 12px;
}
.success-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-family: var(--k-font-mono);
  color: var(--k-text);
}
.success-items .qty { color: var(--k-text-mute); margin-right: 8px; }
.success-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.success-countdown {
  text-align: center;
  color: var(--k-text-mute);
  font-family: var(--k-font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.success-countdown p { margin: 0; }
.success-countdown #success-seconds {
  color: var(--k-coral);
  font-weight: 600;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════════════════════════
 * Produkt-Modal (Vollbild)
 * ══════════════════════════════════════════════════════════════════ */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--k-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: modal-slide 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modal-slide {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.product-modal-close {
  position: fixed;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.product-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--k-bg-3);
}
.product-modal-body {
  flex: 1;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-modal-title {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.product-modal-desc {
  color: var(--k-text-mute);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.product-modal-desc:empty { display: none; }
.product-modal-price {
  font-family: var(--k-font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--k-text);
  letter-spacing: 0.02em;
}
.quantity-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}
.qty-btn {
  width: 56px; height: 56px;
  border: 2px solid var(--k-border);
  background: transparent;
  color: var(--k-text);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.qty-btn:hover { border-color: var(--k-coral); color: var(--k-coral); }
.qty-btn:active { transform: scale(0.92); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.qty-value {
  min-width: 52px;
  text-align: center;
  font-family: var(--k-font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--k-text);
}

/* ══════════════════════════════════════════════════════════════════
 * Idle-Overlay
 * ══════════════════════════════════════════════════════════════════ */

.idle-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--k-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.idle-content {
  text-align: center;
  animation: idle-fade 0.4s ease-out;
}
.idle-brand { font-size: 56px; margin-bottom: 16px; }
.idle-venue {
  font-size: 22px;
  color: var(--k-text);
  margin: 0 0 40px;
  font-weight: 500;
}
.idle-cta {
  color: var(--k-text-mute);
  font-size: 18px;
  font-family: var(--k-font-mono);
  letter-spacing: 0.08em;
  animation: idle-pulse 2s ease-in-out infinite;
}
@keyframes idle-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes idle-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
