/* Checkout — cloned from proven Shopify checkout (see .clone-ui/plan/ for evidence) */
:root {
  --accent: #2c6e65;
  --accent-dark: #265f57;
  --ink: #1a1a1a;
  --muted: #707070;
  --border: #dedede;
  --border-input: #d9d9d9;
  --summary-bg: #f5f5f5;
  --selected-fill: #f2f7f6;
  --savings: #108043;
  --error: #c0392b;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Brand logo ---------- */
.brand-logo { display: block; width: 300px; max-width: 72%; height: auto; }

/* ---------- Layout ---------- */
.wrap { display: block; }
.mobile-header { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.desktop-only { display: none; }

.form-col { padding: 8px 20px 40px; max-width: 660px; margin: 0 auto; }
.form-col .brand-logo { margin-bottom: 12px; }

section { margin-top: 28px; }
h2 { font-size: 21px; font-weight: 700; margin-bottom: 14px; }
h2.h2-sm { font-size: 18px; }

@media (min-width: 1000px) {
  body { background: linear-gradient(90deg, #fff 0%, #fff 52%, var(--summary-bg) 52%, var(--summary-bg) 100%); }
  .mobile-header, .summary-mobile, .mobile-checkout-footer { display: none; }
  .desktop-only { display: block; }
  .brand-logo.desktop-only { display: block; }
  .wrap {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
  }
  .form-col {
    max-width: none;
    margin: 0;
    padding: 40px 56px 64px;
    justify-self: end;
    width: 100%;
    max-width: 680px;
    background: #fff;
  }
  .summary-col {
    border-left: 1px solid var(--border);
    background: var(--summary-bg);
    padding: 40px 40px 40px 44px;
  }
  .summary-inner { max-width: 520px; position: sticky; top: 40px; }
}

/* ---------- Express checkout ---------- */
.express-section { margin-top: 20px; }
.express-caption { text-align: center; font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.or-divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--muted); font-size: 13px; margin-top: 20px;
}
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---------- Floating-label fields ---------- */
.fld { position: relative; margin-top: 14px; }
section .fld:first-of-type, .row .fld { margin-top: 14px; }
h2 + .fld { margin-top: 0; }
.fld input, .fld select {
  width: 100%; height: 48px;
  padding: 18px 12px 4px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius);
  font: inherit; font-size: 16px; color: var(--ink);
  background: #fff;
  outline: none;
  appearance: none;
}
@media (min-width: 1000px) {
  .fld input, .fld select { font-size: 14px; }
}
.fld input:focus, .fld select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.fld label {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 14px; pointer-events: none;
  transition: all 0.12s ease;
  white-space: nowrap; overflow: hidden; max-width: calc(100% - 26px); text-overflow: ellipsis;
}
.fld input:focus ~ label,
.fld input:not(:placeholder-shown) ~ label,
.fld-select label {
  top: 10px; transform: none; font-size: 12px;
}
.fld-select .caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.fld-search .search-ic { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.help-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: 6px; cursor: pointer;
  color: var(--muted); display: flex;
}
.help-tip {
  position: absolute; z-index: 40;
  right: -6px; bottom: calc(100% + 12px);
  width: 250px;
  background: #202020; color: #fff;
  font-size: 14px; line-height: 1.45; text-align: center;
  padding: 12px 16px; border-radius: 12px;
}
.help-tip::after {
  content: ""; position: absolute;
  right: 20px; top: 100%;
  border: 8px solid transparent; border-top-color: #202020;
}
.fld input.invalid, .fld select.invalid { border-color: var(--error); box-shadow: 0 0 0 1px var(--error); }

.row { display: flex; gap: 12px; }
.row .fld { flex: 1; min-width: 0; }
@media (max-width: 640px) {
  .row { flex-direction: column; gap: 0; }
}

/* ---------- Shipping method ---------- */
.ship-empty {
  background: #f4f4f4; border-radius: var(--radius);
  padding: 18px 16px; color: var(--muted); font-size: 14px;
}
.ship-options { border: 1px solid var(--border-input); border-radius: var(--radius); overflow: hidden; }
.ship-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 14px; cursor: pointer;
  border-bottom: 1px solid var(--border-input);
  position: relative;
}
.ship-opt:last-child { border-bottom: none; }
.ship-opt input { position: absolute; opacity: 0; }
.ship-opt.selected { background: var(--selected-fill); box-shadow: inset 0 0 0 2px var(--accent); border-radius: var(--radius); }
.ship-radio {
  width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--border-input); background: #fff; position: relative;
}
.ship-opt.selected .ship-radio { border-color: var(--accent); }
.ship-opt.selected .ship-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent);
}
.ship-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ship-title { font-size: 14px; font-weight: 600; }
.ship-date { font-size: 13px; color: var(--ink); }
.ship-sub { font-size: 13px; color: var(--muted); }
.ship-price { font-weight: 600; font-size: 14px; }

