/* ==========================================================================
   DONBON — Design-System
   Fonts self-hosted aus @fontsource, keine externen CDN-Requests.
   ========================================================================== */

/* ---------- Font-Faces ---------- */
@font-face { font-family: 'Barlow'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('/fonts/barlow/files/barlow-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('/fonts/barlow/files/barlow-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/fonts/barlow/files/barlow-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('/fonts/barlow/files/barlow-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 800; font-style: normal; font-display: swap;
  src: url('/fonts/barlow/files/barlow-latin-800-normal.woff2') format('woff2'); }

@font-face { font-family: 'Barlow Condensed'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('/fonts/barlow-condensed/files/barlow-condensed-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/fonts/barlow-condensed/files/barlow-condensed-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('/fonts/barlow-condensed/files/barlow-condensed-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 800; font-style: normal; font-display: swap;
  src: url('/fonts/barlow-condensed/files/barlow-condensed-latin-800-normal.woff2') format('woff2'); }

@font-face { font-family: 'IBM Plex Mono'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('/fonts/ibm-plex-mono/files/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/fonts/ibm-plex-mono/files/ibm-plex-mono-latin-600-normal.woff2') format('woff2'); }

/* ---------- Design-Tokens ---------- */
/* Standard: Dunkel. Umschalter setzt data-theme="light" auf <html>. */
:root {
  /* Farben — dunkles Theme (Default) */
  --page: #101216;
  --bar: #17191d;
  --bar-border: #2a2e36;
  --card: #1b1e24;
  --card-border: #2a2e36;
  --inset: #22262e;
  --key: #1e2229;
  --text: #f2f3f5;
  --text-muted: #8b909a;
  --text-weak: #5a5f6a;

  /* Signalfarben — beide Themes gleich */
  --brand: #d4452e;
  --green: #2ea36b;
  --red: #c0503c;
  --red-strong: #e06a4e;
  --amber: #e0aa3e;
  --amber-strong: #b8862a;
  --blue: #5b8fd6;
  --blue-strong: #3d6ca8;

  /* Metadaten */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --touch: 52px;
  --shadow: 0 1px 3px rgba(0,0,0,.25);
  --shadow-lg: 0 4px 14px rgba(0,0,0,.4);
}
html[data-theme="light"] {
  --page: #efece6;
  --bar: #f7f5f0;
  --bar-border: #e0dbd0;
  --card: #ffffff;
  --card-border: #e3ded3;
  --inset: #f1eee7;
  --key: #f7f5f0;
  --text: #1c1a17;
  --text-muted: #8a8478;
  --text-weak: #b5aea1;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --shadow-lg: 0 4px 14px rgba(0,0,0,.15);
}

/* ---------- Reset + Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--page);
  -webkit-tap-highlight-color: transparent;
  overflow-wrap: break-word;
  overscroll-behavior: contain;
}
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Condensed für Headlines + große Zahlen */
h1, h2, h3, .cond, .num-huge {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.mono, .price, .time, .pin-num, .bon-nr {
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout ---------- */
.page-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bar);
  border-bottom: 1px solid var(--bar-border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.page-bar .logo { flex: 0 0 auto; }
.page-bar h1 {
  font-size: 20px;
  margin: 0;
  letter-spacing: 0.06em;
}
.page-bar .sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}
.page-bar .actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}

.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
  padding-bottom: 120px;
}
.wrap.wide { max-width: 1400px; }
.wrap.narrow { max-width: 480px; }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.card.inset { background: var(--inset); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--card-border);
  background: var(--key);
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 18px;
  min-height: var(--touch);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform .05s ease, background .12s ease, border-color .12s ease;
  box-shadow: var(--shadow);
}
.btn:hover { background: var(--inset); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary { background: var(--brand); border-color: var(--brand); color: white; }
.btn-primary:hover { background: #b83821; border-color: #b83821; }
.btn-green { background: var(--green); border-color: var(--green); color: white; }
.btn-green:hover { filter: brightness(1.05); }
.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-red { background: var(--red); border-color: var(--red); color: white; }
.btn-ghost { background: transparent; box-shadow: none; border-color: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--inset); color: var(--text); }
.btn-block { width: 100%; }
.btn-big { min-height: 60px; font-size: 17px; }
.btn-huge { min-height: 76px; font-size: 22px; font-weight: 700; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--inset);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--card-border);
}
.chip.brand { background: var(--brand); color: white; border-color: var(--brand); }
.chip.green { background: rgba(46,163,107,0.15); color: var(--green); border-color: var(--green); }
.chip.red   { background: rgba(192,80,60,0.15); color: var(--red-strong); border-color: var(--red); }
.chip.amber { background: rgba(224,170,62,0.15); color: var(--amber); border-color: var(--amber); }
.chip.blue  { background: rgba(91,143,214,0.15); color: var(--blue); border-color: var(--blue); }

