/* ============================================================
   quote.css — het offertemandje (founder 12-09). Nieuw bestand
   naast shop.css, geladen in de body via BaseLayout (Tier B).
   Gebruikt de premium-ecom-tokens (--px-*) uit redesign.css.
   ============================================================ */

.q-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- navknop met teller ------------------------------------------------ */
.q-nav-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: none; cursor: pointer; background: none;
  border: 1.5px solid var(--color-border-strong, #d8d4e6); border-radius: var(--radius-sm, 10px); color: var(--color-text, #14022d);
  transition: border-color 150ms ease, color 150ms ease;
}
.q-nav-btn:hover { border-color: var(--px-accent-ui, #8a00c4); color: var(--px-accent-ui, #8a00c4); }
.q-nav-count {
  position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 999px; background: var(--px-accent-ui, #8a00c4); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 19px; text-align: center; font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 2px #fff;
}
.q-nav-count[hidden] { display: none; }
@keyframes q-bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }
.q-nav-count.is-bump { animation: q-bump 360ms var(--px-ease, ease); }

/* ---- drawer ---------------------------------------------------------- */
.q-drawer { position: fixed; inset: 0; z-index: 150; }
.q-drawer[hidden] { display: none; }
.q-drawer-backdrop { position: absolute; inset: 0; background: rgba(20, 2, 45, 0.42); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.q-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(460px, 100%);
  background: #fff; display: flex; flex-direction: column;
  box-shadow: -18px 0 60px rgba(20, 2, 45, 0.28);
  animation: q-slide 280ms var(--px-ease, cubic-bezier(.22,.61,.24,1)) both;
}
@keyframes q-slide { from { transform: translateX(28px); opacity: 0; } to { transform: none; opacity: 1; } }
.q-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--px-line, #e4e1ea); }
.q-panel-title { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -0.015em; color: var(--px-ink, #14022d); }
.q-panel-title svg { color: var(--px-accent-ui, #8a00c4); }
.q-panel-n { font-size: 14px; font-weight: 600; color: var(--px-muted, #85809a); }
.q-iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: none; background: none; border: 1px solid var(--px-line, #e4e1ea); border-radius: 9px; color: var(--px-ink, #14022d); cursor: pointer; transition: border-color 150ms ease, color 150ms ease; }
.q-iconbtn:hover { border-color: var(--px-accent-ui, #8a00c4); color: var(--px-accent-ui, #8a00c4); }
.q-panel-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 6px 20px; }
.q-panel-foot { padding: 16px 20px 18px; border-top: 1px solid var(--px-line, #e4e1ea); display: flex; flex-direction: column; gap: 10px; background: #fff; }
.q-panel-foot[hidden] { display: none; }
.q-foot-meta { margin: 0 0 2px; font-size: 13px; font-weight: 600; color: var(--px-muted, #85809a); }
.q-foot-cta, .q-panel-foot .plsx-btn { justify-content: center; }
.q-foot-note { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--px-muted, #85809a); }
body.q-open { overflow: hidden; }

/* lege staat */
.q-empty { padding: 26px 0 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.q-empty[hidden] { display: none; }
.q-empty-ic { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 14px; background: var(--px-accent-wash, #f3e4fd); color: var(--px-accent-ui, #8a00c4); margin-bottom: 6px; }
.q-empty-t { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -0.015em; color: var(--px-ink, #14022d); }
.q-empty-s { margin: 0 0 10px; font-size: 14.5px; line-height: 1.55; color: var(--px-body, #55506b); max-width: 40ch; }

/* regels */
.q-list { list-style: none; margin: 0; padding: 0; }
.q-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px 14px; padding: 16px 0; border-bottom: 1px solid var(--px-line, #e4e1ea); align-items: start; }
.q-item:last-child { border-bottom: none; }
.q-item-img { display: block; width: 56px; height: 56px; border-radius: 12px; overflow: hidden; background: var(--px-tile, #f5f5f7); border: 1px solid var(--px-line, #e4e1ea); }
.q-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.q-item-b { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.q-item-name { font-size: 15px; font-weight: 700; letter-spacing: -0.012em; color: var(--px-ink, #14022d); text-decoration: none; line-height: 1.25; }
.q-item-name:hover { color: var(--px-accent-ui, #8a00c4); }
.q-item-cat { font-size: 12.5px; color: var(--px-muted, #85809a); }
.q-item-size { font-size: 13px; color: var(--px-body, #55506b); line-height: 1.4; }
.q-item-size--tbd { color: var(--px-accent-ui, #8a00c4); font-weight: 600; }
.q-item-size--tbd a { color: inherit; }
.q-item-print { font-size: 12.5px; color: var(--px-muted, #85809a); }
.q-item-r { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.q-item-unit { font-size: 11.5px; color: var(--px-muted, #85809a); text-align: right; max-width: 150px; line-height: 1.35; }
.q-item-x { width: 30px; height: 30px; border-radius: 8px; }
.q-item-x:hover { border-color: var(--color-error, #c62828); color: var(--color-error, #c62828); }

/* stepper */
.q-stepper { display: inline-flex; align-items: center; border: 1px solid var(--px-line-2, #d5d1de); border-radius: 999px; overflow: hidden; background: #fff; }
.q-step { width: 32px; height: 34px; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; color: var(--px-ink, #14022d); }
.q-step:hover { background: var(--px-tile, #f5f5f7); color: var(--px-accent-ui, #8a00c4); }
.q-step-in { width: 66px; height: 34px; border: none; outline: none; text-align: center; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--px-ink, #14022d); font-variant-numeric: tabular-nums; background: none; -moz-appearance: textfield; }
.q-step-in::-webkit-outer-spin-button, .q-step-in::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.q-stepper:focus-within { border-color: var(--px-accent-ui, #8a00c4); box-shadow: 0 0 0 3px rgba(138, 0, 196, 0.14); }

/* ---- "toegevoegd"-melding -------------------------------------------- */
.q-toast {
  position: fixed; z-index: 160; top: calc(var(--nav-h, 76px) + 12px); right: 16px;
  width: min(420px, calc(100% - 32px)); display: flex; align-items: center; gap: 12px;
  padding: 12px 12px 12px 14px; background: #fff; border: 1px solid var(--px-line, #e4e1ea);
  border-radius: 16px; box-shadow: 0 18px 48px rgba(20, 2, 45, 0.22);
  animation: q-toast-in 260ms var(--px-ease, ease) both;
}
.q-toast[hidden] { display: none; }
@keyframes q-toast-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.q-toast-ic { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 999px; background: var(--px-accent-ui, #8a00c4); color: #fff; flex: none; }
.q-toast-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex: none; border: 1px solid var(--px-line, #e4e1ea); background: var(--px-tile, #f5f5f7); }
.q-toast-img[hidden] { display: none; }
.q-toast-b { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.q-toast-t { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--px-ink, #14022d); }
.q-toast-s { font-size: 12.5px; color: var(--px-body, #55506b); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.q-toast .plsx-btn--sm { padding: 9px 14px; font-size: 13px; }
.q-toast-x { width: 28px; height: 28px; border: none; }
@media (max-width: 620px) {
  .q-toast { top: auto; bottom: 14px; left: 12px; right: 12px; width: auto; flex-wrap: wrap; }
  .q-toast .plsx-btn--sm { order: 5; flex: 1; justify-content: center; }
}

/* ---- productpagina: media links, koopvak rechts ------------------------- */
.q-pdp { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(24px, 3.5vw, 56px); align-items: start; }
.q-pdp > * { min-width: 0; }
.q-pdp-media { position: sticky; top: calc(var(--nav-h, 76px) + 16px); }
.q-pdp-media .plsx-shot { aspect-ratio: 1 / 1; }
.q-pdp-box .q-h1 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.02; letter-spacing: -0.012em; margin: 0; text-wrap: balance; }
.q-pdp-box .q-lead { font-size: clamp(15.5px, 1.25vw, 18px); line-height: 1.55; color: var(--px-body, #55506b); margin: 14px 0 0; max-width: 54ch; text-wrap: pretty; }
.q-config { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--px-line, #e4e1ea); display: flex; flex-direction: column; gap: 20px; }
.q-field { display: flex; flex-direction: column; gap: 10px; }
.q-field-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
.q-label { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--px-ink, #14022d); }
.q-hint { font-size: 12.5px; font-weight: 500; color: var(--px-muted, #85809a); }
.q-input { height: 44px; border-radius: 12px !important; }

.q-sizes { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: 8px; }
.q-size {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px; text-align: left;
  padding: 10px 12px; background: #fff; border: 1px solid var(--px-line-2, #d5d1de); border-radius: 12px;
  cursor: pointer; font-family: inherit; color: var(--px-ink, #14022d);
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.q-size:hover { border-color: var(--px-accent-ui, #8a00c4); }
.q-size.is-active { border-color: var(--px-accent-ui, #8a00c4); background: var(--px-accent-wash, #f3e4fd); box-shadow: inset 0 0 0 1px var(--px-accent-ui, #8a00c4); }
.q-size-check { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 999px; border: 1.5px solid var(--px-line-2, #d5d1de); color: transparent; background: #fff; }
.q-size.is-active .q-size-check { background: var(--px-accent-ui, #8a00c4); border-color: var(--px-accent-ui, #8a00c4); color: #fff; }
.q-size-check svg { width: 14px; height: 14px; }
.q-size-b { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.q-size-item { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.q-size-meta { font-size: 12px; color: var(--px-body, #55506b); line-height: 1.3; }
.q-size-code { font-size: 11px; font-weight: 700; color: var(--px-accent-ui, #8a00c4); letter-spacing: 0.01em; white-space: nowrap; }

.q-pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.q-pill {
  font-family: inherit; font-size: 13.5px; font-weight: 600; letter-spacing: -0.005em; color: var(--px-ink, #14022d);
  background: #fff; border: 1px solid var(--px-line-2, #d5d1de); border-radius: 999px; padding: 9px 14px; cursor: pointer;
  font-variant-numeric: tabular-nums; transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}
.q-pill:hover { border-color: var(--px-accent-ui, #8a00c4); color: var(--px-accent-ui, #8a00c4); }
.q-pill.is-active { background: var(--px-ink, #14022d); border-color: var(--px-ink, #14022d); color: #fff; }
.q-qty-custom { display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 12px 0 12px; border: 1px solid var(--px-line-2, #d5d1de); border-radius: 999px; background: #fff; }
.q-qty-custom:focus-within { border-color: var(--px-accent-ui, #8a00c4); box-shadow: 0 0 0 3px rgba(138, 0, 196, 0.14); }
.q-qty-input { width: 74px; border: none; outline: none; background: none; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--px-ink, #14022d); font-variant-numeric: tabular-nums; -moz-appearance: textfield; }
.q-qty-input::-webkit-outer-spin-button, .q-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.q-qty-unit { font-size: 12.5px; color: var(--px-muted, #85809a); }
.q-boxes { margin: 0; font-size: 12.5px; color: var(--px-accent-ui, #8a00c4); font-weight: 600; }
.q-boxes[hidden] { display: none; }

.q-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.q-add-main { flex: 1 1 auto; justify-content: center; min-height: 52px; font-size: 15.5px; }
.q-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.q-trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--px-body, #55506b); }
.q-trust svg { width: 15px; height: 15px; color: var(--px-accent-ui, #8a00c4); }

/* plakkende balk op mobiel */
.q-stickybar { display: none; }
@media (max-width: 900px) {
  .q-pdp { grid-template-columns: 1fr; }
  .q-pdp-media { position: static; }
  .q-pdp-media .plsx-shot { aspect-ratio: 4 / 3; }
  .q-stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--px-line, #e4e1ea); box-shadow: 0 -10px 30px rgba(20, 2, 45, 0.10); }
  .q-stickybar[hidden] { display: none; }
  .q-sticky-name { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .q-stickybar .plsx-btn { flex: none; }
}
@media (max-width: 620px) { .q-actions .plsx-btn { flex: 1 1 100%; justify-content: center; } }

/* ---- snel toevoegen in de maattabel ------------------------------------- */
.q-rowadd { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px 0 8px; border-radius: 999px; border: 1px solid var(--px-line-2, #d5d1de); background: #fff; color: var(--px-accent-ui, #8a00c4); font-family: inherit; font-size: 12.5px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 150ms ease, color 150ms ease, border-color 150ms ease; }
.q-rowadd:hover, .q-rowadd.is-in { background: var(--px-accent-ui, #8a00c4); border-color: var(--px-accent-ui, #8a00c4); color: #fff; }

/* ---- productkaart: link + snel-toevoegknop -------------------------------- */
.plsx-prod { position: relative; }
.plsx-prod-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: inherit; min-width: 0; }
.q-card-add {
  position: absolute; right: 12px; top: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.94);
  border: 1px solid var(--px-line-2, #d5d1de); color: var(--px-ink, #14022d); cursor: pointer;
  box-shadow: 0 2px 8px rgba(20, 2, 45, 0.10); transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.q-card-add:hover { background: var(--px-accent-ui, #8a00c4); border-color: var(--px-accent-ui, #8a00c4); color: #fff; transform: scale(1.06); }
.q-card-add.is-in { background: var(--px-ink, #14022d); border-color: var(--px-ink, #14022d); color: #fff; }
.q-card-add.is-in svg { transform: rotate(45deg); }
.q-card-add:focus-visible { outline: 2px solid var(--px-accent-ui, #8a00c4); outline-offset: 2px; }
.plsx-prod-cta .q-cta-add { display: inline-flex; align-items: center; gap: 5px; color: var(--px-ink, #14022d); }

/* ---- categoriechips in de hero ------------------------------------------ */
.q-hero-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.q-hero-cats .plsx-chip { font-size: 13.5px; padding: 8px 14px 8px 10px; gap: 8px; }
.q-hero-cats .plsx-chip img { width: 30px; height: 30px; margin: -4px 0 -4px 0; }

/* ---- indienpagina -------------------------------------------------------- */
.q-checkout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr); gap: clamp(20px, 3vw, 44px); align-items: start; }
.q-checkout > * { min-width: 0; }
.q-co-side { position: sticky; top: calc(var(--nav-h, 76px) + 16px); display: flex; flex-direction: column; gap: 14px; }
.q-form { display: flex; flex-direction: column; gap: 22px; padding: clamp(20px, 2.6vw, 32px); background: #fff; border: 1px solid var(--px-line, #e4e1ea); border-radius: 20px; }
.q-form[hidden] { display: none; }
.q-fs { margin: 0; padding: 0; border: none; min-width: 0; }
.q-legend { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; padding: 0; font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--px-ink, #14022d); }
.q-legend-n { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 999px; background: var(--px-ink, #14022d); color: #fff; font-size: 12px; font-weight: 700; }
.q-form .pls-input, .q-form .pls-select, .q-form .pls-textarea { border-radius: 12px !important; }
.q-form .pls-input { height: 46px; }
.q-radios { display: flex; flex-direction: column; gap: 8px; }
.q-radio { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--px-line-2, #d5d1de); border-radius: 12px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--px-ink, #14022d); }
.q-radio:has(input:checked) { border-color: var(--px-accent-ui, #8a00c4); background: var(--px-accent-wash, #f3e4fd); }
.q-radio input { accent-color: var(--px-accent-ui, #8a00c4); margin: 0; }
.q-submit { justify-content: center; min-height: 54px; font-size: 16px; width: 100%; }
.q-attach { display: flex; align-items: center; gap: 9px; margin: 0; padding: 10px 12px; border-radius: 12px; background: var(--px-accent-wash, #f3e4fd); color: var(--px-accent-ui, #8a00c4); font-size: 13px; font-weight: 600; }
.q-attach-ic { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 999px; background: var(--px-accent-ui, #8a00c4); color: #fff; flex: none; }
.q-attach-ic svg { width: 13px; height: 13px; }

.q-summary { background: var(--px-tile, #f5f5f7); border: 1px solid var(--px-line, #e4e1ea); border-radius: 20px; padding: 18px 20px 20px; }
.q-sum-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.q-sum-title { display: flex; align-items: center; gap: 9px; margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--px-ink, #14022d); }
.q-sum-title svg { color: var(--px-accent-ui, #8a00c4); }
.q-sum-empty { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: var(--px-body, #55506b); }
.q-sum-empty[hidden] { display: none; }
.q-list--sum .q-item { grid-template-columns: 48px 1fr; padding: 14px 0; }
.q-list--sum .q-item-img { width: 48px; height: 48px; }
.q-list--sum .q-item-r { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.q-list--sum .q-item-unit { text-align: left; max-width: none; }
.q-sum-foot { margin-top: 8px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.q-sum-foot[hidden] { display: none; }
.q-direct { display: flex; flex-direction: column; gap: 8px; }
.q-direct-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--px-line, #e4e1ea); border-radius: 14px; background: #fff; text-decoration: none; color: var(--px-ink, #14022d); transition: border-color 150ms ease; }
.q-direct-row:hover { border-color: var(--px-accent-ui, #8a00c4); }
.q-direct-row svg { color: var(--px-accent-ui, #8a00c4); flex: none; }
.q-direct-l { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; color: var(--px-muted, #85809a); }
.q-direct-v { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }

.q-success { padding: clamp(24px, 3vw, 36px); background: #fff; border: 1px solid var(--px-line, #e4e1ea); border-radius: 20px; }
.q-success[hidden] { display: none; }
.q-succ-ic { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 16px; background: var(--px-accent-ui, #8a00c4); color: #fff; margin-bottom: 16px; }
.q-succ-ic svg { width: 26px; height: 26px; }
.q-succ-steps { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.q-succ-steps li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--px-body, #55506b); }
.q-succ-n { font-size: 12px; font-weight: 700; color: var(--px-accent-ui, #8a00c4); font-variant-numeric: tabular-nums; flex: none; }

@media (max-width: 960px) {
  .q-checkout { grid-template-columns: 1fr; }
  .q-co-side { position: static; order: -1; }
  .q-direct { display: none; }
}
@media (max-width: 520px) { .q-form .pls-field-pair { grid-template-columns: 1fr !important; } }

/* ---- reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .q-panel, .q-toast { animation: none !important; }
  .q-nav-count.is-bump { animation: none !important; }
  .q-card-add, .q-card-add:hover { transition: none !important; transform: none !important; }
}

/* ---- herochips: teller ---------------------------------------------------- */
.q-chip-n { font-size: 11.5px; font-weight: 700; color: var(--px-muted, #85809a); margin-left: 2px; }
.plsx-chip:hover .q-chip-n { color: inherit; }

/* ---- compacte categoriehero ------------------------------------------------ */
.q-cat-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: clamp(24px, 4vw, 56px); align-items: center; }
.q-cat-hero > * { min-width: 0; }
@media (max-width: 900px) {
  .q-cat-hero { grid-template-columns: 1fr; }
  .q-cat-hero-media { max-width: 380px; }
}

/* ---- nav: de extra mandje-knop mag de links niet laten afbreken ---------------- */
.pls-nav-links .pls-navbar-link { white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1140px) {
  .pls-nav-inner { gap: 14px; }
  .pls-nav-links { gap: 11px; }
  .pls-nav-links .pls-navbar-link { font-size: 14px; }
  .pls-nav-right { gap: 7px; }
}
