/* ============================================================
   Eindfeest De Schovenhorst — app styles (op tokens.css)
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-xs); }

/* ---------- text helpers ---------- */
.display { font-family: var(--font-display); letter-spacing: var(--tracking-tight); line-height: var(--leading-tight); color: var(--fg-1); margin: 0; }
.eyebrow { font-size: var(--text-sm); font-weight: 700; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--accent-rust); margin: 0; }
.lead { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--fg-2); margin: 0; }
.muted { color: var(--fg-3); }
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================
   APP SHELL
   ============================================================ */
.app { min-height: 100vh; display: flex; flex-direction: column; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: 14px clamp(16px, 5vw, 56px);
  background: color-mix(in oklab, var(--paper-50) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-200);
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; background: none; border: 0; padding: 0; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; line-height: 1; color: var(--fg-1); }
.brand .sub { font-size: 12px; color: var(--fg-3); line-height: 1; margin-top: 3px; }
.topbar .right { display: flex; align-items: center; gap: var(--space-4); }
.topbar .deadline { font-size: 13px; color: var(--fg-2); display: flex; align-items: center; gap: 7px; }
.topbar .deadline b { color: var(--fg-1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; border: 0; cursor: pointer;
  padding: 13px 24px; border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--primary:active { background: var(--primary-press); }
.btn--secondary { background: transparent; color: var(--fg-1); border: 1.5px solid var(--border-strong); }
.btn--secondary:hover { background: var(--paper-100); }
.btn--gold { background: var(--gold-300); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); }
.btn--ghost { background: transparent; color: var(--primary); padding-left: 14px; padding-right: 14px; }
.btn--ghost:hover { background: var(--primary-soft); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn:disabled { background: var(--surface-sunk); color: var(--ink-400); box-shadow: none; cursor: not-allowed; border-color: transparent; }
.btn:disabled:active { transform: none; }

.linkbtn { background: none; border: 0; color: var(--primary); font-weight: 600; font-size: 14px; cursor: pointer; padding: 4px; border-radius: var(--radius-xs); }
.linkbtn:hover { text-decoration: underline; }
.linkbtn--danger { color: var(--danger); }

/* ============================================================
   CARDS / SURFACES
   ============================================================ */
.card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.card--flat { box-shadow: none; border: 1px solid var(--line-300); }

/* ============================================================
   FORM FIELDS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: 13px; font-weight: 700; color: var(--fg-1); }
.field .req { color: var(--accent-rust); }
.field .opt { color: var(--fg-3); font-weight: 500; }
.inp, .sel, textarea.inp {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 12px 14px; transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.inp::placeholder { color: var(--ink-400); }
.inp:focus, .sel:focus, textarea.inp:focus { outline: none; border-color: var(--primary); box-shadow: var(--shadow-focus); }
.inp.is-error { border-color: var(--danger); }
.field .hint { font-size: 12px; color: var(--fg-3); }
.field .err { font-size: 12px; color: var(--danger); font-weight: 600; display: flex; gap: 5px; align-items: center; }
textarea.inp { resize: vertical; min-height: 84px; line-height: 1.5; }
.sel { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236A5C4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer; }

/* segmented choice (ja/nee etc.) */
.seg { display: inline-flex; background: var(--surface-sunk); border-radius: var(--radius-pill); padding: 4px; gap: 3px; }
.seg button { border: 0; background: none; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--fg-2); padding: 8px 16px; border-radius: var(--radius-pill); transition: all var(--dur-fast) var(--ease-out); }
.seg button[aria-pressed="true"] { background: var(--surface); color: var(--fg-1); box-shadow: var(--shadow-xs); }

/* pickup-method radio cards */
.pickup-grid { display: grid; gap: 12px; }
.pickup-grid--err { outline: 1.5px solid var(--rust-400, #c97b6b); outline-offset: 8px; border-radius: var(--radius-md); }
.pickup-opt {
  display: flex; align-items: flex-start; gap: 16px; text-align: left;
  background: var(--surface); border: 1.5px solid var(--line-300);
  border-radius: var(--radius-lg); padding: var(--space-5);
  cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.pickup-opt:hover { border-color: var(--fg-3); }
.pickup-opt.is-on { border-color: var(--primary); background: var(--primary-soft); box-shadow: var(--shadow-xs); }
.pickup-opt .po-ic {
  flex: none; width: 44px; height: 44px; border-radius: var(--radius-md);
  display: grid; place-items: center; background: var(--surface-sunk); color: var(--fg-3);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.pickup-opt.is-on .po-ic { background: var(--primary); color: #fff; }
.pickup-opt .po-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.pickup-opt .po-label { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--fg-1); }
.pickup-opt .po-desc { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.pickup-opt .po-radio {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  border: 2px solid var(--line-300); background: var(--surface); transition: all var(--dur-fast); position: relative;
}
.pickup-opt.is-on .po-radio { border-color: var(--primary); }
.pickup-opt.is-on .po-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--primary);
}

/* ============================================================
   STEPPER (wizard voortgang)
   ============================================================ */
.stepper { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.stepper .step { display: flex; align-items: center; gap: 10px; }
.stepper .dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex: none;
  background: var(--surface-sunk); color: var(--fg-3); border: 1.5px solid var(--line-300);
  transition: all var(--dur-base) var(--ease-out);
}
.stepper .step.is-active .dot { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.stepper .step.is-done .dot { background: var(--teal-100); color: var(--primary); border-color: var(--teal-200); }
.stepper .step .lbl { font-size: 13.5px; font-weight: 600; color: var(--fg-3); white-space: nowrap; }
.stepper .step.is-active .lbl, .stepper .step.is-done .lbl { color: var(--fg-1); }
.stepper .step.is-clickable { cursor: pointer; }
.stepper .bar { flex: 1; height: 1.5px; background: var(--line-300); margin: 0 14px; min-width: 16px; }
.stepper .step.is-done + .bar, .bar.is-filled { background: var(--teal-200); }

/* mobile progress */
.mprogress { display: none; }

/* ============================================================
   WIZARD LAYOUT
   ============================================================ */
.wizard {
  flex: 1; width: 100%; max-width: 1200px; margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 5vw, 56px) 120px;
}
.wizard-head { margin-bottom: var(--space-6); }
.wizard-head .eyebrow { margin-bottom: 10px; }
.wizard-head h1 { font-size: var(--text-2xl); font-weight: 700; }
.wizard-head .lead { margin-top: 8px; max-width: 56ch; }

.wizard-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: var(--space-6); align-items: start; }
.wizard-main { min-width: 0; }

.section-block { margin-bottom: var(--space-6); }
.section-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 4px; }
.section-sub { font-size: 14px; color: var(--fg-2); margin: 0 0 var(--space-4); }

.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-5); }
.formgrid .col-2 { grid-column: 1 / -1; }

