
  :root{
  --ink:#1c2733;
  --ink-2:#5b6773;
  --ink-3:#7a8590;
  --surface:#f5f8fa;
  --fill:#e4e9ee;
  --fill-hover:#d8dfe6;
  --line:rgba(28,39,51,.1);
  --line-strong:rgba(28,39,51,.18);
  --radius:12px;
  --radius-sm:8px;
}



/* ---------- card ---------- */
.card{
  width:100%;max-width:340px;display:flex;flex-direction:column;
  background:var(--surface);border-radius:var(--radius);overflow:hidden;
  box-shadow:0 1px 2px rgba(28,39,51,.05);
}

/* ---------- photo header ---------- */
.card__media{position:relative;height:240px;background:var(--fill)}
.card__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.card__scrim{
  position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(28,39,51,.5) 0%,rgba(28,39,51,.1) 35%,rgba(28,39,51,.15) 55%,rgba(28,39,51,.85) 100%);
}
.card__top{
  position:absolute;top:20px;left:24px;right:24px;
  display:flex;justify-content:space-between;align-items:flex-start;
  color:#fff;pointer-events:none;
}
.kicker{
  display:flex;align-items:center;gap:8px;
  font:500 11px "IBM Plex Mono",monospace;letter-spacing:.08em;text-transform:uppercase;
}
.kicker::before{content:"";width:6px;height:6px;border-radius:50%;background:currentColor}
.card__topleft{display:flex;flex-direction:column;gap:10px}
.card__price{font-weight:500;font-size:40px;line-height:1;letter-spacing:-.03em}
.card__title{
  position:absolute;left:24px;right:24px;bottom:20px;pointer-events:none;
  color:#fff;font-weight:500;font-size:24px;line-height:1.15;letter-spacing:-.02em;text-wrap:pretty;
}
.card__title span{color:rgba(255,255,255,.65)}

/* ---------- tags ---------- */
.tag{
  display:inline-flex;align-items:center;gap:6px;align-self:flex-start;
  font-size:12px;font-weight:500;padding:4px 10px;border-radius:999px;
  background:var(--fill);color:var(--ink);
}
.tag--onphoto{background:rgba(255,255,255,.92);color:var(--ink)}

/* ---------- body ---------- */
.card__body{display:flex;flex-direction:column;gap:10px;padding:18px 24px 0}
.card__desc{margin:0;font-size:14px;line-height:1.55;color:var(--ink-2)}

/* ---------- biomarkers dropdown ---------- */
.markers{padding:16px 24px 0}
.markers__toggle{
  width:100%;display:flex;align-items:center;gap:8px;
  font:500 13px "Inter",sans-serif;padding:10px 12px;
  border:0;border-radius:var(--radius-sm);background:var(--fill);color:var(--ink);cursor:pointer;
}
.markers__toggle:hover{background:var(--fill-hover)}
.markers__toggle:focus-visible{outline:2px solid var(--ink);outline-offset:2px}
.markers__count{margin-right:auto}
.markers__hint{color:var(--ink-2)}
.markers__caret{transition:transform .15s}
.markers__toggle[aria-expanded="true"] .markers__caret{transform:rotate(180deg)}
.markers__list{display:none;flex-wrap:wrap;gap:0.2em;padding-top:10px;padding-left:0;margin:0;list-style:none}
.markers__list.is-open{display:flex; justify-content: flex-start;}
.markers__list li{font-size:12px;padding:4px 10px;border-radius:999px;border:1px solid var(--line-strong)}