/* Category-Chips (statisch pro Kategorie) */
.chip.cat-getraenke { background: rgba(91,143,214,0.15); color: var(--blue); border-color: var(--blue); }
.chip.cat-speisen   { background: rgba(224,170,62,0.15); color: var(--amber); border-color: var(--amber); }
.chip.cat-sonstiges { background: rgba(139,144,154,0.15); color: var(--text-muted); border-color: var(--card-border); }

/* ---------- Inputs ---------- */
.field {
  display: block;
  margin-bottom: 12px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  min-height: var(--touch);
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--inset);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212,69,46,0.25);
}
input[type="checkbox"], input[type="radio"] {
  width: auto; min-height: 0;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--page);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  max-width: 90vw;
  animation: toastIn .2s ease;
}
.toast.err { background: var(--red); color: white; }
.toast.ok  { background: var(--green); color: white; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Helpers ---------- */
.hidden { display: none !important; }
.spacer { flex: 1; }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.row-tight { display: flex; gap: 4px; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.center { display: flex; align-items: center; justify-content: center; }
.text-muted { color: var(--text-muted); }
.text-red { color: var(--red-strong); }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }
.text-huge { font-size: 40px; font-weight: 800; }
.text-big  { font-size: 22px; font-weight: 700; }

/* Kellner-App: mobile-first, feste Screen-Struktur */
.screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.screen-body {
  flex: 1;
  padding: 16px;
  padding-bottom: 100px;
}
.screen-footer {
  position: sticky;
  bottom: 0;
  padding: 12px 16px;
  background: var(--bar);
  border-top: 1px solid var(--bar-border);
  box-shadow: 0 -2px 6px rgba(0,0,0,.15);
  z-index: 30;
}

/* ---------- PIN-Pad ---------- */
.pin-dots {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 24px 0 28px;
}
.pin-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--inset);
  border: 2px solid var(--card-border);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.pin-dots span.on {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}
.pin-dots.shake { animation: shake .35s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.pin-pad {
  display: grid;
  grid-template-columns: repeat(3, 76px);
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
}
.pin-pad button {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 1px solid var(--card-border);
  background: var(--key);
  color: var(--text);
  border-radius: 50%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .04s ease, background .12s ease;
  box-shadow: var(--shadow);
}
.pin-pad button:active { transform: scale(0.94); }
.pin-pad button.action {
  font-size: 20px;
  color: var(--text-muted);
}

/* ---------- Tisch-Display ---------- */
.table-display {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 92px;
  letter-spacing: 0.04em;
  color: var(--text);
  min-height: 100px;
  line-height: 1;
  margin: 12px 0 20px;
  font-variant-numeric: tabular-nums;
}
.table-display.empty { color: var(--text-weak); }

/* Section-Titel */
.section-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 8px 4px;
}

/* Zuletzt-kassiert-Zeile */
.recent-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease;
}
.recent-item:hover { border-color: var(--text-muted); }
.recent-item.expanded { border-color: var(--brand); }
.recent-item.voided,
.recent-item.amended {
  opacity: 0.55;
  text-decoration: line-through;
  cursor: default;
}
.recent-item.voided:hover,
.recent-item.amended:hover { border-color: var(--card-border); }
.recent-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recent-head .time  { font-size: 14px; color: var(--text-muted); min-width: 48px; }
.recent-head .table {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 18px;
}
.recent-head .stations { font-size: 12px; color: var(--text-muted); flex: 1; }
.recent-head .amount { font-weight: 700; font-family: 'IBM Plex Mono', monospace; }
.recent-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.recent-actions button { flex: 1; }
.status-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-tag.voided  { background: var(--red); color: white; }
.status-tag.amended { background: var(--amber); color: #1c1a17; }

/* ---------- Segmented Control (Kategorie-Filter) ---------- */
.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--inset);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 12px;
}
.segmented button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  min-height: 44px;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.segmented button.on {
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
}