/* ============================================================
   CART (zijbalk)
   ============================================================ */
.cart { position: sticky; top: 86px; }
.cart .card { padding: var(--space-5); }
.cart h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin: 0 0 4px; display: flex; align-items: center; gap: 9px; }
.cart .empty { color: var(--fg-3); font-size: 14px; padding: 18px 0; text-align: center; }
.cart .empty svg { color: var(--ink-400); margin-bottom: 8px; }
.cart-lines { display: flex; flex-direction: column; gap: 2px; margin: 14px 0; }
.cart-line { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-200); }
.cart-line:last-child { border-bottom: 0; }
.cart-line .ql { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--primary); font-size: 14px; min-width: 26px; }
.cart-line .nm { flex: 1; font-size: 14px; line-height: 1.3; }
.cart-line .nm small { display: block; color: var(--fg-3); font-size: 12px; }
.cart-line .pr { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 4px; border-top: 1.5px solid var(--line-300); }
.cart-total .t-lbl { font-weight: 700; font-size: 15px; }
.cart-total .t-val { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); }

/* mobiele onderbalk */
.cartbar { display: none; }

/* ============================================================
   MENU / DISH CARDS
   ============================================================ */
.cat { margin-bottom: var(--space-7); }
.cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-4); }
.cat-head .ic { width: 40px; height: 40px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700); flex: none; }
.cat-head h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.cat-head p { font-size: 13.5px; color: var(--fg-2); margin: 2px 0 0; }

.dishgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-4); }

.dish {
  background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line-300);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.dish:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.dish.is-in { border-color: var(--primary); box-shadow: 0 0 0 1.5px var(--primary), var(--shadow-md); }
.dish-thumb { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; }
.dish-thumb.acc-rust { background: var(--rust-100); color: var(--rust-500); }
.dish-thumb.acc-teal { background: var(--teal-100); color: var(--teal-600); }
.dish-thumb.acc-gold { background: var(--gold-100); color: var(--gold-700); }
.dish-thumb .ph { display: flex; flex-direction: column; align-items: center; gap: 7px; opacity: 0.85; }
.dish-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.dish-thumb .ph small { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.dish-tag { position: absolute; top: 10px; left: 10px; background: color-mix(in oklab, var(--surface) 90%, transparent); backdrop-filter: blur(4px); color: var(--fg-1); font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--radius-pill); box-shadow: var(--shadow-xs); }
.dish-body { padding: 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dish-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.dish-body p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.4; flex: 1; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.dish-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }
.dish-min { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 600; color: var(--gold-700); }
.chip:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   QUANTITY STEPPER
   ============================================================ */
.qty { display: inline-flex; align-items: center; gap: 0; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-pill); }
.qty button { width: 34px; height: 34px; border: 0; background: none; cursor: pointer; color: var(--primary); display: grid; place-items: center; border-radius: 50%; transition: background var(--dur-fast) var(--ease-out); }
.qty button:hover { background: var(--primary-soft); }
.qty button:disabled { color: var(--ink-400); cursor: not-allowed; }
.qty button:disabled:hover { background: none; }
.qty .n { min-width: 30px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; font-size: 15px; }
.qty--solid { border: 0; background: var(--primary); }
.qty--solid button { color: var(--on-primary); }
.qty--solid button:hover { background: rgba(255,255,255,0.16); }
.qty--solid .n { color: var(--on-primary); }

.addbtn { display: inline-flex; align-items: center; gap: 7px; background: var(--primary-soft); color: var(--primary); border: 0; font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: var(--radius-pill); cursor: pointer; transition: background var(--dur-fast) var(--ease-out); }
.addbtn:hover { background: var(--teal-200); }

/* ============================================================
   TOKENS / DONATIE / VRIJWILLIGER blokken
   ============================================================ */
.panel { background: var(--surface); border: 1px solid var(--line-300); border-radius: var(--radius-lg); padding: var(--space-5); }
.panel.fill-teal { background: var(--teal-600); color: var(--fg-on-dark); border-color: transparent; }
.panel.fill-gold { background: var(--gold-100); border-color: var(--gold-200); }
.panel-head { display: flex; align-items: flex-start; gap: 14px; }
.panel-head .ic { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center; flex: none; }
.panel h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin: 0 0 3px; letter-spacing: -0.01em; }
.panel p { font-size: 14px; margin: 0; line-height: 1.5; }
.fill-teal p { color: var(--teal-100); }
.drink-photo { flex: none; width: 200px; align-self: stretch; object-fit: cover; border-radius: var(--radius-md); }
@media (max-width: 720px) { .drink-photo { display: none; } }

.bundles { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.bundle { position: relative; flex: 1; min-width: 96px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px 10px; text-align: center; cursor: pointer; transition: all var(--dur-fast) var(--ease-out); }
.bundle:hover { border-color: var(--primary); }
.bundle b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.bundle span { font-size: 12px; color: var(--fg-3); }
.bundle .pop { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--accent-rust); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-pill); white-space: nowrap; }

.donate-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.chip { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-pill); padding: 9px 18px; font-weight: 700; cursor: pointer; font-variant-numeric: tabular-nums; transition: all var(--dur-fast) var(--ease-out); }
.chip:hover { border-color: var(--gold-400); }
.chip.is-on { background: var(--gold-300); border-color: var(--gold-300); color: var(--ink-900); }

