/* WonenXL storefront v2 — mobile-first, warm & tijdloos. */
:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-2: #f3eee6;
  --ink: #1f1b16;
  --muted: #6b6358;
  --line: #e7e1d8;
  --accent: #9a6a3c;
  --accent-dark: #7f5630;
  --accent-ink: #fff;
  --sale: #b3382e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(31, 27, 22, 0.06), 0 10px 30px rgba(31, 27, 22, 0.07);
  --maxw: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(28px, 4.5vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: 18px; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .container { padding: 0 24px; } }
main.container { padding-top: 20px; padding-bottom: 64px; min-height: 60vh; }
@media (min-width: 720px) { main.container { padding-top: 28px; } }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "toggle logo actions" "search search search";
  align-items: center;
  gap: 8px 12px;
  padding-top: 10px; padding-bottom: 10px;
}
.nav-toggle { grid-area: toggle; }
.logo { grid-area: logo; font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.logo span { color: var(--accent); }
.header-actions { grid-area: actions; display: flex; align-items: center; gap: 4px; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border: none; background: none; border-radius: 999px; color: var(--ink); cursor: pointer; position: relative; padding: 0; }
.icon-btn:hover { background: var(--surface-2); }
.cart-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; display: grid; place-items: center; line-height: 1; }
.search-toggle { display: none; }

/* Zoekbalk: één element — op mobiel een eigen rij onder het logo, op desktop
   in de headerrij. De Sero Search-takeover bindt op input[type=search]. */
.header-search { grid-area: search; position: relative; display: flex; align-items: center; width: 100%; }
.header-search input {
  width: 100%; height: 44px; padding: 0 46px 0 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface-2); font: inherit; font-size: 16px; color: var(--ink);
  outline: none; transition: border-color .15s, background .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.header-search input::-webkit-search-cancel-button, .header-search input::-webkit-search-decoration { -webkit-appearance: none; }