/* ---------- Payment ---------- */
.pay-sub { color: var(--muted); font-size: 14.5px; margin: -6px 0 14px; }
#payment-element { margin-bottom: 4px; }
.bill-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-top: 14px; cursor: pointer;
}
.bill-check input { position: absolute; opacity: 0; }
.checkmark {
  width: 18px; height: 18px; flex: none; border-radius: 4px;
  border: 1.5px solid var(--border-input); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.bill-check input:checked + .checkmark { background: var(--accent); border-color: var(--accent); }
.bill-check input:not(:checked) + .checkmark svg { display: none; }

/* ---------- Disclosure + Pay ---------- */
.disclosure {
  margin-top: 24px; font-size: 12.5px; line-height: 1.55; color: var(--muted);
}
.disclosure a { color: var(--accent); }
.pay-error {
  margin-top: 14px; padding: 12px 14px; border-radius: var(--radius);
  background: #fdf0ef; border: 1px solid #f5c6c1; color: var(--error); font-size: 13.5px;
}
.pay-btn {
  width: 100%; height: 56px; margin-top: 16px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius);
  font: inherit; font-size: 17px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pay-btn[hidden] { display: none; }
.pay-btn:hover { background: var(--accent-dark); }
.pay-btn:disabled { opacity: 0.6; cursor: default; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Order summary ---------- */
.prod-row { display: flex; align-items: flex-start; gap: 14px; }
.prod-thumb { position: relative; flex: none; }
.prod-thumb img {
  width: 64px; height: 64px; object-fit: cover;
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff;
}
.qty-badge {
  position: absolute; top: -8px; right: -8px;
  min-width: 21px; height: 21px; padding: 0 6px;
  background: rgba(0,0,0,0.75); color: #fff;
  border-radius: 50%; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.prod-info { flex: 1; padding-top: 4px; }
.prod-name { font-size: 14px; font-weight: 500; }
.prod-variant { font-size: 12px; color: var(--muted); margin-top: 2px; }
.prod-save { font-size: 12px; color: var(--savings); font-weight: 600; margin-top: 4px; }
.prod-price { text-align: right; padding-top: 4px; }
.prod-price .compare { display: block; font-size: 12px; color: var(--muted); text-decoration: line-through; }
.prod-price .actual { font-size: 14px; font-weight: 500; }
.prod-price .permo { font-size: 12px; color: var(--muted); }

.discount-row { display: flex; gap: 10px; margin-top: 20px; }
.discount-row .fld { flex: 1; margin-top: 0; }
.fld-discount input { background: #fff; }
.apply-btn {
  flex: none; padding: 0 20px; height: 48px;
  background: #ececec; color: #8a8a8a;
  border: 1px solid var(--border-input); border-radius: var(--radius);
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
}
.apply-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.discount-msg { font-size: 12.5px; margin-top: 8px; }
.discount-msg.ok { color: var(--savings); }
.discount-msg.err { color: var(--error); }

/* inline per-field error line (email) */
.fld-msg { color: var(--error); font-size: 12.5px; margin: -8px 0 12px 2px; }

/* PayPal gate note — shown when a promo/express total can't be billed by PayPal */
.pp-gate-note { font-size: 12.5px; color: var(--muted); padding: 10px 14px; border-top: 1px solid var(--border); background: #fafafa; }

/* Recurring-billing disclosure above the pay button. Deliberately readable — not
   fine print: an undisclosed 28-day cycle is what turns into chargebacks. */
.sub-terms { margin: 18px 0 12px; font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.sub-terms b { color: var(--ink); font-weight: 600; }

/* already-purchased banner (back-button double-charge guard) */
.ap-banner { border: 1px solid var(--accent); background: #f2f8f7; color: var(--ink); border-radius: 10px; padding: 14px 16px; margin: 0 0 18px; font-size: 14px; line-height: 1.6; }
.ap-banner a { color: var(--accent); font-weight: 600; }
.ap-banner .ap-sep { color: var(--muted); margin: 0 6px; }

.totals { margin-top: 22px; }
.t-row { display: flex; justify-content: space-between; font-size: 14px; margin-top: 10px; }
.t-row .t-muted { color: var(--muted); }
.t-total { margin-top: 14px; font-size: 19px; font-weight: 600; align-items: baseline; }
.usd { font-size: 12px; color: var(--muted); font-weight: 400; margin-right: 4px; }
.t-note { margin-top: 8px; font-size: 12px; color: var(--muted); text-align: right; }

/* ---------- Mobile summary drawer ---------- */
.summary-mobile {
  background: var(--summary-bg);
  border-bottom: 1px solid var(--border);
}
.summary-mobile summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; cursor: pointer;
}
.summary-mobile summary::-webkit-details-marker { display: none; }
.sm-label { color: var(--accent); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.summary-mobile[open] .sm-label { flex: 1; color: var(--ink); font-size: 21px; font-weight: 800; }
.summary-mobile[open] .sm-label svg { transform: rotate(180deg); margin-left: auto; }
.summary-mobile[open] .sm-total { display: none; }
.sm-total { font-size: 19px; font-weight: 600; }
.summary-body { padding: 4px 20px 20px; }

/* ---------- Mobile total row above Pay ---------- */
.mobile-total {
  display: flex; align-items: center; gap: 14px; margin-top: 24px; cursor: pointer;
}
.mobile-total img {
  width: 56px; height: 56px; object-fit: cover;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.mt-label { flex: 1; font-size: 21px; font-weight: 800; line-height: 1.25; }
.mt-items { font-size: 14px; color: var(--muted); font-weight: 400; }
.mt-amount { display: inline-flex; align-items: center; }
.paypal-container:empty { display: none; }
.paypal-container { margin-top: 8px; }

/* ---------- Payment method group (Shopify-style) ---------- */
.pm-group { margin-top: 4px; border: 1px solid var(--border-input); border-radius: var(--radius); }
.pm-method { border-top: 1px solid var(--border-input); }
.pm-method:first-child { border-top: none; }
.pm-head {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 15px 14px;
  background: #fff; border: none; font: inherit; cursor: pointer;
  border-radius: var(--radius);
}
.pm-method.selected > .pm-head {
  background: var(--selected-fill);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.pm-method:first-child > .pm-head { border-radius: var(--radius) var(--radius) 0 0; }
.pm-method:last-child > .pm-head { border-radius: 0 0 var(--radius) var(--radius); }
.pm-method:only-child > .pm-head { border-radius: var(--radius); }
.pm-radio {
  width: 19px; height: 19px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--border-input); background: #fff; position: relative;
}
.pm-method.selected .pm-radio { border-color: var(--accent); background: var(--accent); }
.pm-method.selected .pm-radio::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff;
}
.pm-name { flex: 1; text-align: left; font-size: 15px; font-weight: 700; color: var(--ink); }
.pm-brands { display: flex; gap: 4px; }
.pm-brands svg, .pm-brands img { width: 38px; height: 24px; display: block; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.pm-logo { font-style: italic; font-weight: 800; font-size: 16px; letter-spacing: -0.3px; }
.pm-logo i { color: #003087; font-style: italic; }
.pm-logo em { color: #0070e0; font-style: italic; }

/* Credit card body — grey panel like Shopify */
.pm-cc-body { padding: 16px 14px; background: var(--summary-bg); }
.cc-fld {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-input);
  border-radius: var(--radius);
  height: 48px;
  display: flex; align-items: center;
  padding: 0 44px 0 12px;
  margin-top: 12px;
}
.cc-fld:first-child { margin-top: 0; }
.cc-fld.focus { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.cc-el { flex: 1; }
.cc-ic { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.cc-fld input {
  flex: 1; border: none; outline: none; background: transparent;
  font: inherit; font-size: 16px; color: var(--ink); height: 100%;
  padding: 0;
}
.cc-fld input::placeholder { color: var(--muted); }
.cc-fld input.invalid { color: var(--error); }
.cc-fld:has(input.invalid) { border-color: var(--error); box-shadow: 0 0 0 1px var(--error); }
.cc-fld:has(input:focus) { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
@media (min-width: 1000px) {
  .cc-fld input { font-size: 14px; }
}
.pm-cc-body .bill-check { margin-top: 14px; }

/* PayPal body */
.pm-paypal-body { padding: 14px; border-top: 1px solid var(--border-input); background: #fafafa; }
.pm-paypal-note { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

/* ---------- Mobile footer: Add discount + total ---------- */
.add-discount {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px; padding: 12px 18px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--border-input); border-radius: var(--radius);
  font: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
}
.mobile-checkout-footer .discount-row { margin-top: 14px; }
.usd-pill, .t-total .usd {
  background: #f0f0f0; border-radius: 999px;
  padding: 3px 9px; font-size: 12px; color: var(--muted); font-weight: 500;
  margin-right: 6px;
}
.mt-price { font-size: 24px; font-weight: 800; }
.mt-caret { color: var(--ink); margin-left: 2px; }

/* [hidden] must always win over display rules */
[hidden] { display: none !important; }

/* ---------- Address suggestions panel ---------- */
.addr-suggest {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: hidden;
}
.as-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 6px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
}
.as-close {
  background: none; border: none; font-size: 20px; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 0 2px;
}
.as-item {
  display: block; width: 100%; text-align: left;
  padding: 10px 14px; background: #fff; border: none;
  font: inherit; font-size: 14px; color: var(--ink); cursor: pointer;
}
.as-item:hover { background: #f5f5f5; }
.as-item strong { font-weight: 700; }

/* --- Trust elements (2026-07-16) — static additions only, no interactive elements --- */
.brand-sub{font-size:11.5px;color:#707070;margin-top:4px}
.trust-row{display:flex;gap:10px;margin-top:14px}
.trust-item{flex:1;display:flex;flex-direction:column;align-items:center;text-align:center;gap:6px;font-size:11.5px;color:#555;line-height:1.35;padding:10px 6px;background:#f8f8f8;border:1px solid #e8e8e8;border-radius:8px}
.trust-item b{color:#1a1a1a;font-size:12px;display:block}
.trust-item svg{flex:none}
.ssl-line{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:10px;font-size:11.5px;color:#8a8a8a}
.urgency-line{display:flex;align-items:center;gap:8px;margin-top:16px;font-size:12.5px;color:#7a5b1e;background:#fdf7ea;border:1px solid #f0e2bd;border-radius:8px;padding:9px 12px;line-height:1.4}
.sum-trust{margin-top:20px;border-top:1px solid #dedede;padding-top:12px}
.sum-trust li{list-style:none;display:flex;gap:8px;font-size:12.5px;color:#555;line-height:1.4;margin-top:7px}
.sum-trust .tk{color:#108043;font-weight:700;flex:none}
@media(max-width:430px){.trust-row{flex-direction:column;gap:8px}.trust-item{flex-direction:row;text-align:left;align-items:center;padding:9px 12px}}

/* ---------- Just Jenny: trust-balk (zoals de Shopify-checkout header) + scorte-melding ---------- */
.jj-trust{max-width:470px;border:1px solid #e6e6e6;border-radius:6px;overflow:hidden;font-size:11px;background:#fff}
.jj-trust .t1{background:#f2f2f2;padding:8px 12px 2px;text-align:center;font-weight:700;font-size:13px}
.jj-trust .t2{background:#f2f2f2;padding:2px 12px 8px;text-align:center;color:#444}
.jj-trust .t3{padding:8px 12px;text-align:center}
.jj-trust .t3 span{background:#e9ecef;border-radius:999px;padding:4px 12px;font-weight:600;color:#2b3a33}
.form-col .jj-trust{margin-bottom:22px}
.mobile-header .jj-trust{margin:0 auto;font-size:10px}
.mobile-header .jj-trust .t1{font-size:12px}
.jj-stock{margin:4px 0 18px;padding:12px 14px;border:1px solid #f1d9a6;background:#fff8e8;border-radius:10px;font-size:13.5px;color:#6b4e0f;line-height:1.45}
.sub-terms a{color:inherit}

/* Juridische tekst onder de voordelen: klein en lichtgrijs */
.sub-terms.legal{margin:14px 0 0;font-size:11.5px;line-height:1.55;color:#9a9a9a;text-align:center}
.sub-terms.legal a{color:#8a8a8a;text-decoration:underline}

/* ---------- Just Jenny header: logo + social proof + balk ---------- */
:root{--jj-brand:#df8455}
.jj-header{background:#fff;border-bottom:1px solid var(--border);padding:16px 16px 14px}
.jj-top{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap}
.jj-logo{height:28px;width:auto;display:block}
.jj-social{display:flex;align-items:center;gap:8px;font-size:14px;color:#333}
.jj-social b{color:var(--jj-brand)}
.jj-stars{color:#f5a623;letter-spacing:1px;font-size:15px}
.jj-bar{max-width:640px;margin:12px auto 0;background:var(--jj-brand);color:#fff;border-radius:10px;padding:9px 14px;display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;font-weight:700;font-size:13.5px;letter-spacing:.3px;text-align:center}
.jj-bar i{font-style:normal;opacity:.85}
@media (max-width:640px){
  .jj-header{padding:12px 12px 10px}
  .jj-logo{height:22px}
  .jj-top{gap:10px}
  .jj-social{font-size:12.5px}
  .jj-bar{font-size:10.5px;gap:6px;padding:8px 8px;letter-spacing:0;margin-top:10px}
}
.jj-bar em{font-style:normal}
@media (max-width:640px){ .jj-hide-m{display:none} }
.jj-bar span{white-space:nowrap}
@media (max-width:640px){ .jj-bar{font-size:10px;gap:5px;padding:8px 6px} }

/* Bestelknop in de Just Jenny-groen (zoals de Shopify-checkout) */
.pay-btn{background:#87b995}
.pay-btn:hover{background:#76ab85}

/* v7: kleiner logo, sterren in blokjes (Trustpilot-stijl), icoontjes in de balk */
.jj-logo{height:22px}
.jj-tp{display:inline-flex;gap:2px}
.jj-tp i{width:20px;height:20px;background:#00b67a;display:inline-flex;align-items:center;justify-content:center}
.jj-tp svg{width:15px;height:15px}
.jj-bar span{display:inline-flex;align-items:center;gap:6px}
.jj-bar span svg{width:15px;height:15px;flex:none}
@media (max-width:640px){
  .jj-logo{height:17px}
  .jj-tp i{width:16px;height:16px}
  .jj-tp svg{width:12px;height:12px}
  .jj-bar span{gap:3px}
  .jj-bar span svg{width:11px;height:11px}
}
.jj-bar{max-width:760px}
.jj-bar b{font-weight:700}
@media (max-width:640px){
  .jj-bar{font-size:9.5px;gap:4px;padding:8px 5px}
  .jj-bar span svg{width:10px;height:10px}
}

/* v8: Trustpilot-blok in hun stijl (Eccellente + sterren + "recensioni su [logo]") */
.jj-tpbox{display:flex;align-items:center;gap:8px;font-size:14px;color:#191919}
.jj-tpbox .r1,.jj-tpbox .r2{display:flex;align-items:center;gap:6px;white-space:nowrap}
.jj-tpbox b{font-weight:700;color:#191919}
.jj-tp i{background:#00b67a}
.jj-tp-logo{height:20px;width:auto;display:inline-block;vertical-align:middle}
@media (max-width:640px){
  .jj-top{flex-wrap:nowrap;justify-content:space-between;gap:10px;max-width:420px;margin:0 auto}
  .jj-logo{height:13px;flex:none}
  .jj-tpbox{flex-direction:column;align-items:flex-end;gap:3px;font-size:11px}
  .jj-tpbox .r1,.jj-tpbox .r2{gap:4px}
  .jj-tp i{width:14px;height:14px}
  .jj-tp svg{width:10px;height:10px}
  .jj-tp-logo{height:14px}
}

/* ===== v9: header in Resilia-stijl (logo · pil met klanten · 3 voordelen) ===== */
.jh{background:#fff;border-bottom:1px solid var(--border);padding:18px 16px 14px;text-align:center}
.jh-logo{height:30px;width:auto;display:block;margin:0 auto}
.jh-pill{display:inline-flex;align-items:center;gap:14px;margin:14px auto 0;padding:9px 26px 9px 12px;border-radius:12px;
  background:linear-gradient(90deg,#fdeee4 0%,#fbe6da 50%,#fdf3ec 100%)}
.jh-avs{display:inline-flex}
.jh-av{position:relative;width:36px;height:36px;border-radius:50%;border:2px solid #fff;margin-left:-11px;overflow:hidden;
  display:inline-flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.12)}
.jh-av:first-child{margin-left:0}
.jh-av img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.jh-av1{background:#df8455}.jh-av2{background:#c96f43}.jh-av3{background:#e9a07a}
.jh-count{font-size:19px;letter-spacing:.3px;color:#1a1a1a;white-space:nowrap}
.jh-count b{font-weight:800}
.jh-ben{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:12px;color:#333;font-size:15px}
.jh-ben span{display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.jh-ben b{font-weight:700}
.jh-ben svg{width:20px;height:20px;flex:none;color:#444}
.jh-ben i{width:1px;height:22px;background:#d9d9d9}
@media (max-width:640px){
  .jh{padding:14px 10px 12px}
  .jh-logo{height:22px}
  .jh-pill{gap:10px;padding:7px 16px 7px 10px;margin-top:11px}
  .jh-av{width:28px;height:28px;margin-left:-9px;font-size:11px}
  .jh-count{font-size:14.5px}
  .jh-ben{gap:8px;font-size:11.5px;margin-top:10px}
  .jh-ben span{gap:4px}
  .jh-ben svg{width:15px;height:15px}
  .jh-ben i{height:16px}
}
.jh-ben em{font-style:normal}
@media (max-width:640px){ .jh-ben{gap:6px;font-size:11px} }

/* v10: header compacter */
.jh{padding:12px 16px 10px}
.jh-logo{height:22px}
.jh-pill{gap:10px;margin-top:10px;padding:6px 18px 6px 8px;border-radius:10px}
.jh-av{width:28px;height:28px;margin-left:-8px;font-size:11px}
.jh-count{font-size:14.5px}
.jh-ben{gap:12px;margin-top:9px;font-size:13px}
.jh-ben svg{width:16px;height:16px}
.jh-ben span{gap:5px}
.jh-ben i{height:16px}
@media (max-width:640px){
  .jh{padding:10px 8px 9px}
  .jh-logo{height:17px}
  .jh-pill{gap:8px;padding:5px 13px 5px 7px;margin-top:8px}
  .jh-av{width:22px;height:22px;margin-left:-7px;font-size:9px;border-width:1.5px}
  .jh-count{font-size:12px}
  .jh-ben{gap:6px;font-size:10.5px;margin-top:8px}
  .jh-ben span{gap:3px}
  .jh-ben svg{width:13px;height:13px}
  .jh-ben i{height:13px}
}

/* v11: reserveringstimer + preview van de snelle knoppen */
.jj-timer{display:flex;align-items:center;gap:12px;margin:18px 0 4px;padding:14px 16px;border:1px solid #f3d3d3;background:#fcf4f4;border-radius:12px;color:#4a0d0d;font-size:15px;font-weight:600;line-height:1.35}
.jj-timer svg{width:22px;height:22px;flex:none;color:#c9302c}
.jj-timer b{font-weight:800;font-variant-numeric:tabular-nums}
.jj-timer.done{border-color:#f1dca7;background:#fff8e6;color:#6b4e0f}
.jj-timer.done svg{color:#c98a0c}
.ece-preview{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.ece-preview span{height:48px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:19px;font-weight:700;cursor:default;user-select:none}
.ece-preview .pp{background:#ffc439}
.ece-preview .pp i{color:#003087;font-style:italic}.ece-preview .pp em{color:#0070e0;font-style:italic}
.ece-preview .gp{background:#000;color:#fff;font-weight:500;gap:4px}
.ece-preview .gp .g{font-weight:700;background:conic-gradient(#4285f4 0 25%,#34a853 0 50%,#fbbc05 0 75%,#ea4335 0);-webkit-background-clip:text;background-clip:text;color:transparent}
@media (max-width:640px){ .jj-timer{font-size:13.5px;padding:12px 13px;gap:10px} }
.jj-timer{font-size:14.5px}

/* v12: vervaldatum + CVC naast elkaar, "+5"-badge, placeholders in preview */
.cc-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.cc-row .cc-fld{margin-top:0}
.cc-ph{color:var(--muted);font-size:15px;line-height:1;pointer-events:none}
.pm-more{display:inline-flex;align-items:center;justify-content:center;min-width:30px;height:24px;padding:0 5px;border-radius:3px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1);font-size:12px;color:#444;font-weight:500}
@media (max-width:640px){ .cc-ph{font-size:14px} .cc-row{gap:10px} }
.cc-ph{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* v13: PayPal (links) en Google/Apple Pay (rechts) naast elkaar */
.express-row{display:flex;gap:10px;align-items:stretch}
.express-row > div{flex:1;min-width:0}
.express-row > div:empty{display:none}
.paypal-container{margin:0}