/* children rows */
.kid-card { display: grid; grid-template-columns: 1fr 1fr auto; gap: var(--space-4); align-items: end; padding: var(--space-4); border: 1px solid var(--line-300); border-radius: var(--radius-md); margin-bottom: 12px; background: var(--surface); }
.kid-card .kid-no { position: absolute; }
.kid-del { background: none; border: 0; color: var(--fg-3); cursor: pointer; padding: 10px; border-radius: 50%; transition: all var(--dur-fast) var(--ease-out); height: 44px; }
.kid-del:hover { color: var(--danger); background: var(--danger-soft); }

/* ============================================================
   OVERZICHT (review)
   ============================================================ */
.review-sec { padding: var(--space-5); border-bottom: 1px solid var(--line-200); }
.review-sec:last-child { border-bottom: 0; }
.review-sec .rh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-sec .rh h3 { font-family: var(--font-display); font-size: var(--text-md); font-weight: 700; margin: 0; }
.kv { display: flex; gap: 14px; font-size: 14px; padding: 5px 0; }
.kv .k { color: var(--fg-3); min-width: 150px; }
.kv .v { color: var(--fg-1); font-weight: 600; }
.rline { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 14px; }
.rline .rqty { color: var(--primary); font-weight: 700; margin-right: 8px; }

/* ============================================================
   MOLLIE (betaal-mock)
   ============================================================ */