/* ---------- actions ---------- */
.card__actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:16px 24px 24px}
.btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font:500 14px "Inter",sans-serif;padding:12px 16px;
  border:0;border-radius:var(--radius-sm);cursor:pointer;
}
.btn:focus-visible{outline:2px solid var(--ink);outline-offset:2px}
.btn--primary{background:var(--ink);color:#fff}
.btn--primary:hover{background:#2b3947}
.btn--primary:active{background:#111a24}
.btn--secondary{background:transparent;color:var(--ink);border:1px solid var(--line-strong)}
.btn--secondary:hover{background:var(--fill)}

/* ---- Rail: base = mobile ---- */
.product-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;

  /* full-bleed out of .padding-global so a card peeks at the edge */
  margin-inline: calc(50% - 50vw);
  padding-inline: 20px;

  overscroll-behavior-x: contain;      /* stops iOS back-swipe hijack */
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-rail::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.product-rail > article {
  flex: 0 0 82vw;                      /* one card + a clear peek */
  scroll-snap-align: center;
  max-width: 360px;
}

/* narrow cards: one button per row */
.product-rail .card__actions { grid-template-columns: 1fr; gap: 8px; }

/* header stacks, arrows hidden — swipe is the interaction on touch */
.headline_features { display: flex; flex-direction: column; gap: 20px; }
.rail-nav { display: none; }

/* ---- 600px up ---- */
@media (min-width: 600px) {
  .product-rail { gap: 16px; padding-inline: 32px; }
  .product-rail > article { flex-basis: 46%; scroll-snap-align: start; }
  .product-rail .card__actions { grid-template-columns: 1fr 1fr; }
}

/* ---- 992px up: back inside the container, arrows return ---- */
@media (min-width: 992px) {
  .product-rail {
    margin-inline: 0;
    padding-inline: 0 32px;
    scrollbar-width: none;           /* position is shown by .rail-dots instead of a scrollbar */
  }
  .product-rail > article { flex-basis: clamp(300px, 30%, 360px); }

  .headline_features {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
  .rail-nav { display: flex; gap: 8px; flex-shrink: 0; }
}

.rail-nav__btn {
  width: 44px; height: 44px;
  padding: 0;
  display: grid; place-items: center;
}
.rail-nav__btn[disabled] { opacity: .45; pointer-events: none; }
.rail-nav[hidden] { display: none; }   /* the script hides the arrows when the rail does not overflow */

/* ---------- rail dots: centered position indicator under a rail ---------- */
.rail-dots { display: flex; justify-content: center; gap: 10px; padding-top: 8px; }
.rail-dots__dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line-strong); cursor: pointer;
  transition: background .2s, transform .2s;
}
.rail-dots__dot:hover { background: var(--ink-3); }
.rail-dots__dot.is-active { background: var(--ink); transform: scale(1.25); }
.rail-dots__dot:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }


/* ---------- testimonials: review rail (Kiyoh cards, same rail mechanics as .product-rail) ---------- */
.headline_features .headline_testimonial { margin-bottom: 0; max-width: var(--width--6-columns); }
.headline_testimonial a { text-decoration: underline; text-underline-offset: .2em; }
.headline_testimonial a:hover { color: var(--color-tone-strong); }

.review-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.review-rail::-webkit-scrollbar { display: none; }
.review-rail > article { flex: 0 0 86%; scroll-snap-align: start; display: flex; }
.review-rail .content_testimonial { width: 100%; flex: 1 1 auto; gap: var(--spacing--space-small); }  /* fills the card in both row and column card layouts */
.review-rail .quotes_testimonial-v2 { width: var(--spacing--space-xsmall); }
.review-rail .text-size-large { margin: 0; }

@media (min-width: 600px) { .review-rail > article { flex-basis: calc((100% - 16px) / 2); } }
@media (min-width: 992px) { .review-rail > article { flex-basis: calc((100% - 32px) / 3); } }


/* ---------- product page (single-product.html) ---------- */
.section_product { padding-top: var(--section-padding--large); padding-bottom: var(--section-padding--small); }
.section_related { padding-top: 0; }

.pdp-crumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pdp-crumbs a { color: inherit; text-decoration: none; }
.pdp-crumbs a:hover { color: var(--ink); }

.pdp-hero { position: relative; height: 26rem; border-radius: var(--radius); overflow: hidden; background: var(--fill); }
.pdp-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-hero__top { position: absolute; top: 24px; left: 24px; right: 24px; display: flex; gap: 16px; flex-wrap: wrap; color: #fff; pointer-events: none; }
.pdp-hero__title { position: absolute; left: 24px; right: 24px; bottom: 24px; margin: 0; color: #fff; pointer-events: none; text-wrap: balance; }
.pdp-hero__title span { color: rgba(255, 255, 255, .65); }

.pdp-cols { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; margin-top: 24px; }
.pdp-stack { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.pdp-panel { background: var(--surface); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.pdp-panel--plain { background: transparent; padding: 0; box-shadow: none; }
.pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag--outline { background: transparent; border: 1px solid var(--line-strong); }

.pdp-markers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pdp-mrow { display: flex; align-items: baseline; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--fill); }
.pdp-mrow b { font-weight: 500; font-size: 14px; }
.pdp-mrow > span { font-size: 13px; color: var(--ink-2); }
.pdp-tat { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; flex: none; color: var(--ink-3); white-space: nowrap; }

.pdp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pdp-step { display: flex; flex-direction: column; gap: 10px; }
.pdp-step__n { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 500; }

.pdp-prep { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pdp-prep li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.pdp-prep svg { flex: none; margin-top: 4px; color: var(--ink); }

.pdp-order { position: sticky; top: 7rem; background: var(--surface); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.pdp-order__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.pdp-order__price { font-size: 40px; line-height: 1; font-weight: 500; letter-spacing: -.03em; }
.pdp-order .btn { width: 100%; text-decoration: none; }
.pdp-meta { margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); padding-top: 16px; font-size: 13px; line-height: 1.5; }
.pdp-meta div { display: flex; gap: 16px; }
.pdp-meta dt { color: var(--ink-3); width: 112px; flex: none; }
.pdp-meta dd { margin: 0; color: var(--ink); }

@media (max-width: 991px) {
  .pdp-hero { height: 20rem; }
  .pdp-cols { grid-template-columns: minmax(0, 1fr); }
  .pdp-order { position: static; order: -1; }
  .pdp-markers, .pdp-steps { grid-template-columns: 1fr; }
}

/* mobile order bar (single-product.html): fixed to the bottom under 992px, shown by script after the order panel scrolls away */
.pdp-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform .25s ease;
}
.pdp-stickybar.is-visible { transform: none; }
.pdp-stickybar__info { min-width: 0; line-height: 1.3; }
.pdp-stickybar__info > div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdp-stickybar .btn { flex: none; }
body.has-stickybar { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 992px) { .pdp-stickybar { display: none; } body.has-stickybar { padding-bottom: 0; } }

/* ---------- cart: nav button + badge ---------- */
a.btn { text-decoration: none; }
.cart-nav { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--fill); color: var(--ink); flex: none; }
.cart-nav:hover { background: var(--fill-hover); }
.cart-nav__badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--ink); color: #fff; font: 500 11px/18px "Inter", sans-serif; text-align: center; }
.cart-nav__badge[hidden] { display: none; }

/* ---------- added state on Bestellen buttons ---------- */
.btn.is-added { background: var(--fill); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn.is-added:hover { background: var(--fill-hover); }
.btn.is-added > svg { display: none; }
.btn.is-disabled { opacity: .5; pointer-events: none; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn--block { width: 100%; }

/* ---------- cart drawer: bottom sheet on mobile, right panel from 600px ---------- */
html.cart-open { overflow: hidden; }
.cart-drawer { position: fixed; inset: 0; z-index: 1200; visibility: hidden; pointer-events: none; }
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.cart-drawer__backdrop { position: absolute; inset: 0; background: rgba(28, 39, 51, .45); opacity: 0; transition: opacity .2s; }
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; left: 0; right: 0; bottom: 0; max-height: 85vh;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border-radius: var(--radius) var(--radius) 0 0;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%); transition: transform .25s ease; outline: none;
}
.cart-drawer.is-open .cart-drawer__panel { transform: none; }
@media (min-width: 600px) {
  .cart-drawer__panel { top: 0; left: auto; width: min(420px, 100%); max-height: none; border-radius: 0; padding: 24px; transform: translateX(100%); }
}
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__close { border: 0; background: var(--fill); color: var(--ink); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.cart-drawer__close:hover { background: var(--fill-hover); }
.cart-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; overflow: auto; }
.cart-list:empty { display: none; }
.cart-item { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px; border-radius: var(--radius-sm); background: var(--surface); }
.cart-item__img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); background: var(--fill); display: block; }
.cart-item__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; font-size: 14px; }
.cart-item__body span { color: var(--ink-2); }
.cart-item__remove { border: 0; background: none; padding: 4px; color: var(--ink-2); font-size: 13px; text-decoration: underline; cursor: pointer; }
.cart-item__remove:hover { color: var(--ink); }
.cart-empty { margin: 0; }
.cart-empty[hidden] { display: none; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--line); font-size: 18px; }
.cart-drawer__foot { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* ---------- checkout: split view (order overview | stepper + form) ---------- */
.section_checkout { padding-top: var(--section-padding--large); padding-bottom: var(--section-padding--small); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.checkout-split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
@media (min-width: 992px) {
  .checkout-split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; }
  .checkout-side { position: sticky; top: 7rem; }
}

/* left: order overview */
.checkout-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--ink-2); text-decoration: none; font-size: 15px; }
.checkout-back:hover { color: var(--ink); }
.checkout-side__toggle { display: none; }
.checkout-summary { display: flex; flex-direction: column; gap: 16px; padding: 20px; background: var(--surface); border-radius: var(--radius); box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.checkout-summary__title { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
.checkout-items .cart-item { background: #fff; border: 1px solid var(--line); }
.checkout-totals { margin: 0; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.checkout-totals div { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; color: var(--ink-2); }
.checkout-totals dd { margin: 0; color: var(--ink); }
.checkout-totals__grand { padding-top: 10px; border-top: 1px solid var(--line); font-size: 20px; font-weight: 500; }
.checkout-totals__grand dt { color: var(--ink); }
.checkout-note { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-3); }
.checkout-side__legal { margin: 16px 0 0; font-size: 13px; color: var(--ink-3); }
.checkout-side__legal a { color: inherit; }

/* right: white panel */
.checkout-main { background: #fff; border-radius: var(--radius); padding: 24px 20px; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
@media (min-width: 600px) { .checkout-main { padding: 32px; } }
@media (min-width: 992px) { .checkout-main { padding: 40px 48px; } }
.checkout-main--solo { max-width: 640px; margin: 0 auto; }
.checkout-split--solo { display: block; }
.checkout-summary__number { margin: -10px 0 0; font-size: 13px; color: var(--ink-3); }
.checkout-main__title { margin: 0 0 8px; font-size: 24px; line-height: 1.2; font-weight: 500; letter-spacing: -.02em; }
.checkout-main__sub { margin: 0 0 24px; font-size: 15px; line-height: 1.5; color: var(--ink-2); }

/* stepper */
.checkout-steps { list-style: none; margin: 0 0 28px; padding: 0 0 20px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.checkout-step { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-3); white-space: nowrap; }
.checkout-step + .checkout-step { flex: 1; }
.checkout-step + .checkout-step::before { content: ""; flex: 1; min-width: 12px; height: 1px; margin: 0 12px; background: var(--line-strong); }
.checkout-step__n { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; font-size: 13px; font-weight: 500; }
.checkout-step__n svg { display: none; }
.checkout-step.is-current { color: var(--ink); font-weight: 500; }
.checkout-step.is-current .checkout-step__n { background: var(--ink); border-color: var(--ink); color: #fff; }
.checkout-step.is-done { color: var(--ink); }
.checkout-step.is-done .checkout-step__n { border-color: var(--ink); color: var(--ink); }
.checkout-step.is-done .checkout-step__n span { display: none; }
.checkout-step.is-done .checkout-step__n svg { display: block; }
@media (max-width: 599px) {
  .checkout-step { font-size: 13px; gap: 6px; }
  .checkout-step__n { width: 26px; height: 26px; font-size: 12px; }
  .checkout-step + .checkout-step::before { margin: 0 6px; }
}

/* form */
.cf-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
@media (min-width: 600px) { .cf-grid { grid-template-columns: 1fr 1fr; column-gap: 16px; } .cf-field--full { grid-column: 1 / -1; } }
.cf-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
fieldset.cf-field { border: 0; margin: 0; padding: 0; }
.cf-label, fieldset.cf-field legend { display: block; padding: 0; margin: 0 0 6px; font-size: 14px; font-weight: 500; color: var(--ink); }
.cf-field > .cf-label { margin-bottom: 0; }
.cf-label sup { color: var(--ink-3); font-size: 11px; }
.checkout-main .text-field, .account-card .text-field {
  width: 100%; min-height: 48px; margin: 0; padding: 12px 14px;
  font-size: 16px; line-height: 1.4; color: var(--ink);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
}
.checkout-main .text-field::placeholder, .account-card .text-field::placeholder { color: var(--ink-3); }
.checkout-main .text-field:focus, .checkout-main .text-field:focus-visible, .account-card .text-field:focus, .account-card .text-field:focus-visible { outline: 2px solid var(--ink); outline-offset: 1px; border-color: var(--ink); background: #fff; color: var(--ink); }
.checkout-main .text-field[aria-invalid="true"], .account-card .text-field[aria-invalid="true"] { border-color: var(--color-ui-error, #b42318); }
.dob__row { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 8px; }
.field-hint { margin: 0; font-size: 13px; line-height: 1.45; color: var(--ink-3); }
.field-error { margin: 0; font-size: 13px; color: var(--color-ui-error, #b42318); }
.field-error[hidden] { display: none; }
.checkout-consent { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; line-height: 1.5; color: var(--ink-2); cursor: pointer; }
.checkout-consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: none; accent-color: var(--ink); }
.checkout-consent a { color: var(--ink); }
.checkout-submit { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.checkout-main .btn--block { min-height: 52px; font-size: 16px; }
.checkout-secure { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 0; font-size: 13px; color: var(--ink-3); }
.checkout-fail { margin: 0; padding: 12px 16px; }
.checkout-fail[hidden] { display: none; }
.btn--block { width: 100%; }
.checkout-empty { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.checkout-empty .btn { margin-top: 8px; }
.checkout-thanks { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.checkout-thanks__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; margin-bottom: 8px; }
.checkout-thanks__icon svg { display: block; width: 20px; height: 20px; }
.checkout-thanks .btn { margin-top: 12px; }
.checkout-thanks__icon--muted { background: var(--fill); color: var(--ink); }
.checkout-thanks .checkout-main__sub { margin-bottom: 8px; }
.checkout-thanks .checkout-main__sub b { color: var(--ink); font-weight: 500; }
.thanks-next { width: 100%; margin-top: 8px; }
.thanks-next__title { margin: 0 0 12px; font-size: 17px; line-height: 1.3; font-weight: 500; letter-spacing: 0; word-spacing: normal; }
.thanks-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: step; }
.thanks-steps li { position: relative; display: flex; flex-direction: column; gap: 3px; padding: 14px 16px 14px 52px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; line-height: 1.5; color: var(--ink-2); counter-increment: step; }
.thanks-steps li::before { content: counter(step); position: absolute; left: 14px; top: 14px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 500; }
.thanks-steps li b { font-size: 15px; color: var(--ink); font-weight: 500; }
.thanks-steps li.thanks-steps__referral { border-color: #f1d9a3; background: #fff8e8; }
.thanks-steps li.thanks-steps__referral::before { background: #b7791f; }
.thanks-steps .btn--small { align-self: flex-start; margin-top: 8px; padding: 8px 14px; font-size: 14px; }
[data-cart-nonempty][hidden], [data-cart-empty][hidden] { display: none; }

/* mobile: the overview collapses into a tappable bar above the form */
@media (max-width: 991px) {
  .checkout-side__toggle {
    display: flex; width: 100%; justify-content: space-between; align-items: center; gap: 12px;
    padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
    font: inherit; font-size: 15px; font-weight: 500; color: var(--ink); cursor: pointer; text-align: left;
  }
  .checkout-side__toggle-hint { display: inline-flex; align-items: center; gap: 4px; font-weight: 400; color: var(--ink-2); }
  .checkout-side__toggle-hint svg { transition: transform .15s; }
  .checkout-side__toggle[aria-expanded="true"] .checkout-side__toggle-hint svg { transform: rotate(180deg); }
  .checkout-summary { display: none; margin-top: 12px; }
  .checkout-summary.is-open { display: flex; }
  .checkout-summary__title { display: none; }
  .checkout-side__legal { display: none; }
}

/* ---------- checkout: location picker ---------- */
.checkout-form[data-location-picked="true"] .loc-picker { display: none; }
.checkout-form[data-location-picked="false"] .checkout-details { display: none; }
.loc-search { position: relative; display: block; margin-bottom: 14px; }
.loc-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.checkout-main .loc-search .text-field { padding-left: 42px; }
.loc-list { display: flex; flex-direction: column; gap: 10px; max-height: 26rem; overflow: auto; padding: 2px; margin: -2px; }
.loc-option { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 24px; gap: 12px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; transition: border-color .15s, background .15s; }
.loc-option:hover { border-color: var(--line-strong); background: var(--surface); }
.loc-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.loc-option:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); background: var(--surface); }
.loc-option:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.loc-option__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; font-size: 14px; color: var(--ink-2); }
.loc-option__body b { font-size: 15px; color: var(--ink); }
.loc-option__meta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-3); }
.loc-option__meta svg { width: 14px; height: 14px; }
.loc-option__lab { display: block; font-size: 12px; color: var(--ink-3); }
.checkout-form[data-home-chosen="true"] [data-customer-address] { display: none; }
/* Details step: one calm column in three small groups */
.cf-stack { display: flex; flex-direction: column; gap: 28px; }
.cf-group { display: flex; flex-direction: column; gap: 14px; }
.cf-group__title { margin: 0 0 2px; font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cf-row--dob { grid-template-columns: 1fr auto; align-items: start; }
.gender-icons { display: flex; gap: 8px; min-height: 48px; align-items: center; }
.gender-icon { position: relative; display: grid; place-items: center; width: 44px; height: 44px; margin: 0; border: 1px solid var(--line-strong); border-radius: 50%; background: #fff; color: var(--ink-2); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.gender-icon input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.gender-icon:hover { background: var(--fill); }
.gender-icon:has(input:checked) { background: var(--ink); border-color: var(--ink); color: #fff; }
.gender-icon:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (max-width: 479px) { .cf-row:not(.cf-row--dob) { grid-template-columns: 1fr; } }
.checkout-main .text-field[readonly] { background: var(--fill); color: var(--ink-2); }
/* Sign in with Google / Apple */
.social-login { margin-bottom: 4px; }
.social-login__buttons { display: grid; gap: 10px; }
@media (min-width: 600px) { .social-login__buttons { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.btn--social { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; white-space: nowrap; padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-size: 15px; font-weight: 500; text-decoration: none; }
.btn--social:hover { background: var(--fill); }
.btn--social-apple { background: #000; color: #fff; border-color: #000; }
.btn--social-apple:hover { background: #1a1a1a; }
.social-login .loc-divider { margin: 16px 0 4px; }
.social-status { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 20px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--fill); font-size: 14px; color: var(--ink-2); }
.social-status svg { color: var(--ink); }
.link-button { padding: 0; border: 0; background: none; font: inherit; color: var(--ink); text-decoration: underline; cursor: pointer; }
.loc-option__check { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: #fff; background: #fff; }
.loc-option:has(input:checked) .loc-option__check { background: var(--ink); border-color: var(--ink); }
.loc-option__check svg { width: 12px; height: 12px; }
.loc-option[hidden] { display: none; }
.loc-empty { margin: 12px 0 0; }
.loc-chosen { display: flex; align-items: center; gap: 12px; padding: 12px 14px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.loc-chosen__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.loc-chosen__body b { font-size: 15px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-change { border: 0; background: none; padding: 6px 8px; font: inherit; font-size: 14px; color: var(--ink); text-decoration: underline; cursor: pointer; }
.checkout-loc { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.checkout-loc[hidden] { display: none; }
.checkout-loc__icon { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--fill); color: var(--ink); }
.checkout-loc__icon svg { width: 18px; height: 18px; }
.checkout-loc__label { display: block; font-size: 12px; color: var(--ink-3); }
.checkout-loc b { font-size: 14px; color: var(--ink); }
.checkout-main__title + .checkout-main__sub { margin-bottom: 20px; }

/* ---------- trust band (checkout + bedankt, replaces the generic CTA) ---------- */
.section_trust { padding-top: var(--section-padding--small); padding-bottom: var(--section-padding--small); }
.trust-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius); background: var(--surface); box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.trust-item__icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--fill); color: var(--ink); }
.trust-item div { display: flex; flex-direction: column; gap: 2px; font-size: 13px; line-height: 1.45; color: var(--ink-2); }
.trust-item b { font-size: 15px; color: var(--ink); }

/* checkout: reset Webflow's label{font-weight:700;margin-bottom:5px} on our label-based components + mobile refinements */
.loc-option, .loc-search, .checkout-consent { font-weight: 400; margin-bottom: 0; }
.loc-search { margin-bottom: 14px; }
.checkout-submit .btn--block { white-space: nowrap; }
@media (max-width: 599px) {
  .checkout-step:not(.is-current) .checkout-step__label { display: none; }   /* only the active step keeps its label */
  .checkout-step + .checkout-step::before { margin: 0 10px; }
  .checkout-submit .btn--block { font-size: 15px; }
  .checkout-main__title { font-size: 22px; }
}

/* ---------- location picker v2: geolocation, filter cards, full-screen mobile ---------- */
.checkout-main, .loc-page, .loc-dialog {
  --grad-fast: linear-gradient(135deg, #ff7a59 0%, #ffb347 100%);      /* coral → amber */
  --grad-weekend: linear-gradient(135deg, #6d5dfc 0%, #c86dd7 100%);   /* indigo → orchid */
  --grad-walkin: linear-gradient(135deg, #12b5a5 0%, #7be0a6 100%);    /* teal → mint */
  --grad-gender: linear-gradient(135deg, #f2679e 0%, #ffb08a 100%);    /* rose → peach */
}
.loc-tools { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-bottom: 14px; }
@media (min-width: 600px) { .loc-tools { grid-template-columns: minmax(0, 1fr) auto; } }
.loc-search { margin: 0; }
.loc-geo { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; white-space: nowrap; }
.loc-geo:hover { background: var(--surface); }
.loc-geo.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.loc-geo[disabled] { opacity: .6; cursor: progress; }

/* filter cards: gradient border + gradient icon, one hue per filter */
.loc-filters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.loc-filters--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.loc-filter, .choice-card {
  position: relative; isolation: isolate; border: 2px solid transparent; border-radius: var(--radius);
  background: linear-gradient(#fff, #fff) padding-box, var(--g) border-box;
  color: var(--ink); font: inherit; text-align: left; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.loc-filter::before, .choice-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--g); opacity: 0; transition: opacity .15s; pointer-events: none; z-index: -1; }
.loc-filter:hover, .choice-card:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(28, 39, 51, .10); }
.loc-filter:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.loc-filter[aria-pressed="true"]::before, .choice-card:has(input:checked)::before { opacity: .13; }
.loc-filter[aria-pressed="true"], .choice-card:has(input:checked) { box-shadow: 0 6px 18px rgba(28, 39, 51, .10); }
.loc-filter { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-height: 92px; padding: 12px; }
.loc-filter[data-loc-filter="fast"] { --g: var(--grad-fast); }
.loc-filter[data-loc-filter="weekend"] { --g: var(--grad-weekend); }
.loc-filter[data-loc-filter="walkin"] { --g: var(--grad-walkin); }
.loc-filter__icon, .choice-card__icon { flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--g); color: #fff; box-shadow: 0 4px 10px rgba(28, 39, 51, .12); }
.loc-filter__icon { width: 34px; height: 34px; }
.loc-filter__icon svg { width: 17px; height: 17px; }
.loc-filter b { display: block; font-size: 14px; line-height: 1.2; font-weight: 500; }
.loc-filter small { display: block; margin-top: 2px; font-size: 12px; line-height: 1.3; color: var(--ink-2); }
.loc-filter__check, .choice-card__check { display: grid; place-items: center; border-radius: 50%; color: #fff; }
.loc-filter__check { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; background: var(--g); opacity: 0; transform: scale(.6); transition: opacity .15s, transform .15s; }
.loc-filter__check svg { width: 11px; height: 11px; }
.loc-filter[aria-pressed="true"] .loc-filter__check { opacity: 1; transform: none; }

/* choice cards (geslacht) */
.choice-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-card { --g: var(--grad-gender); display: flex; align-items: center; gap: 12px; min-height: 62px; padding: 12px 14px; margin: 0; font-weight: 500; font-size: 15px; }
.choice-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-card:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.choice-card__icon { width: 38px; height: 38px; }
.choice-card__icon svg { width: 19px; height: 19px; }
.choice-card__check { margin-left: auto; width: 22px; height: 22px; flex: none; border: 1px solid var(--line-strong); background: #fff; }
.choice-card__check svg { width: 12px; height: 12px; }
.choice-card:has(input:checked) .choice-card__check { background: var(--g); border-color: transparent; }
.choice-card:has(input[aria-invalid="true"]) { box-shadow: 0 0 0 1px var(--color-ui-error, #b42318); }

/* list: scrollable with a slim scrollbar, plus "Toon meer" */
.loc-status { margin: 0 0 10px; min-height: 1.2em; font-size: 13px; color: var(--ink-3); }
.loc-list { max-height: 27rem; overflow-y: auto; padding: 2px 10px 2px 2px; margin: -2px -10px -2px -2px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.loc-list::-webkit-scrollbar { width: 6px; }
.loc-list::-webkit-scrollbar-track { background: transparent; }
.loc-list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.loc-option:has(input:checked) .loc-option__check { background: var(--ink); border-color: var(--ink); }
.loc-option__head { display: flex; gap: 10px; align-items: baseline; justify-content: space-between; }
.loc-option__dist { flex: none; font-size: 13px; font-weight: 500; color: var(--ink); }
.loc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.loc-badge { padding: 2px 8px; border-radius: 999px; background: var(--fill); font-size: 11px; font-weight: 500; color: var(--ink); }
.loc-more { margin-top: 12px; min-height: 48px; }
.loc-more[hidden] { display: none; }
.loc-option__body { gap: 4px; }

/* mobile: the checkout uses the whole screen width */
@media (max-width: 991px) {
  .section_checkout { padding-top: 92px; padding-bottom: 24px; }
  .section_checkout > .padding-global { padding-left: 0; padding-right: 0; }
  .section_checkout .block-container { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }   /* Webflow: 80% + auto margins */
  .checkout-split { gap: 12px; }
  .checkout-side { padding: 0 16px; }
  .checkout-main { border-radius: 0; box-shadow: none; padding: 24px 16px 32px; }
  .checkout-steps { margin-bottom: 24px; }
  .section_trust { padding-top: 8px; }
  .loc-list { max-height: 30rem; }
}
@media (max-width: 599px) {
  .loc-filters { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 8px; margin: 0 -16px 14px; padding: 4px 16px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .loc-filters::-webkit-scrollbar { display: none; }
  .loc-filter { flex: 0 0 auto; flex-direction: row; align-items: center; gap: 8px; min-height: 44px; padding: 8px 14px 8px 8px; white-space: nowrap; }
  .loc-filter small { display: none; }
  .loc-filter__icon { width: 28px; height: 28px; }
  .loc-filter__check { top: -6px; right: -6px; }
  .loc-option { padding: 12px 14px; }
  .loc-option__body b { font-size: 15px; }
  .loc-chosen__body b { white-space: normal; }
}

/* ---------- appointment slots + home visit ---------- */
.checkout-main { --grad-home: linear-gradient(135deg, #3d8bff 0%, #62e0f5 100%); }   /* sky → aqua */
.checkout-form:not([data-stage="slot"]) .slot-picker { display: none; }
.checkout-form[data-stage="slot"] .loc-picker { display: none; }
.loc-home { --g: var(--grad-home); gap: 14px; padding: 14px 16px; margin-bottom: 6px; min-height: 0; }
.loc-home .choice-card__icon { width: 42px; height: 42px; }
.loc-home__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.loc-home__body b { font-size: 15px; }
.loc-home__body small { font-size: 13px; font-weight: 400; line-height: 1.4; color: var(--ink-2); }
.loc-divider { display: flex; align-items: center; gap: 12px; margin: 12px 0 14px; font-size: 13px; color: var(--ink-3); }
.loc-divider::before, .loc-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.slot-back { margin-bottom: 14px; padding: 0; border: 0; background: none; font: inherit; font-size: 15px; cursor: pointer; }
.slot-picker .cf-label { margin: 0 0 8px; }
.slot-days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 10px; margin: 0 0 16px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.slot-days::-webkit-scrollbar { height: 6px; }
.slot-days::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.slot-day, .slot-time { position: relative; margin: 0; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; cursor: pointer; font-weight: 400; transition: background .12s, border-color .12s; }
.slot-day input, .slot-time input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.slot-day { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 70px; padding: 10px 8px; color: var(--ink-2); }
.slot-day__wd { font-size: 12px; text-transform: capitalize; }
.slot-day__d { font-size: 20px; line-height: 1.1; font-weight: 500; color: var(--ink); }
.slot-day__m { font-size: 12px; }
.slot-day:hover, .slot-time:hover { background: var(--surface); }
.slot-day:has(input:checked) { background: var(--ink); border-color: var(--ink); color: rgba(255, 255, 255, .75); }
.slot-day:has(input:checked) .slot-day__d { color: #fff; }
.slot-day:has(input:focus-visible), .slot-time:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.slot-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-bottom: 8px; }
.slot-time { display: flex; align-items: center; justify-content: center; min-height: 44px; font-size: 15px; font-weight: 500; color: var(--ink); }
.slot-time:has(input:checked) { background: var(--ink); border-color: var(--ink); color: #fff; }
.loc-chosen__appt { font-size: 13px; color: var(--ink-2); }
.loc-chosen__appt:empty { display: none; }
.home-fields { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.home-fields[hidden] { display: none; }
.home-fields__title { display: flex; align-items: center; gap: 8px; margin: 0; }
.home-fields__title svg { width: 18px; height: 18px; color: var(--ink-2); }
@media (min-width: 600px) { .home-fields { grid-template-columns: 1fr 1fr; } .home-fields .cf-field--full, .home-fields__title { grid-column: 1 / -1; } }

/* ---------- home visit: address + surcharge step ---------- */
.checkout-form:not([data-stage="address"]) .addr-picker { display: none; }
.checkout-form[data-stage="address"] .loc-picker { display: none; }
.addr-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.addr-picker .field-error { margin-bottom: 8px; }
.addr-picker > [data-addr-quote] { margin-top: 6px; }
.addr-quote { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.addr-quote__addr { display: flex; flex-direction: column; }
.addr-quote__addr b { font-size: 15px; }
.addr-quote__fee { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 15px; }
.addr-quote__fee b { font-size: 20px; font-weight: 500; }
.addr-quote .btn { margin-top: 4px; }
.addr-quote--no { background: #fff6f4; border-color: #f2cfc7; color: var(--ink); }
.addr-quote--no span { font-size: 14px; color: var(--ink-2); }
.checkout-totals [data-home-fee-wrap][hidden] { display: none; }
@media (max-width: 599px) { .addr-row { grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; } }
.addr-quote[hidden] { display: none; }   /* the flex display above must not defeat the hidden attribute */

/* ---- account: login, orders, referral, results ------------------------------- */
.checkout-main--narrow { max-width: 480px; }
.code-input { font-size: 28px; letter-spacing: 8px; text-align: center; font-variant-numeric: tabular-nums; }

/* page shell: soft background, one column that stays readable on a phone */
.section_account { padding-top: var(--section-padding--large); padding-bottom: var(--section-padding--small); background: var(--surface); }
.account { max-width: 720px; margin: 0 auto; }
@media (max-width: 991px) {
  .section_account { padding-top: 88px; padding-bottom: 32px; }
  .section_account > .padding-global { padding-left: 16px; padding-right: 16px; }
  .section_account .block-container { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }   /* Webflow: 80% + auto margins */
}

.account-hero { margin-bottom: 20px; }
.account-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.account-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.account-hero__title { margin: 0; font-size: 26px; line-height: 1.15; font-weight: 500; letter-spacing: -.02em; text-wrap: pretty; }
.account-hero__meta { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
@media (min-width: 600px) { .account-hero__title { font-size: 32px; } }

/* signed-in strip */
.account-user { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 8px 8px 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.account-user__avatar { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 15px; font-weight: 500; text-transform: uppercase; }
.account-user__info { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.account-user__info b { font-size: 10px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.account-user__info > span { font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-user form { margin-left: auto; }
.account-user__out { padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink-2); font: inherit; font-size: 13px; line-height: 1; cursor: pointer; }
.account-user__out:hover { background: var(--fill); color: var(--ink); }
.account-user__out:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* status pill: grey while we wait, amber underway, green with results, red when cancelled */
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px 6px 10px; border-radius: 999px; background: var(--fill); color: var(--ink); font-size: 13px; line-height: 1.3; }
.status-pill::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.status-pill--busy { background: #fff8e8; color: #8a5a12; }
.status-pill--busy::before { background: #b7791f; }
.status-pill--done { background: #eaf4ee; color: #1f5c44; }
.status-pill--done::before { background: #2f7d5f; }
.status-pill--bad { background: #fff6f4; color: #8f2018; }
.status-pill--bad::before { background: #b42318; }

/* order list */
.account-orders { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.order-card { display: flex; flex-direction: column; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); text-decoration: none; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); transition: border-color .18s, box-shadow .18s, transform .18s; }
.order-card:hover { border-color: var(--line-strong); box-shadow: 0 10px 28px rgba(28, 39, 51, .09); transform: translateY(-1px); }
.order-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.order-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.order-card__date { flex: none; font-size: 13px; color: var(--ink-3); }
.order-card__title { font-size: 17px; line-height: 1.3; font-weight: 500; letter-spacing: -.01em; text-wrap: pretty; }
.order-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 13px; color: var(--ink-3); }
.order-card__meta > span + span::before { content: "·"; margin-right: 8px; color: var(--line-strong); }
.order-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-2); }
.order-card__where { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-card__go { flex: none; display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 500; }
.order-card__go svg { transition: transform .18s; }
.order-card:hover .order-card__go svg { transform: translateX(2px); }

.account-empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 40px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius); background: #fff; }
.account-empty__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--fill); color: var(--ink-2); }
.account-empty h2 { margin: 6px 0 0; font-size: 18px; font-weight: 500; letter-spacing: 0; }
.account-empty p { margin: 0; max-width: 40ch; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.account-empty .btn { margin-top: 10px; }

/* order page: one card per block */
.account-cards { display: flex; flex-direction: column; gap: 12px; }
.account-card { padding: 18px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
@media (min-width: 600px) { .account-card { padding: 22px 24px; } }
.account-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.account-card__icon { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--surface); color: var(--ink); }
.account-card__title { margin: 0; font-size: 16px; font-weight: 500; letter-spacing: 0; }
.account-card__sub { margin: 0 0 14px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.account-card__note { margin-bottom: 0; }
.account-card .checkout-loc + .checkout-loc { margin-top: 12px; }
.checkout-loc__line { display: block; font-size: 13px; color: var(--ink-2); }
.account-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.account-link:hover { border-color: var(--ink); }

/* order timeline */
.order-status__top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.order-status__note { font-size: 13px; color: var(--ink-3); }
.order-status__msg { margin: 14px 0 0; }
.order-status .btn { margin-top: 14px; }
.order-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin: 20px 0 2px; padding: 0; }
.order-steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; font-size: 11px; line-height: 1.25; color: var(--ink-3); }
.order-steps li::before { content: ""; position: absolute; top: 8px; right: 50%; width: 100%; height: 2px; background: var(--fill); }
.order-steps li:first-child::before { display: none; }
.order-steps__dot { position: relative; z-index: 1; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 2px var(--fill); color: #fff; }
.order-steps li.is-done, .order-steps li.is-current { color: var(--ink); }
.order-steps li.is-current span:last-child { font-weight: 500; }
.order-steps li.is-done::before, .order-steps li.is-current::before { background: var(--ink); }
.order-steps li.is-done .order-steps__dot { background: var(--ink); box-shadow: none; }
.order-steps li.is-current .order-steps__dot { background: #fff; box-shadow: inset 0 0 0 3px var(--ink); }
@media (min-width: 600px) { .order-steps li { font-size: 12px; } }

/* results */
.result-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.result { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.result.is-flagged { border-color: #f1d9a3; background: #fff8e8; }
.result__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.result__name { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.result__name b { font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.result__code { font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.result__value { flex: none; font-size: 17px; font-weight: 500; line-height: 1.2; white-space: nowrap; color: var(--ink); }
.result__value > span { font-size: 13px; font-weight: 400; color: var(--ink-3); }
.result__scale { position: relative; display: block; height: 6px; margin: 16px 0 10px; border-radius: 999px; background: var(--fill); }
.result__band { position: absolute; top: 0; bottom: 0; left: 22%; right: 22%; border-radius: 999px; background: rgba(47, 125, 95, .3); }
.result__dot { position: absolute; top: 50%; left: var(--pos, 50%); width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--ink); }
.result.is-flagged .result__band { background: rgba(183, 121, 31, .25); }
.result.is-flagged .result__dot { box-shadow: 0 0 0 3px #b7791f; }
.result__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 10px; font-size: 12px; color: var(--ink-3); }
.result__flag { flex: none; display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px 2px 7px; border: 1px solid #e8c88a; border-radius: 999px; background: #fff; color: #8a5a12; font-size: 11px; font-weight: 500; }
.result__flag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #b7791f; }
.results-link { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; margin: -4px -4px 0 0; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 17px; font-weight: 500; line-height: 1.2; white-space: nowrap; cursor: pointer; }
.results-link:hover { border-color: var(--ink); }
.results-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.trend-icon { flex: none; color: var(--ink); vertical-align: -1px; }

.account-interpretation { margin-top: 16px; padding: 16px; border-radius: var(--radius-sm); background: var(--surface); }
.account-interpretation h3 { margin: 0 0 6px; font-size: 15px; font-weight: 500; letter-spacing: 0; }
.account-interpretation p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); }

/* ordered markers, before the lab reports back */
.marker-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.marker { display: flex; flex-direction: column; gap: 3px; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.marker b { font-size: 14px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.marker__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; font-size: 12px; color: var(--ink-3); }
.marker__meta > span + span::before { content: "·"; margin-right: 8px; color: var(--line-strong); }
.marker__code { font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }

/* the unlock in front of the results */
.account-gate__form { display: flex; flex-direction: column; gap: 14px; }
.account-gate__form .btn { align-self: flex-start; }
.account-gate .text-field { max-width: 220px; }
@media (max-width: 479px) { .account-gate .text-field { max-width: none; } .account-gate__form .btn { align-self: stretch; text-align: center; } }

/* referral: the barcode pass */
.referral__number { margin: 0 0 12px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); font-size: 32px; font-weight: 700; letter-spacing: -.01em; font-family: Verdana, "DejaVu Sans", sans-serif; }
.referral__title { margin: 0 0 8px; font-size: 18px; font-weight: 500; letter-spacing: 0; }
.referral__meta { margin: 0 0 16px; display: grid; grid-template-columns: 110px 1fr; row-gap: 6px; font-size: 14px; }
.referral__meta div { display: contents; }
.referral__meta dt { color: var(--ink-3); }
.referral__meta dd { margin: 0; color: var(--ink); }
.referral__barcode { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 12px; margin-bottom: 12px; border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); background: #fff; }
.referral__barcode svg { display: block; width: 100%; max-width: 320px; height: auto; }
.referral__barcode span { font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 479px) { .referral__number { font-size: 26px; } .referral__meta { grid-template-columns: 1fr; row-gap: 2px; } .referral__meta div + div { margin-top: 8px; } }

.account-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 479px) { .account-actions { flex-direction: column; } .account-actions .btn { width: 100%; text-align: center; } }

/* progression chart */
.trend { width: min(680px, calc(100vw - 32px)); padding: 20px; border: 0; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(28, 39, 51, .25); color: var(--ink); }
.trend::backdrop { background: rgba(28, 39, 51, .45); }
.trend__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.trend__title { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: 0; }
.trend__sub { margin: 2px 0 0; font-size: 13px; color: var(--ink-3); }
.trend__close { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.trend__close:hover { background: var(--fill); }
.trend__canvas { position: relative; height: 280px; }
.trend__legend { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 12px 0 0; font-size: 12px; color: var(--ink-3); }
.trend__legend-band { display: inline-block; width: 18px; height: 10px; border: 1px dashed rgba(183, 121, 31, .6); background: #fff8e8; }
.trend__legend-dot { display: inline-block; width: 10px; height: 10px; border: 2.5px solid var(--ink); border-radius: 50%; background: #fff; }
.trend__legend-dot--flag { border-color: #b7791f; }
@media (max-width: 479px) { .trend { padding: 16px; } .trend__canvas { height: 240px; } }

/* ---------- product page: "Priklocaties bekijken" dialog (list from GET /priklocaties?items=slug) ---------- */
.loc-dialog { width: min(640px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 20px; border: 0; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(28, 39, 51, .25); color: var(--ink); }
.loc-dialog::backdrop { background: rgba(28, 39, 51, .45); }
.loc-dialog .loc-list { max-height: min(24rem, calc(100vh - 20rem)); }
.loc-dialog .loc-search .text-field { padding-left: 42px; }
.loc-dialog .loc-search, .loc-dialog .loc-option { font-weight: 400; margin-bottom: 0; }
.loc-dialog .loc-search { margin-bottom: 0; }
.loc-dialog .loc-tools { margin-bottom: 10px; }
.loc-option--static { grid-template-columns: minmax(0, 1fr); cursor: default; }
.loc-option--static:hover { border-color: var(--line); background: #fff; }
.loc-option__link { justify-self: start; margin-top: 4px; font-size: 13px; color: var(--ink); text-decoration: underline; }
@media (max-width: 479px) { .loc-dialog { padding: 16px; } }

/* ---------- /locaties: every active priklocatie (same browser as the product dialog, without the scroll box) ---------- */
.section_locations { padding-top: var(--section-padding--large); padding-bottom: var(--section-padding--small); }
.loc-page__head { margin-bottom: 24px; }
.loc-page__head h1 { margin: 0 0 8px; }
.loc-page__head p { margin: 0; max-width: 60ch; color: var(--ink-2); }
.loc-page__stats { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.loc-page__stats li { padding: 6px 12px; border-radius: 999px; background: var(--surface); font-size: 13px; color: var(--ink-2); }
.loc-page__stats b { color: var(--ink); font-weight: 500; }
.loc-page { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
@media (min-width: 600px) { .loc-page { padding: 32px; } }
.loc-page .loc-search .text-field { padding-left: 42px; }
.loc-page .loc-search, .loc-page .loc-option { font-weight: 400; margin-bottom: 0; }
.loc-page .loc-list { max-height: none; overflow: visible; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 768px) { .loc-page .loc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.loc-page .loc-option--static { align-content: start; }
.loc-page .loc-more { margin-top: 16px; }
/* /locaties/{plaats}: city index on /locaties, nearby cities and tests on a city page */
.city-index { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.city-index__group { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 8px 12px; align-items: start; padding-top: 12px; border-top: 1px solid var(--line); }
.city-index__letter { font-size: 14px; font-weight: 500; color: var(--ink-3); line-height: 28px; }
.city-nearby__list, .city-tests__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.city-nearby__list a, .city-tests__list a { display: inline-flex; align-items: baseline; gap: 6px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 14px; color: var(--ink); text-decoration: none; line-height: 20px; }
.city-nearby__list a:hover, .city-tests__list a:hover { border-color: var(--ink); }
.city-nearby__list a span, .city-tests__list a span { font-size: 12px; color: var(--ink-3); }
/* the city index is long (~480 plaatsen): a compact multi-column text list instead of chips */
.city-index__list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; }
@media (min-width: 600px) { .city-index__list { columns: 3; } }
@media (min-width: 992px) { .city-index__list { columns: 4; } }
.city-index__list li { break-inside: avoid; }
.city-index__list a { display: flex; justify-content: space-between; gap: 8px; padding: 3px 0; font-size: 14px; line-height: 20px; color: var(--ink); text-decoration: none; }
.city-index__list a:hover { text-decoration: underline; }
.city-index__list a span { font-size: 12px; color: var(--ink-3); }
.city-nearby, .city-tests { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.city-nearby__list a, .city-tests__list a { padding: 8px 14px; }
.city-nearby p a { color: var(--ink); }

/* ---------- /biomarkers: compose an order from single markers (cart ids "marker:<id>") ---------- */
.section_biomarkers { padding-bottom: 120px; }   /* room for the sticky selection bar */
.bm-notice { margin: 0 0 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: #eaf4ee; color: #1f5c44; font-size: 14px; line-height: 1.5; }
.bm-notice[hidden] { display: none; }
@media (min-width: 600px) { .bm-tools { grid-template-columns: minmax(0, 1fr) auto; } }
.bm-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.bm-cat { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 13px; line-height: 1.2; cursor: pointer; transition: background .12s, border-color .12s; }
.bm-cat span { font-size: 11px; color: var(--ink-3); }
.bm-cat:hover { background: var(--surface); }
.bm-cat[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.bm-cat[aria-pressed="true"] span { color: rgba(255, 255, 255, .7); }
.bm-cat:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (max-width: 599px) {
  .bm-cats { flex-wrap: nowrap; overflow-x: auto; margin: 0 -20px 8px; padding: 2px 20px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .bm-cats::-webkit-scrollbar { display: none; }
  .bm-cat { flex: 0 0 auto; white-space: nowrap; }
}
.bm-group { margin-top: 20px; }
.bm-group[hidden] { display: none; }
.bm-group__title { display: flex; align-items: baseline; gap: 8px; margin: 0 0 10px; font-size: 16px; font-weight: 500; letter-spacing: 0; }
.bm-group__title span { font-size: 12px; font-weight: 400; color: var(--ink-3); }
.bm-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 768px) { .bm-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.bm-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; align-items: center; padding: 10px 10px 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .15s, background .15s; }
.bm-row[hidden] { display: none; }
.bm-row:has(.bm-add[aria-pressed="true"]) { border-color: var(--ink); background: var(--surface); }
.bm-row__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bm-row__body b { font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.bm-row__alias { font-size: 12px; color: var(--ink-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bm-row__price { font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.bm-add { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 13px; font-weight: 500; white-space: nowrap; cursor: pointer; transition: background .12s, border-color .12s; }
.bm-add:hover { background: var(--surface); }
.bm-add:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.bm-add__check { display: none; }
.bm-add[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.bm-add[aria-pressed="true"] .bm-add__plus { display: none; }
.bm-add[aria-pressed="true"] .bm-add__check { display: block; }
@media (max-width: 479px) { .bm-add .btn__label { display: none; } .bm-add { width: 36px; padding: 0; justify-content: center; } }
.bm-foot { margin: 20px 0 0; font-size: 14px; }
.bm-foot a { color: var(--ink); }

/* sticky selection bar */
.bm-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(255, 255, 255, .96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(28, 39, 51, .08); }
.bm-bar[hidden] { display: none; }
.bm-bar__inner { display: flex; align-items: center; gap: 10px; max-width: 940px; margin: 0 auto; }
.bm-bar__info { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.3; }
.bm-bar__info b { font-size: 15px; font-weight: 500; color: var(--ink); }
.bm-bar__sum { font-size: 13px; color: var(--ink-2); }
.bm-bar__sum small { font-size: 12px; color: var(--ink-3); }
.bm-bar .btn { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 16px; }
@media (max-width: 479px) { .bm-bar [data-bm-share] span { display: none; } .bm-bar [data-bm-share] { width: 44px; padding: 0; justify-content: center; } }
html.cart-open .bm-bar { visibility: hidden; }

/* dialogs: paste a list, share the selection */
.bm-dialog { width: min(560px, calc(100vw - 32px)); flex-direction: column; gap: 16px; }
.bm-dialog[open] { display: flex; }
.bm-dialog__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.bm-dialog__head p { margin-top: 4px; }
.bm-dialog__form { display: flex; flex-direction: column; gap: 10px; }
.bm-textarea { min-height: 120px; resize: vertical; font: inherit; line-height: 1.5; }
.bm-matches { display: flex; flex-direction: column; gap: 8px; max-height: min(22rem, 50vh); overflow: auto; }
.bm-matches[hidden], .bm-dialog__foot[hidden] { display: none; }
.bm-match { display: flex; flex-direction: column; gap: 6px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; }
.bm-match__input { font-size: 12px; color: var(--ink-3); }
.bm-match__input::before { content: "\201C"; }
.bm-match__input::after { content: "\201D"; }
.bm-match label { display: flex; align-items: center; gap: 10px; margin: 0; font-weight: 400; cursor: pointer; }
.bm-match label input { width: 16px; height: 16px; margin: 0; flex: none; accent-color: var(--ink); }
.bm-match label b { font-weight: 500; }
.bm-match label em { font-style: normal; color: var(--ink-2); }
.bm-match label span { margin-left: auto; color: var(--ink-2); white-space: nowrap; }
.bm-match--none { border-style: dashed; color: var(--ink-2); }
.bm-match__hint { font-size: 12px; color: #8a5a12; }
.bm-dialog__foot { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.bm-share { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.bm-share .text-field { margin: 0; font-size: 13px; }
@media (max-width: 479px) { .bm-share { grid-template-columns: 1fr; } .bm-dialog { padding: 16px; } }

/* cart: loose biomarkers have no photo; orderkosten line when the cart holds only biomarkers */
.cart-item__img--marker { display: grid; place-items: center; color: var(--ink-2); }
.cart-fee { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.cart-fee small { display: block; font-size: 12px; color: var(--ink-3); }
.cart-fee[hidden], .checkout-totals [data-order-fee-wrap][hidden] { display: none; }
.cart-fee + .cart-total { border-top: 0; padding-top: 4px; }

/* ---------- /pakketten: the homepage products grouped by category ---------- */
.pk-head { max-width: 940px; }
.pk-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.pk-nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink); font-size: 14px; line-height: 1.2; text-decoration: none; transition: background .12s, border-color .12s; }
.pk-nav__link span { font-size: 11px; color: var(--ink-3); }
.pk-nav__link:hover { background: var(--surface); border-color: var(--ink); }
.pk-nav__link--alt { background: var(--fill); border-color: transparent; }
.pk-group { margin-top: 36px; scroll-margin-top: 96px; }
.pk-group__head { max-width: 60ch; margin-bottom: 16px; }
.pk-group__title { display: flex; align-items: baseline; gap: 10px; margin: 0; font-size: 24px; font-weight: 500; line-height: 1.2; letter-spacing: -.01em; }
.pk-group__title span { font-size: 13px; font-weight: 400; color: var(--ink-3); }
.pk-group__intro { margin: 6px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.pk-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pk-grid > .card { max-width: none; }
.pk-grid .card__actions { grid-template-columns: 1fr; }
@media (min-width: 600px) { .pk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pk-grid .card__actions { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .pk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } .pk-group { margin-top: 48px; } }
.pk-custom { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; padding: 24px; border-radius: var(--radius); background: #fff; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.pk-custom__body { display: flex; flex-direction: column; gap: 8px; }
.pk-custom__title { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.01em; }
.pk-custom .btn { align-self: flex-start; min-height: 48px; padding: 0 20px; }
@media (min-width: 768px) { .pk-custom { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px; } .pk-custom .btn { align-self: center; flex: none; } }
.pk-grid .markers__count { white-space: nowrap; }
.pk-grid .markers__hint { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- /veelgestelde-vragen ---------- */
.faq-group { margin-top: 36px; scroll-margin-top: 96px; }
.faq-page__list { margin-top: 0; }
.faq-page__q { margin: 0; font-size: inherit; line-height: inherit; font-weight: inherit; letter-spacing: 0; }
.loc-page__head a { color: var(--ink); }
@media (min-width: 992px) { .faq-group { margin-top: 48px; } }

/* ---------- /contact ---------- */
.contact-split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
@media (min-width: 992px) { .contact-split { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 32px; } .contact-cards { position: sticky; top: 7rem; } }
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.contact-card > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card__icon { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--surface); color: var(--ink); }
.contact-card__label { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.contact-card__value { font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
a.contact-card__value:hover { text-decoration: underline; }
.contact-card__note { font-size: 13px; line-height: 1.45; color: var(--ink-2); }
.contact-form { padding: 24px 20px; }
@media (min-width: 600px) { .contact-form { padding: 32px; } }
.contact-form__sub { margin: 6px 0 22px; font-size: 14px; }
.cf-grid--2 { gap: 14px; }
@media (min-width: 600px) { .cf-grid--2 { grid-template-columns: 1fr 1fr; } }
.cf-optional { font-weight: 400; color: var(--ink-3); }
.contact-form select.text-field { appearance: none; -webkit-appearance: none; padding-right: 40px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6773' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; }
.contact-textarea { min-height: 150px; resize: vertical; font: inherit; line-height: 1.5; }
.contact-form .text-field[aria-invalid="true"] { border-color: var(--color-ui-error, #b42318); }
.contact-form .field-error { margin-top: 6px; }
.contact-form .checkout-consent { font-weight: 400; margin: 0; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-submit { min-height: 50px; }
@media (min-width: 600px) { .contact-submit { width: auto; align-self: flex-start; padding: 0 28px; } }
.faq-more { margin: 20px 0 0; }

/* ---------- content pages (InfoController): Care+ services, kwaliteit, klachten, voorwaarden ---------- */
.prose { max-width: 72ch; margin-top: 8px; font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.prose h2 { margin: 36px 0 10px; font-size: 22px; line-height: 1.25; font-weight: 500; letter-spacing: -.01em; color: var(--ink); scroll-margin-top: 96px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 22px 0 6px; font-size: 16px; font-weight: 500; letter-spacing: 0; color: var(--ink); }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose li b, .prose p b { font-weight: 500; color: var(--ink); }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.prose-meta { font-size: 13px; color: var(--ink-3); }
.prose-table { width: 100%; margin: 0 0 16px; border-collapse: collapse; font-size: 15px; }
.prose-table th, .prose-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose-table th { font-weight: 500; color: var(--ink); font-size: 13px; }
.prose-table td:last-child { white-space: nowrap; color: var(--ink); font-weight: 500; }
.prose-table td:last-child a { font-weight: 400; white-space: normal; }
.prose-contact { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0; }
.prose-contact div { padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.prose-contact dt { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.prose-contact dd { margin: 4px 0 0; color: var(--ink); }
@media (min-width: 600px) { .prose-contact { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.section_info .pk-custom { margin-top: 40px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; color: inherit; font-size: 14px; text-decoration: none; border-bottom: 1px solid currentColor; }
.service-link:hover { opacity: .8; }

/* ---------- /partners: ivf clinics, logos from images/partners/<slug>.* or a monogram ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 600px) { .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 992px) { .partner-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.partner-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: center; box-shadow: 0 1px 2px rgba(28, 39, 51, .05); }
.partner-card__logo { display: grid; place-items: center; width: 100%; height: 72px; margin-bottom: 6px; }
.partner-card__logo img { max-width: 100%; max-height: 72px; object-fit: contain; }
.partner-card__monogram { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 18px; font-weight: 500; letter-spacing: .02em; }
.partner-card__name { font-size: 14px; font-weight: 500; line-height: 1.3; color: var(--ink); text-wrap: balance; }
.partner-card__place { font-size: 12px; color: var(--ink-3); }
.partner-prose { margin-top: 36px; }
.section_partners .pk-group { margin-top: 40px; }