/* ---------- Produkt-Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 12px;
  min-height: 92px;
  cursor: pointer;
  transition: transform .04s ease, background .1s ease, border-color .12s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  text-align: center;
  user-select: none;
}
.product-card:active { transform: scale(0.98); }
.product-card:hover  { background: var(--inset); }
.product-card.has-qty {
  border-color: var(--green);
  background: rgba(46,163,107,0.08);
}
.product-card.out {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-card.out:active { transform: none; }
.product-card .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.product-card .price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
}
.product-card .price.free { color: var(--green); font-weight: 600; }
.product-card .stock-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--inset);
  color: var(--text-muted);
  display: inline-block;
  align-self: center;
}
.product-card .stock-badge.low { background: rgba(224,170,62,0.2); color: var(--amber); }
.product-card .stock-badge.out {
  background: var(--red);
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
  padding: 4px 10px;
}
.product-card .qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green);
  color: white;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.product-card .minus-btn {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--red);
  color: var(--red-strong);
  font-size: 26px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  box-shadow: var(--shadow);
}
.product-card .minus-btn:hover { background: var(--red); color: white; }

/* ---------- Cart-Bar (Sticky-Footer) ---------- */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bar);
  border-top: 1px solid var(--bar-border);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0,0,0,.25);
  z-index: 30;
}
.cart-summary {
  background: transparent;
  border: none;
  padding: 6px 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius);
}
.cart-summary:hover { background: var(--inset); }
.cart-summary .cart-count {
  background: var(--brand);
  color: white;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cart-summary .cart-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 14px;
}
.cart-bar .btn { flex: 1; }

/* ---------- Dialoge ---------- */
.dlg {
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--card);
  color: var(--text);
  max-width: 480px;
  width: min(92vw, 480px);
  box-shadow: var(--shadow-lg);
}
.dlg::backdrop { background: rgba(0,0,0,.6); }
.dlg-inner { padding: 20px; }

/* ---------- Cart-Modal-Items ---------- */
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
}
.cart-line:last-child { border-bottom: none; }
.cart-line .name-col { min-width: 0; }
.cart-line .name-col .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.cart-line .name-col .meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
}
.cart-line .name-col .note {
  color: var(--amber);
  font-size: 12px;
  margin-top: 2px;
  font-style: italic;
}
.cart-line .qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--inset);
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-line .qty-btn:hover { background: var(--key); }
.cart-line .qty {
  min-width: 24px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 16px;
}
.cart-line .note-btn {
  background: transparent;
  border: none;
  padding: 4px 8px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.cart-line .note-btn:hover { color: var(--amber); background: var(--inset); }

/* ---------- Split-Payment-Screen ---------- */
.pay-totals { text-align: center; padding: 18px 16px; }
.pay-selected-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pay-selected {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin: 6px 0 8px;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.pay-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.pay-meta > div { text-align: center; }

.pay-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 8px;
}
.pay-line.paid {
  opacity: 0.5;
  background: var(--inset);
}
.pay-line.paid .name-col .name {
  text-decoration: line-through;
}
.pay-line .name-col { min-width: 0; }
.pay-line .name-col .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.pay-line .name-col .price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
}
.pay-line .stepper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.pay-line .step-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--inset);
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-line .step-btn:hover { background: var(--key); }
.pay-line .step-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pay-line .frac {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  font-size: 14px;
}
.pay-line .frac .sel { color: var(--brand); font-size: 17px; }
.pay-line .frac .sep { color: var(--text-weak); }
.pay-line .frac .opn { color: var(--text-muted); }
.pay-line .paid-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pay-line .note {
  grid-column: 1 / -1;
  color: var(--amber);
  font-size: 12px;
  font-style: italic;
  margin-top: -4px;
  padding-left: 2px;
}

/* ---------- Bestätigungs-Screen ---------- */
.confirm-check {
  font-size: 96px;
  color: var(--green);
  line-height: 1;
  margin: 16px 0;
}
.confirm-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.confirm-sub { font-size: 15px; margin-bottom: 12px; }
.confirm-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-top: 8px;
}