.mollie-wrap { min-height: 100vh; display: grid; place-items: center; background: #f4f4f6; padding: 24px; font-family: var(--font-body); }
.mollie { width: 100%; max-width: 420px; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px -8px rgba(20,20,30,0.18); overflow: hidden; }
.mollie-top { padding: 20px 24px; border-bottom: 1px solid #ededf0; display: flex; align-items: center; justify-content: space-between; }
.mollie-logo { font-weight: 800; font-size: 18px; color: #1a1a25; letter-spacing: -0.02em; }
.mollie-logo span { color: #0077ff; }
.mollie-amt { text-align: right; }
.mollie-amt .a { font-weight: 800; font-size: 18px; color: #1a1a25; }
.mollie-amt .m { font-size: 12px; color: #8a8a96; }
.mollie-body { padding: 24px; }
.mollie-body h4 { margin: 0 0 4px; font-size: 16px; color: #1a1a25; }
.mollie-body .sub { margin: 0 0 18px; font-size: 13px; color: #8a8a96; }
.mollie-method { display: flex; align-items: center; gap: 12px; border: 1.5px solid #e4e4ea; border-radius: 10px; padding: 14px; margin-bottom: 10px; cursor: pointer; transition: border-color 0.15s; }
.mollie-method:hover { border-color: #c4c4cc; }
.mollie-method.is-sel { border-color: #0077ff; box-shadow: 0 0 0 3px rgba(0,119,255,0.12); }
.mollie-method .ico { width: 34px; height: 34px; border-radius: 7px; display: grid; place-items: center; background: #f4f4f6; font-size: 18px; }
.mollie-method .nm { font-weight: 600; font-size: 14px; color: #1a1a25; flex: 1; }
.mollie-method .rad { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #c4c4cc; }
.mollie-method.is-sel .rad { border-color: #0077ff; background: radial-gradient(circle, #0077ff 38%, transparent 42%); }
.mollie-pay { width: 100%; margin-top: 16px; background: #0077ff; color: #fff; border: 0; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; }
.mollie-pay:hover { background: #0061d4; }
.mollie-cancel { display: block; width: 100%; text-align: center; margin-top: 12px; background: none; border: 0; color: #8a8a96; font-size: 13px; cursor: pointer; }
.mollie-spin { display: grid; place-items: center; padding: 40px 0; gap: 18px; }
.mollie-spin .ring { width: 44px; height: 44px; border: 4px solid #e4e4ea; border-top-color: #0077ff; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   BEVESTIGING + tijdlijn
   ============================================================ */
.confirm-wrap { max-width: 760px; margin: 0 auto; padding: clamp(24px,5vw,56px) clamp(16px,5vw,32px) 96px; }
.confirm-hero { text-align: center; margin-bottom: var(--space-7); }
.confirm-badge { width: 84px; height: 84px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--space-5); animation: pop var(--dur-slow) var(--ease-out) both; }
@keyframes pop { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-hero h1 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; text-wrap: balance; }
.confirm-hero .lead { max-width: 50ch; margin: 0 auto; }
.ordernr { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: var(--surface); border: 1px solid var(--line-300); border-radius: var(--radius-pill); padding: 8px 18px; font-size: 14px; }
.ordernr b { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

.timeline { position: relative; margin: var(--space-6) 0; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px; background: var(--line-300); }
.tl-step { position: relative; display: flex; gap: 20px; padding: 14px 0; }
.tl-step .tl-dot { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--line-300); color: var(--fg-3); z-index: 1; }
.tl-step.is-now .tl-dot { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }
.tl-step .tl-body h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 6px 0 4px; }
.tl-step .tl-body p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }
.tl-step .tl-when { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-rust); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .wizard-grid { grid-template-columns: 1fr; }
  .cart { position: static; }
  .cart.cart--desktop { display: none; }
  .stepper { display: none; }
  .mprogress { display: block; }
  .topbar .deadline { display: none; }
  .cartbar {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: var(--surface); border-top: 1px solid var(--line-300);
    box-shadow: 0 -8px 24px -10px rgba(56,42,28,0.18);
    padding: 12px clamp(16px,5vw,32px);
  }
  .cartbar .ct-info { line-height: 1.2; }
  .cartbar .ct-info small { color: var(--fg-3); font-size: 12px; }
  .cartbar .ct-info b { font-family: var(--font-display); font-size: 20px; }
}
@media (max-width: 560px) {
  .formgrid { grid-template-columns: 1fr; }
  .kid-card { grid-template-columns: 1fr; }
  .dishgrid { grid-template-columns: 1fr; }
}

/* low-profile site footer (with Beheer link) */
.site-foot { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 22px clamp(16px, 5vw, 56px) 28px; border-top: 1px solid var(--line-200); font-size: 12.5px; color: var(--fg-3); margin-top: auto; }
.site-foot a { color: var(--fg-3); text-decoration: none; border: 1px solid var(--line-300); padding: 5px 12px; border-radius: var(--radius-pill); transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast); }
.site-foot a:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-soft); }

.mprogress { margin-bottom: var(--space-5); }
.mprogress .mp-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.mprogress .mp-top b { color: var(--fg-1); }
.mprogress .mp-track { height: 6px; background: var(--surface-sunk); border-radius: var(--radius-pill); overflow: hidden; }
.mprogress .mp-fill { height: 100%; background: var(--primary); border-radius: var(--radius-pill); transition: width var(--dur-slow) var(--ease-out); }

/* ============================================================
   AANPASSEN (manage)
   ============================================================ */
.manage-wrap { max-width: 760px; margin: 0 auto; width: 100%; }
.manage-head { margin-bottom: var(--space-7); }
.manage-head .display { font-size: var(--text-2xl); font-weight: 700; margin: 10px 0 12px; }
.manage-summary { padding: var(--space-6); margin-top: var(--space-6); }
.ms-rows { margin-bottom: 18px; }
.ms-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 15px; padding: 7px 0; color: var(--fg-2); }
.ms-row span { white-space: nowrap; }
.ms-row span:last-child { font-weight: 600; color: var(--fg-1); }
.ms-row.ms-diff { border-top: 2px solid var(--line-300); margin-top: 6px; padding-top: 14px; font-size: 17px; }
.ms-row.ms-diff span { font-family: var(--font-display); font-weight: 700; color: var(--fg-1); }
.ro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.ro-grid > div { display: flex; flex-direction: column; gap: 2px; }
.ro-k { font-size: 12px; color: var(--fg-3); font-weight: 600; }
.ro-v { font-size: 15px; color: var(--fg-1); font-weight: 600; }