.header-search input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(154, 106, 60, .14); }
.header-search-btn { position: absolute; right: 4px; top: 4px; width: 36px; height: 36px; border: none; border-radius: 999px; background: var(--accent); color: #fff; display: grid; place-items: center; cursor: pointer; }

.nav { display: none; }
body.nav-open .nav { display: flex; flex-direction: column; gap: 2px; position: absolute; left: 0; right: 0; top: 100%; background: var(--surface); border-bottom: 1px solid var(--line); padding: 10px 16px 16px; box-shadow: var(--shadow); }
body.nav-open .nav a { padding: 12px 10px; border-radius: var(--radius-sm); font-weight: 500; font-size: 16px; }
body.nav-open .nav a:hover { background: var(--surface-2); }
.nav-sale { color: var(--sale); font-weight: 600; }

@media (min-width: 960px) {
  /* Desktop: logo · prominente zoekbalk in het midden · winkelmand, met de
     ruimtes-navigatie op een eigen rij eronder (zodat de zoekbalk nooit
     wordt weggedrukt en de placeholder altijd volledig leesbaar is). */
  .header-inner {
    grid-template-columns: auto minmax(360px, 1fr) auto;
    grid-template-areas: "logo search actions" "nav nav nav";
    gap: 0 28px; padding-top: 0; padding-bottom: 0;
  }
  .logo { font-size: 30px; padding: 16px 0; }
  .nav-toggle { display: none; }
  .header-search { width: 100%; max-width: 720px; justify-self: center; }
  .header-search input { height: 48px; font-size: 15.5px; padding: 0 56px 0 22px; background: #fff; box-shadow: 0 1px 2px rgba(31,27,22,.05), 0 6px 18px rgba(31,27,22,.06); }
  .header-search input:focus { box-shadow: 0 0 0 4px rgba(154,106,60,.14), 0 6px 18px rgba(31,27,22,.06); }
  .header-search-btn { top: 4px; right: 4px; width: 40px; height: 40px; }
  .header-actions { padding: 8px 0; }
  .nav { grid-area: nav; display: flex; justify-content: safe center; gap: 2px; align-items: center; font-weight: 500; font-size: 13.5px; min-width: 0; border-top: 1px solid var(--line); height: 46px; overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { padding: 7px 9px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
  .nav a:hover { background: var(--surface-2); }
}
@media (min-width: 1200px) { .nav { gap: 4px; font-size: 14px; } .nav a { padding: 7px 10px; } }

/* USP-balk: één regel bovenaan de pagina (niet sticky), op mobiel horizontaal scrollend. */
.usp-bar { background: #2a2620; color: #e7e1d8; font-size: 12.5px; }
.usp-inner { display: flex; gap: 22px; height: 34px; align-items: center; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.usp-inner::-webkit-scrollbar { display: none; }
.usp-inner span { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; }
.usp-inner svg { color: #d8b894; }
@media (min-width: 720px) { .usp-inner { justify-content: center; gap: 40px; } }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero { display: grid; gap: 22px; margin-bottom: 40px; }
.eyebrow { margin: 0 0 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); margin-bottom: 14px; }
.hero-sub { color: var(--muted); font-size: 16.5px; max-width: 46ch; margin: 0 0 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-collage { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.hero-tile { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); aspect-ratio: 1; }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hero-tile:hover img { transform: scale(1.03); }
.hero-tile-main { grid-row: 1 / 3; }
.hero-tile-label { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--ink); font-size: 12.5px; font-weight: 600; padding: 7px 11px; border-radius: 999px; backdrop-filter: blur(6px); max-width: calc(100% - 24px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 48px; margin-bottom: 56px; padding-top: 12px; }
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; padding: 12px 22px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; line-height: 1.2; transition: filter .15s, background .15s, border-color .15s; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: var(--surface); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 16px; width: 100%; }
.btn-sm { padding: 9px 14px; font-size: 13.5px; }
.btn[disabled] { opacity: .55; cursor: default; }
@media (min-width: 720px) { .btn-lg { width: auto; min-width: 240px; } }

/* ── Sections / rows ──────────────────────────────────────────────── */
.row-section, .rooms { margin-bottom: 44px; }
.row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.row-sub { margin: 0; color: var(--muted); flex-basis: 100%; }
.row-more { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.product-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 10px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; scrollbar-width: none; }
.product-row::-webkit-scrollbar { display: none; }
.product-row .product-card { flex: 0 0 66vw; max-width: 280px; scroll-snap-align: start; }
@media (min-width: 720px) {
  .product-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; overflow: visible; margin: 0; padding: 0; }
  .product-row .product-card { flex: none; max-width: none; }
}

.room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.room-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-2); }
.room-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.room-tile:hover img { transform: scale(1.04); }
.room-tile-body { position: absolute; inset: auto 0 0 0; padding: 40px 14px 12px; background: linear-gradient(to top, rgba(31,27,22,.78), rgba(31,27,22,0)); color: #fff; display: flex; flex-direction: column; }
.room-tile-name { font-family: var(--display); font-size: 20px; font-weight: 600; }
.room-tile-count { font-size: 12.5px; opacity: .85; }
@media (min-width: 720px) { .room-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

/* ── Product cards ────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card-media { position: relative; aspect-ratio: 1 / 1; background: var(--surface-2); overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.badge { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.badge-sale { background: var(--sale); color: #fff; }
.badge-new { background: var(--ink); color: #fff; }
.product-card-body { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px 14px; }
.product-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.product-name { font-size: 14px; line-height: 1.35; min-height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 500; }
.product-meta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.swatch { display: inline-block; width: 12px; height: 12px; border-radius: 999px; border: 1px solid rgba(31,27,22,.18); flex-shrink: 0; }
.price { font-size: 16px; font-weight: 700; margin-top: 4px; display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-sale .price-now { color: var(--sale); }
.price-old { color: var(--muted); font-weight: 500; font-size: 13px; }
.price-big { font-size: 28px; }
.price-big .price-old { font-size: 16px; }

/* ── Breadcrumb / listing ─────────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; white-space: nowrap; overflow-x: auto; scrollbar-width: none; }
.breadcrumb i { font-style: normal; margin: 0 6px; opacity: .5; }
.breadcrumb a:hover { color: var(--accent); }
.plp-head { margin-bottom: 16px; display: flex; flex-direction: column; gap: 12px; }
.plp-head h1 .count { display: inline-block; font-family: var(--font); font-size: 14px; color: var(--muted); font-weight: 500; margin-left: 8px; }
.listing-note { margin: 0; font-size: 13.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2); padding: 6px 12px; border-radius: 999px; width: fit-content; }
.listing-note svg { color: var(--accent); }
.listing-note-muted { background: none; color: var(--muted); padding: 0; }
.chips { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex-shrink: 0; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 13.5px; transition: all .15s ease; white-space: nowrap; }
.chip small { color: var(--muted); font-size: 11.5px; margin-left: 2px; }
.chip:hover { border-color: var(--accent); }
.chip--active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.chip--active small { color: rgba(255,255,255,.75); }
@media (min-width: 720px) { .chips { flex-wrap: wrap; margin: 0; padding: 0; } }
.color-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.color-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px 5px 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 12.5px; }
.color-chip .swatch { width: 16px; height: 16px; }
.color-chip:hover { border-color: var(--accent); }
.color-chip--active { border-color: var(--accent); background: rgba(154,106,60,.08); font-weight: 600; }

.filters-drawer { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 18px; }
.filters-drawer summary { list-style: none; cursor: pointer; padding: 12px 16px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.filters-drawer summary::-webkit-details-marker { display: none; }
.filters-drawer[open] summary svg { transform: rotate(90deg); }
.filters { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; padding: 4px 16px 16px; align-items: end; }
.filter-field { display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; color: var(--muted); font-weight: 500; min-width: 0; }
.filter-field select { width: 100%; min-width: 0; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); color: var(--ink); font-size: 14px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 14px; height: 40px; }
.filter-check input { width: 18px; height: 18px; accent-color: var(--accent); }
.filter-reset { font-size: 13px; color: var(--muted); text-decoration: underline; align-self: center; }
.filter-apply { align-self: end; }
@media (min-width: 720px) {
  .filters { grid-template-columns: repeat(6, auto); justify-content: start; gap: 14px; }
  .filter-field select { min-width: 150px; }
  body.js .filter-apply { display: none; }
}

.empty { text-align: center; padding: 48px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.empty p { color: var(--muted); max-width: 46ch; margin: 10px auto 18px; }
.empty-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── PDP ──────────────────────────────────────────────────────────── */
.pdp { display: grid; gap: 22px; align-items: start; margin-bottom: 36px; }
.pdp-media { position: relative; background: var(--surface-2); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; }
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 { margin: 4px 0 12px; font-size: clamp(24px, 3.4vw, 34px); }
.pdp-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.save { font-size: 13px; font-weight: 600; color: var(--sale); }
.pdp-desc { color: var(--muted); margin: 0 0 16px; font-size: 15.5px; }
.pdp-color { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font-size: 14px; }
.variants { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 18px; }
.variants-label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.pdp-buy { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.pdp-usps { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 6px; font-size: 14px; }
.pdp-usps li { display: flex; align-items: center; gap: 8px; }
.pdp-usps svg { color: #2f7a4b; flex-shrink: 0; }
.specs { border-top: 1px solid var(--line); padding-top: 18px; }
.specs h2 { font-size: 19px; margin-bottom: 10px; }
.specs table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs th, .specs td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { color: var(--muted); font-weight: 500; width: 42%; }
@media (min-width: 860px) { .pdp { grid-template-columns: 1.05fr 1fr; gap: 44px; } }

/* Sticky koopbalk op mobiel: de knop blijft binnen handbereik. */
@media (max-width: 719px) {
  .pdp-buy { position: sticky; bottom: 0; z-index: 20; background: linear-gradient(to top, var(--bg) 70%, rgba(250,248,245,0)); padding: 10px 0 12px; margin: 0 0 12px; }
}

/* Recommendations + related */
.recs { margin: 0 0 8px; }
.related { margin-top: 12px; }

/* ── Cart + checkout ──────────────────────────────────────────────── */
.cart-items { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--surface-2); }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-sub { font-size: 13px; color: var(--muted); }
.cart-item-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-item-qty button { width: 28px; height: 28px; border: 1px solid var(--line); background: var(--surface); border-radius: 6px; cursor: pointer; font-size: 16px; line-height: 1; }
.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 13px; text-decoration: underline; }
.cart-summary, .cart-total { display: flex; align-items: center; justify-content: space-between; }
.cart-total { font-size: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.cart-summary { gap: 16px; flex-wrap: wrap; }
.cart-empty, .checkout-empty { color: var(--muted); padding: 24px 0; }
.cart-empty a, .checkout-empty a { color: var(--accent); text-decoration: underline; }
h1 + .cart, h1 + .checkout { margin-top: 18px; }

.checkout { display: grid; gap: 24px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.checkout-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
.checkout-form input { padding: 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 16px; font-family: inherit; }
.checkout-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.checkout-summary h2 { margin-bottom: 14px; font-size: 20px; }
.checkout-status { font-size: 14px; color: var(--accent); margin: 0; }
@media (min-width: 860px) { .checkout { grid-template-columns: 1fr 360px; gap: 40px; } }

/* Confirmation */
.confirmation { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 24px; text-align: center; max-width: 560px; margin: 0 auto; }
.confirmation .btn { margin-top: 16px; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer { background: #2a2620; color: #e7e1d8; margin-top: 40px; }
.footer-inner { display: grid; gap: 28px; padding: 40px 16px; }
.footer-newsletter h3, .footer-col h4 { margin: 0 0 8px; font-family: var(--display); font-size: 18px; }
.footer-newsletter p, .footer-meta { margin: 0 0 12px; color: #b6ac9d; font-size: 14px; }
.footer-brand { font-family: var(--display); font-size: 22px; color: #fff; margin-bottom: 6px !important; }
.footer-brand span { color: #d8b894; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 11px 12px; border: 1px solid #4a4338; background: #353027; color: #fff; border-radius: 8px; font-size: 16px; }
.newsletter-form button { padding: 11px 18px; border: none; background: var(--accent); color: #fff; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.newsletter-status { font-size: 13px; color: #d8b894; min-height: 1em; margin: 8px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; font-size: 13.5px; }
.footer-links a:hover { text-decoration: underline; }
.footer-links-col { flex-direction: column; gap: 8px; margin-top: 0; }
@media (min-width: 860px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; padding: 48px 24px; } }
@media (min-width: 720px) and (max-width: 859px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* Newsletter modal */
.modal-backdrop { position: fixed; inset: 0; background: rgba(31, 27, 22, .55); display: grid; place-items: center; z-index: 100; padding: 20px; }
.modal-backdrop[hidden] { display: none; }
.modal { position: relative; background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: 32px; max-width: 420px; width: 100%; box-shadow: var(--shadow); }
.modal h3 { margin: 0 0 8px; }
.modal p { margin: 0 0 16px; color: var(--muted); }
.modal .newsletter-form input { background: #f7f3ee; border-color: var(--line); color: var(--ink); }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); }
@media (max-width: 480px) { .modal .newsletter-form { flex-direction: column; } }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 90; white-space: nowrap; }
.toast.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Klantenservice (/help) ───────────────────────────────────────── */
.help-hero { background: linear-gradient(135deg, #f3ece2, #e9dccb); border-radius: var(--radius); padding: 32px 24px; margin-bottom: 32px; }
.help-hero h1 { margin: 0 0 8px; }
.help-hero p { color: var(--muted); margin: 0; }
.help-section { margin-bottom: 36px; }
.help-section > h2 { margin: 0 0 14px; font-size: 22px; }
.help-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.help-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease; }
.help-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--accent); }
.help-card h3 { margin: 0 0 6px; font-size: 16px; line-height: 1.35; font-family: var(--font); font-weight: 600; }
.help-card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.help-article { max-width: 760px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; margin-bottom: 36px; }
.help-article h1 { margin: 4px 0 16px; font-size: 30px; }
.help-article h2 { margin: 26px 0 10px; font-size: 20px; }
.help-article p, .help-article li { line-height: 1.65; }
.help-article ul, .help-article ol { padding-left: 22px; }
.help-article li { margin-bottom: 6px; }
.help-article a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.help-article table { border-collapse: collapse; width: 100%; margin: 12px 0 18px; font-size: 14.5px; }
.help-article th, .help-article td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.help-article th { background: #f7f3ee; font-weight: 600; }
.help-category { margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.help-updated { margin-top: 22px; font-size: 12.5px; color: var(--muted); }
.help-contact { background: linear-gradient(135deg, #f3ece2, #e9dccb); border-radius: var(--radius); padding: 28px 24px; margin-bottom: 36px; }
.help-contact h2 { margin: 0 0 8px; }
.help-contact p { margin: 0 0 10px; color: var(--muted); }
.help-contact .btn { margin-top: 6px; }
@media (min-width: 720px) { .help-grid { grid-template-columns: repeat(3, 1fr); } .help-article { padding: 32px 36px; } }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }
