/* ============================================================
   Mondileder — Design System & Page CSS (bridge build)
   AANGEPAST t.o.v. het prototype-CSS:
   - De globale reset (*), html en body-regels zijn VERWIJDERD of
     gescope't onder .mlb-scope, zodat de rest van de WordPress/Elementor
     site niet wordt beinvloed. De :root design-tokens blijven globaal
     (alle componenten hangen eraan; dat is veilig, het zijn alleen variabelen).
   - .proto-hidden prototype-regels zijn verwijderd.
   Plaats de content van de shortcodes altijd binnen een .mlb-scope wrapper
   (de wrapper-shortcodes doen dit automatisch).
   ============================================================ */

/* ============================================================
   Mondileder — Design System & Page CSS
   Geëxtraheerd uit de HTML-prototypes (categoriepagina + productpagina).
   In de prototypes stond dit in één <style>-blok in de <head> van
   ELKE pagina. Beide pagina's droegen exact dezelfde CSS mee, op 4
   productpagina-specifieke regels na (breadcrumb/hero-padding,
   prijsblok-lijn, logo-hoogte) — die zitten in DIT bestand verwerkt.

   Bevat: :root design-tokens, globale reset (* / html / body),
   globale element-styling (img, a, button) en ALLE component-CSS
   (header, footer, topbar, location-band, contact-band, plus alle
   categorie- en productpagina-componenten).

   LET OP voor Elementor: de reset en body-styling hieronder zijn
   GLOBAAL en beïnvloeden de hele site. Zie migratie-notitie sectie 2.
   ============================================================ */


  /* ============================================
     DESIGN SYSTEM — Mondileder Interieurs
     Editorial luxury. Charcoal × Bone × Cognac.
     ============================================ */
  :root {
    --bone: #faf8f5;
    --bone-soft: #f4f1ec;
    --bone-warm: #ece8e0;
    --charcoal: #272421;
    --charcoal-soft: #36312b;
    --ink: #3a3631;
    --muted: #8a8378;
    --muted-soft: #b8b0a3;
    --line: #ddd7cc;
    --line-soft: #e9e4db;
    --cognac: #a0623a;
    --cognac-deep: #8a4f2c;
    --cognac-soft: #c4895f;
    --gold: #b89567;
    --white: #ffffff;

    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1440px;
    --gutter: clamp(1.25rem, 4vw, 3.5rem);

    /* Radius scale — more roundness throughout */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Shadow scale — soft, layered */
    --shadow-sm: 0 2px 8px -2px rgba(26,26,26,0.06);
    --shadow-md: 0 8px 24px -8px rgba(26,26,26,0.12);
    --shadow-lg: 0 20px 50px -20px rgba(26,26,26,0.22);
    --shadow-xl: 0 40px 80px -30px rgba(26,26,26,0.3);

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mlb-scope {
    font-family: var(--sans);
    background: var(--bone);
    color: var(--ink);
    line-height: 1.55;
    font-weight: 400;
    font-size: 16.5px;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* Page content renders immediately; no entrance animation on load. */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .mlb-scope img { max-width: 100%; display: block; }
  .mlb-scope a { color: inherit; text-decoration: none; }
  .mlb-scope button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  .mlb-scope .serif { font-family: var(--serif); }
  .italic { font-style: italic; }

  /* ============================================
     SITE HEADER
     ============================================ */
  .topbar {
    background: var(--charcoal);
    color: var(--bone);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px var(--gutter);
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 400;
  }
  .topbar__left { display: flex; gap: 28px; color: var(--muted-soft); }
  .topbar__left span {
    display: inline-flex; align-items: center; gap: 10px;
  }
  .topbar__left span::before {
    content: ""; width: 5px; height: 5px;
    border-radius: 50%; background: var(--cognac);
    flex-shrink: 0;
  }
  .topbar__right { display: flex; gap: 24px; }
  .topbar__right a {
    color: var(--bone);
    transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .topbar__right a:hover { color: var(--cognac-soft); }

  .header {
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
    padding: 0 var(--gutter);
    position: sticky; top: 42px;
    z-index: 100;
    backdrop-filter: blur(8px);
  }
  .header__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 24px 0;
    gap: 40px;
  }
  .header__nav-left, .header__nav-right {
    display: flex;
    gap: 36px;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .header__nav-right { justify-content: flex-end; align-items: center; }
  .header__nav-left a, .header__nav-right > a {
    position: relative;
    padding: 6px 0;
    transition: color 0.25s var(--ease);
  }
  .header__nav-left a:hover, .header__nav-right > a:hover { color: var(--cognac); }
  .header__nav-left a::after, .header__nav-right > a::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--cognac);
    transition: width 0.3s var(--ease);
  }
  .header__nav-left a:hover::after, .header__nav-right > a:hover::after { width: 100%; }

  .mlb-scope .logo {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    text-align: center;
    line-height: 1;
  }
  .mlb-scope .logo small {
    display: block;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 500;
  }
  .logo__img {
    height: 32px; width: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
  }
  .logo__fallback { display: none; }
  .footer__brand .logo__img { height: 28px; margin: 0; }

  .header__actions { display: flex; gap: 14px; align-items: center; justify-content: flex-end; }
  .icon-btn {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    transition: all 0.25s var(--ease);
    background: transparent;
  }
  .icon-btn:hover {
    background: var(--bone-warm);
    transform: translateY(-1px);
  }
  .icon-btn svg { width: 18px; height: 18px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; }

  .cta-mini {
    padding: 12px 24px;
    border: 1px solid var(--charcoal);
    border-radius: var(--r-pill);
    color: var(--charcoal);
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    font-weight: 500;
  }
  .cta-mini:hover {
    background: var(--charcoal); color: var(--bone);
    transform: translateY(-1px);
  }

  /* ============================================
     HERO — FULLSCREEN VIDEO HEADER
     ============================================ */
  .hv {
    position: relative;
    height: min(86vh, 820px);
    min-height: 560px;
    background: var(--charcoal);
    overflow: hidden;
  }
  .hv__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hv__overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(78deg, rgba(22,20,18,0.72) 0%, rgba(22,20,18,0.42) 42%, rgba(22,20,18,0.08) 68%, rgba(22,20,18,0.22) 100%),
      linear-gradient(180deg, rgba(22,20,18,0) 70%, rgba(22,20,18,0.45) 100%);
  }
  .hv__content {
    position: relative; z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-start;
  }
  .hv__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac-soft);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .hv__eyebrow::before {
    content: ""; width: 36px; height: 1px; background: var(--cognac-soft);
  }
  .hv__title {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.4vw, 5.8rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 780px;
  }
  .hv__title em {
    font-style: italic;
    color: var(--cognac-soft);
    font-weight: 400;
  }
  .hv__lede {
    font-size: 17.5px;
    line-height: 1.65;
    color: rgba(250,248,245,0.88);
    max-width: 520px;
    margin-bottom: 40px;
  }
  .hv__cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

  .mlb-scope .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    border-radius: var(--r-pill);
  }
  .btn--primary {
    background: var(--charcoal);
    color: var(--bone);
    box-shadow: var(--shadow-md);
  }
  .btn--primary:hover {
    background: var(--cognac);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  .btn--ghost {
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
  }
  .btn--ghost:hover {
    background: var(--charcoal); color: var(--bone);
    transform: translateY(-2px);
  }
  .btn--cognac {
    background: var(--cognac);
    color: var(--white);
    box-shadow: 0 8px 24px -10px rgba(160,98,58,0.5);
  }
  .btn--cognac:hover {
    background: var(--cognac-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(160,98,58,0.6);
  }
  .mlb-scope .btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
  .mlb-scope .btn:hover svg { transform: translateX(5px); }
  .btn--light {
    background: var(--bone);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
  }
  .btn--light:hover {
    background: var(--cognac);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  .btn--ghost-light {
    border: 1px solid rgba(250,248,245,0.55);
    color: var(--bone);
    backdrop-filter: blur(3px);
  }
  .btn--ghost-light:hover {
    background: var(--bone);
    border-color: var(--bone);
    color: var(--charcoal);
    transform: translateY(-2px);
  }

  .hv__badge {
    position: absolute;
    right: var(--gutter); bottom: 44px;
    background: var(--bone);
    padding: 18px 24px;
    border-radius: var(--r-md);
    z-index: 3;
    text-align: center;
    box-shadow: var(--shadow-md);
  }
  .hv__badge-num {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
    color: var(--cognac);
    font-weight: 400;
  }
  .hv__badge-lbl {
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted);
    margin-top: 5px; font-weight: 500;
  }
  .hv__scroll {
    position: absolute;
    bottom: 38px; left: var(--gutter);
    font-size: 11px; letter-spacing: 0.36em;
    text-transform: uppercase; color: rgba(250,248,245,0.78);
    display: flex; align-items: center; gap: 14px;
    font-weight: 500;
    z-index: 2;
  }
  .hv__scroll::before {
    content: ""; width: 60px; height: 1px; background: rgba(250,248,245,0.55);
  }

  /* ============================================
     USP BALK — direct duidelijk na de hero
     ============================================ */
  .usp-bar {
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
  }
  .usp-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 28px;
    flex-wrap: wrap;
  }
  .mlb-scope .usp {
    display: inline-flex; align-items: center; gap: 10px;
  }
  .usp__icon { display: inline-flex; flex-shrink: 0; }
  .usp__icon svg {
    width: 17px; height: 17px;
    stroke: var(--cognac); fill: none; stroke-width: 1.5;
  }
  .usp__txt {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
  }

  /* ============================================
     MARQUEE / BRAND STRIP
     ============================================ */
  .brand-strip {
    background: var(--charcoal);
    color: var(--bone);
    padding: 34px 0;
    overflow: hidden;
    border-top: 1px solid #1c1916;
    border-bottom: 1px solid #1c1916;
  }
  .brand-strip__track {
    display: flex; gap: 80px;
    animation: marquee 40s linear infinite;
    width: max-content;
    align-items: center;
  }
  .brand-strip__item {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--bone);
    white-space: nowrap;
    opacity: 0.85;
  }
  .brand-strip__sep {
    color: var(--cognac);
    font-size: 17px;
  }
  /* Gestileerde merk-wordmarks. In productie: vervang elk item door het
     witte merklogo (PNG/SVG) met class .brand-strip__logo */
  .brand-strip__logo { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.9; }
  .bl-leolux   { font-family: var(--sans); font-weight: 600; font-size: 25px; letter-spacing: 0.03em; text-transform: lowercase; }
  .bl-rolf     { font-family: var(--sans); font-weight: 700; font-size: 21px; letter-spacing: 0.22em; text-transform: uppercase; }
  .bl-montis   { font-family: var(--sans); font-weight: 700; font-size: 22px; letter-spacing: 0.12em; text-transform: uppercase; }
  .bl-artifort { font-family: var(--sans); font-weight: 500; font-size: 23px; letter-spacing: 0.04em; }
  .bl-desede   { font-family: var(--serif); font-weight: 500; font-size: 27px; letter-spacing: 0.02em; }
  .bl-jori     { font-family: var(--sans); font-weight: 700; font-size: 21px; letter-spacing: 0.3em; text-transform: uppercase; }
  .bl-fsm      { font-family: var(--sans); font-weight: 600; font-size: 19px; letter-spacing: 0.18em; text-transform: uppercase; border: 1.5px solid rgba(250,248,245,0.65); padding: 4px 11px; border-radius: 3px; }
  .bl-pode     { font-family: var(--sans); font-weight: 400; font-size: 25px; letter-spacing: 0.16em; text-transform: lowercase; }
  .bl-harvink  { font-family: var(--sans); font-weight: 600; font-size: 21px; letter-spacing: 0.2em; text-transform: uppercase; }
  .bl-draenert { font-family: var(--sans); font-weight: 500; font-size: 21px; letter-spacing: 0.26em; text-transform: uppercase; }
  .bl-interstar{ font-family: var(--sans); font-weight: 500; font-size: 23px; letter-spacing: 0.05em; text-transform: lowercase; }
  .bl-label    { font-family: var(--sans); font-weight: 700; font-size: 21px; letter-spacing: 0.24em; text-transform: uppercase; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============================================
     CATEGORIES — Editorial grid
     ============================================ */
  .mlb-scope .section { padding: 110px 0; }
  .section--tight { padding: 80px 0; }
  .mlb-scope .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  .section-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 60px;
  }
  .section-head__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac);
    font-weight: 500;
    padding-bottom: 10px;
  }
  .section-head__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--charcoal);
  }
  .section-head__title em { font-style: italic; color: var(--cognac); }
  .section-head__link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 12px 22px;
    border: 1px solid var(--charcoal);
    border-radius: var(--r-pill);
    font-weight: 500;
    transition: all 0.25s var(--ease);
  }
  .section-head__link::after {
    content: "→";
    transition: transform 0.25s var(--ease);
  }
  .section-head__link:hover {
    background: var(--charcoal);
    color: var(--bone);
  }
  .section-head__link:hover::after { transform: translateX(4px); }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s var(--ease);
    border-radius: var(--r-lg);
  }
  .cat-card:hover { transform: translateY(-4px); }
  .cat-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bone-warm);
    border-radius: var(--r-lg);
  }
  .cat-card__image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(26,26,26,0.65) 100%);
    pointer-events: none;
  }
  .cat-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }
  .cat-card:hover .cat-card__image img { transform: scale(1.07); }
  .cat-card__label {
    position: absolute; bottom: 28px; left: 28px;
    color: var(--bone);
    z-index: 2;
  }
  .cat-card__name {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.005em;
    margin-bottom: 6px;
  }
  .cat-card__count {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-soft);
    font-weight: 500;
  }
  /* Floating arrow on hover */
  .cat-card__arrow {
    position: absolute;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bone);
    color: var(--charcoal);
    display: grid; place-items: center;
    z-index: 2;
    transform: translateY(8px) scale(0.85);
    opacity: 0;
    transition: all 0.4s var(--ease);
  }
  .cat-card:hover .cat-card__arrow {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .cat-card__arrow svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 1.6; }

  /* Asymmetric layout */
  .cat-card:nth-child(1) { grid-column: span 5; }
  .cat-card:nth-child(1) .cat-card__image { aspect-ratio: 4/5; }
  .cat-card:nth-child(2) { grid-column: span 4; }
  .cat-card:nth-child(2) .cat-card__image { aspect-ratio: 3/4; }
  .cat-card:nth-child(3) { grid-column: span 3; align-self: end; }
  .cat-card:nth-child(3) .cat-card__image { aspect-ratio: 3/4; }
  .cat-card:nth-child(4) { grid-column: span 4; }
  .cat-card:nth-child(4) .cat-card__image { aspect-ratio: 4/3; }
  .cat-card:nth-child(5) { grid-column: span 4; }
  .cat-card:nth-child(5) .cat-card__image { aspect-ratio: 4/3; }
  .cat-card:nth-child(6) { grid-column: span 4; }
  .cat-card:nth-child(6) .cat-card__image { aspect-ratio: 4/3; }

  /* ============================================
     STORY — leerspecialist split
     ============================================ */
  .story {
    background: var(--charcoal);
    color: var(--bone);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .story__bg-mark {
    position: absolute;
    bottom: -120px; right: -40px;
    font-family: var(--serif);
    font-size: 480px;
    line-height: 0.8;
    color: rgba(160, 98, 58, 0.06);
    font-style: italic;
    pointer-events: none;
    user-select: none;
  }
  .story__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .story__visual {
    position: relative;
  }
  .story__photo {
    width: 100%;
    aspect-ratio: 4/3.3;
    min-height: 580px;
    object-fit: cover;
    display: block;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    background: var(--charcoal-soft);
  }
  .story__visual-mark {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--bone);
    color: var(--charcoal);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    z-index: 2;
  }
  .story__copy h3 {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac-soft);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .story__copy h2 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    color: var(--bone);
  }
  .story__copy h2 em { color: var(--cognac-soft); font-style: italic; }
  .story__copy p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted-soft);
    margin-bottom: 22px;
  }
  .story__copy .btn--ghost {
    border-color: var(--bone);
    color: var(--bone);
    margin-top: 24px;
  }
  .story__copy .btn--ghost:hover {
    background: var(--cognac);
    border-color: var(--cognac);
  }

  /* ============================================
     SERVICES — Interieuradvies, Kasten op maat, 3D plan
     ============================================ */
  .services {
    background: var(--bone);
    padding: 110px 0;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .service {
    padding: 48px 36px 40px;
    background: var(--bone-soft);
    border-radius: var(--r-lg);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(160,98,58,0) 0%, rgba(160,98,58,0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
  }
  .service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .service:hover::before { opacity: 1; }
  .service__icon {
    width: 56px; height: 56px;
    margin-bottom: 32px;
    border-radius: var(--r-md);
    background: var(--bone);
    display: grid;
    place-items: center;
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 1;
  }
  .service:hover .service__icon {
    background: var(--cognac);
  }
  .service__icon svg {
    width: 26px; height: 26px;
    stroke: var(--cognac); fill: none; stroke-width: 1.3;
    transition: stroke 0.4s var(--ease);
  }
  .service:hover .service__icon svg { stroke: var(--white); }
  .service__title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .service__desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .service__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
  }
  .service:hover .service__link { color: var(--cognac); }
  .service__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
  .service:hover .service__link svg { transform: translateX(5px); }

  /* ============================================
     FEATURED PRODUCTS
     ============================================ */
  .products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .product-card { cursor: pointer; }
  .product-card__image {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--white);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--r-lg);
    transition: box-shadow 0.4s var(--ease);
  }
  .product-card:hover .product-card__image {
    box-shadow: var(--shadow-md);
  }
  .product-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
    mix-blend-mode: multiply;
  }
  .product-card:hover .product-card__image img { transform: scale(1.05); }
  .product-card__tag {
    position: absolute; top: 18px; left: 18px;
    background: var(--cognac);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 13px;
    font-weight: 500;
    border-radius: var(--r-pill);
    z-index: 2;
  }
  .product-card__tag--show {
    background: var(--charcoal);
  }
  .product-card__quick {
    position: absolute; bottom: 16px; right: 16px;
    width: 42px; height: 42px;
    background: var(--bone);
    border-radius: 50%;
    display: grid; place-items: center;
    opacity: 0;
    transform: translateY(8px) scale(0.85);
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
    z-index: 2;
  }
  .product-card:hover .product-card__quick {
    opacity: 1; transform: translateY(0) scale(1);
  }
  .product-card__quick svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; }
  .product-card__brand {
    font-size: 11.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .product-card__name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 8px;
    transition: color 0.25s ease;
  }
  .product-card:hover .product-card__name { color: var(--cognac); }
  .product-card__price {
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .product-card__price-old {
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
  }
  .product-card__price-now {
    color: var(--cognac);
  }

  /* ============================================
     EDITORIAL QUOTE
     ============================================ */
  .quote-block {
    background: var(--bone-soft);
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .quote-block::before, .quote-block::after {
    content: "";
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    pointer-events: none;
  }
  .quote-block::before {
    top: -180px; left: -100px;
    background: radial-gradient(circle, rgba(160,98,58,0.08) 0%, transparent 70%);
  }
  .quote-block::after {
    bottom: -180px; right: -100px;
    background: radial-gradient(circle, rgba(160,98,58,0.06) 0%, transparent 70%);
  }
  .quote-block__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
  }
  .quote-block__mark {
    font-family: var(--serif);
    font-size: 96px;
    line-height: 0.8;
    color: var(--cognac);
    font-style: italic;
    margin-bottom: 8px;
  }
  .quote-block__text {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--charcoal);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
  }
  .quote-block__cite {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    padding: 10px 22px;
    background: var(--bone);
    border-radius: var(--r-pill);
  }
  .quote-block__cite::before {
    content: "★★★★★";
    color: var(--cognac);
    letter-spacing: 0.05em;
    font-size: 13.5px;
  }

  /* ============================================
     PROJECTS
     ============================================ */
  .project-card {
    cursor: pointer;
    position: relative;
  }
  .project-card__image {
    aspect-ratio: 4/5;
    background: var(--bone-warm);
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
    border-radius: var(--r-lg);
    transition: box-shadow 0.4s var(--ease);
  }
  .project-card:hover .project-card__image {
    box-shadow: var(--shadow-lg);
  }
  .project-card__image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26,26,26,0.45) 100%);
  }
  .project-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease);
  }
  .project-card:hover .project-card__image img { transform: scale(1.05); }
  .project-card__cat {
    font-size: 11.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cognac);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .project-card__title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
  }

  /* ============================================
     CONTACT BAND
     ============================================ */
  .contact-band {
    background: var(--charcoal);
    color: var(--bone);
    padding: 110px 0;
    position: relative;
  }
  .contact-band__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .contact-band__title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
  }
  .contact-band__title em { color: var(--cognac-soft); font-style: italic; }
  .contact-band__intro {
    font-size: 17px; line-height: 1.7;
    color: var(--muted-soft);
    margin-bottom: 40px;
    max-width: 480px;
  }
  .contact-band__chips {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .chip {
    padding: 14px 26px;
    border: 1px solid #46413a;
    border-radius: var(--r-pill);
    color: var(--bone);
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s var(--ease);
    cursor: pointer;
  }
  .chip:hover {
    border-color: var(--cognac-soft);
    color: var(--cognac-soft);
    transform: translateY(-1px);
  }
  .chip.is-active {
    background: var(--cognac);
    border-color: var(--cognac);
    color: var(--white);
  }

  .contact-form {
    background: var(--charcoal-soft);
    padding: 48px 44px;
    border: 1px solid #3d3833;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
  }
  .contact-form h3 {
    font-family: var(--serif);
    font-size: 28px; font-weight: 400;
    margin-bottom: 32px;
    color: var(--bone);
  }
  .form-row { margin-bottom: 24px; }
  .form-row label {
    display: block;
    font-size: 11.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted-soft);
    margin-bottom: 10px; font-weight: 500;
  }
  .form-row input, .form-row textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid #46413a;
    border-radius: var(--r-md);
    padding: 14px 16px;
    color: var(--bone);
    font-family: var(--sans);
    font-size: 15.5px;
    transition: all 0.2s ease;
  }
  .form-row input::placeholder, .form-row textarea::placeholder {
    color: var(--muted);
  }
  .form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--cognac-soft);
    background: rgba(255,255,255,0.05);
  }
  .form-row textarea { resize: none; min-height: 100px; }
  .mlb-scope .contact-form .btn { width: 100%; justify-content: center; margin-top: 16px; }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: var(--bone-soft);
    border-top: 1px solid var(--line);
    padding: 90px 0 36px;
    position: relative;
  }
  .footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .footer__newsletter {
    background: var(--charcoal);
    color: var(--bone);
    border-radius: var(--r-lg);
    padding: 56px 60px;
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .footer__newsletter::before {
    content: "";
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,98,58,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .footer__newsletter-text { position: relative; z-index: 1; }
  .footer__newsletter-eyebrow {
    font-size: 12.5px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--cognac-soft);
    margin-bottom: 16px; font-weight: 500;
  }
  .footer__newsletter-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .footer__newsletter-title em { color: var(--cognac-soft); font-style: italic; }
  .footer__newsletter-sub {
    font-size: 15.5px;
    color: var(--muted-soft);
    line-height: 1.6;
  }
  .footer__newsletter-form {
    position: relative; z-index: 1;
    display: flex; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid #46413a;
    border-radius: var(--r-pill);
    padding: 6px 6px 6px 22px;
  }
  .footer__newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--bone);
    font-family: var(--sans);
    font-size: 15.5px;
    padding: 12px 0;
  }
  .footer__newsletter-form input:focus { outline: none; }
  .footer__newsletter-form input::placeholder { color: var(--muted); }
  .footer__newsletter-form button {
    background: var(--cognac);
    color: var(--white);
    border-radius: var(--r-pill);
    padding: 13px 26px;
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s var(--ease);
  }
  .footer__newsletter-form button:hover {
    background: var(--cognac-deep);
    transform: translateX(2px);
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .mlb-scope .footer__brand .logo { text-align: left; }
  .footer__brand p {
    margin-top: 24px;
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 320px;
  }
  .footer__socials {
    display: flex; gap: 10px;
    margin-top: 24px;
  }
  .footer__socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bone);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    transition: all 0.25s var(--ease);
  }
  .footer__socials a:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
  }
  .footer__socials svg {
    width: 16px; height: 16px;
    stroke: var(--charcoal); fill: none; stroke-width: 1.5;
    transition: stroke 0.25s;
  }
  .footer__socials a:hover svg { stroke: var(--bone); }
  .footer__col h4 {
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-weight: 600;
  }
  .footer__col ul { list-style: none; }
  .footer__col li { margin-bottom: 12px; }
  .footer__col a {
    font-size: 15.5px;
    color: var(--ink);
    transition: color 0.2s;
  }
  .footer__col a:hover { color: var(--cognac); }

  .footer__bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex; justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ============================================
     BREADCRUMB
     ============================================ */
  .breadcrumb {
    padding: 14px var(--gutter) 0;
    max-width: var(--container);
    margin: 0 auto;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    display: flex; align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  .breadcrumb a {
    color: var(--muted);
    transition: color 0.2s;
    padding: 4px 8px;
    border-radius: var(--r-sm);
  }
  .breadcrumb a:hover {
    color: var(--cognac);
    background: var(--bone-soft);
  }
  .breadcrumb span {
    margin: 0 4px;
    color: var(--muted-soft);
  }
  .breadcrumb strong {
    color: var(--charcoal);
    font-weight: 500;
    padding: 4px 8px;
  }

  /* ============================================
     CATEGORY PAGE — Hero
     ============================================ */
  .cat-hero {
    padding: 60px var(--gutter) 50px;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: end;
  }
  .cat-hero__title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--charcoal);
    letter-spacing: -0.015em;
    margin-bottom: 24px;
  }
  .cat-hero__title em { font-style: italic; color: var(--cognac); }
  .cat-hero__sub {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac);
    margin-bottom: 28px;
    font-weight: 500;
  }
  .cat-hero__intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 680px;
  }
  .cat-hero__intro p { margin-bottom: 14px; }
  .cat-hero__intro p:last-child { margin-bottom: 0; }
  .cat-hero__meta {
    text-align: right;
    border-left: 1px solid var(--line);
    padding-left: 40px;
  }
  .cat-hero__count {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    color: var(--charcoal);
    font-weight: 300;
  }
  .cat-hero__count-lbl {
    font-size: 12.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 500;
  }

  /* ============================================
     CATEGORY PAGE — Filter bar
     ============================================ */
  .filter-bar {
    background: var(--bone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: calc(42px + 80px);
    z-index: 50;
  }
  .filter-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: flex; align-items: center;
    gap: 30px;
  }
  .filter-group {
    display: flex; gap: 8px;
    flex-wrap: wrap;
  }
  .filter-pill {
    padding: 11px 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    transition: all 0.25s var(--ease);
    font-weight: 500;
    background: var(--bone);
    cursor: pointer;
  }
  .filter-pill:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }
  .filter-pill.is-active {
    background: var(--charcoal);
    color: var(--bone);
    border-color: var(--charcoal);
    box-shadow: var(--shadow-sm);
  }
  .filter-bar__sort {
    margin-left: auto;
    display: flex; gap: 16px; align-items: center;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }
  .filter-bar__sort select {
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--bone);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 18px;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .filter-bar__sort select:hover { border-color: var(--charcoal); }

  /* ============================================
     CATEGORY PAGE — Product grid
     ============================================ */
  .cat-grid-section {
    padding: 60px var(--gutter) 100px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 28px;
  }

  /* Editorial: insert promo card breaking the grid */
  .promo-card {
    grid-column: span 2;
    grid-row: span 1;
    background: var(--charcoal);
    color: var(--bone);
    padding: 52px;
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 2/1.18;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .promo-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,98,58,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .promo-card__eyebrow {
    font-size: 12.5px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--cognac-soft);
    margin-bottom: 22px; font-weight: 500;
    position: relative; z-index: 1;
  }
  .promo-card__title {
    font-family: var(--serif);
    font-size: 38px; font-weight: 300;
    line-height: 1.05; letter-spacing: -0.005em;
    margin-bottom: 22px;
    position: relative; z-index: 1;
  }
  .promo-card__title em { color: var(--cognac-soft); font-style: italic; }
  .promo-card__cta {
    align-self: flex-start;
    font-size: 12.5px; letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--cognac);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-weight: 500;
    transition: all 0.3s var(--ease);
    position: relative; z-index: 1;
  }
  .promo-card__cta:hover {
    background: var(--cognac-deep);
    transform: translateY(-2px);
  }

  .pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 80px;
  }
  .pagination button {
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 14.5px; font-weight: 500;
    transition: all 0.2s var(--ease);
    background: var(--bone);
  }
  .pagination button:hover {
    border-color: var(--charcoal);
    transform: translateY(-1px);
  }
  .pagination button.is-active {
    background: var(--charcoal);
    color: var(--bone); border-color: var(--charcoal);
  }
  .pagination button.dots {
    border: none; background: transparent;
    transform: none !important;
  }

  /* ============================================
     PRODUCT DETAIL PAGE
     ============================================ */
  .pd-hero {
    padding: 22px var(--gutter) 80px;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
  }

  .pd-gallery {
    position: sticky; top: calc(42px + 100px);
  }
  .pd-gallery__main {
    aspect-ratio: 1/1;
    background: var(--white);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
  }
  .pd-gallery__main img {
    width: 100%; height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
  }
  .pd-gallery__brand-mark {
    position: absolute;
    bottom: 20px; left: 20px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--charcoal);
    background: var(--bone);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
  }
  .pd-gallery__zoom {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bone);
    box-shadow: var(--shadow-sm);
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 0.25s var(--ease);
  }
  .pd-gallery__zoom:hover {
    background: var(--charcoal);
    transform: scale(1.08);
  }
  .pd-gallery__zoom svg {
    width: 18px; height: 18px;
    stroke: var(--charcoal); fill: none; stroke-width: 1.5;
    transition: stroke 0.25s;
  }
  .pd-gallery__zoom:hover svg { stroke: var(--bone); }
  .pd-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .pd-thumb {
    aspect-ratio: 1/1;
    background: var(--white);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    position: relative;
    border-radius: var(--r-md);
  }
  .pd-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
  }
  .pd-thumb.is-active::after {
    content: "";
    position: absolute; inset: 0;
    border: 2px solid var(--cognac);
    border-radius: var(--r-md);
  }
  .pd-thumb:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

  .pd-info { padding-top: 4px; }
  .pd-info__brand {
    display: flex; align-items: center; gap: 14px;
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .pd-info__brand::before {
    content: ""; width: 28px; height: 1px; background: var(--cognac);
  }
  .pd-info__title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 10px;
  }
  .pd-info__sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 400;
  }

  .pd-price {
    padding: 6px 0 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
  .pd-price__rows { display: grid; gap: 13px; margin-bottom: 14px; }
  .pd-price-row { display: flex; align-items: baseline; gap: 18px; }
  .pd-price-row__label {
    width: 64px; flex-shrink: 0;
    font-size: 11.5px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted);
    font-weight: 600;
  }
  .pd-price-row__value {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1.1;
  }
  .pd-price-row__value strong { font-weight: 400; font-size: 30px; }
  .pd-price-row__value s {
    color: var(--muted);
    font-size: 19px;
    text-decoration-color: var(--cognac);
    margin-right: 2px;
  }
  .pd-deal-chip {
    display: inline-block;
    margin-left: 12px;
    transform: translateY(-4px);
    background: var(--cognac);
    color: var(--white);
    font-family: var(--sans);
    font-size: 10.5px; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    padding: 5px 11px;
    border-radius: var(--r-pill);
  }
  .pd-price__note {
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
  }

  .pd-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 36px;
  }
  .pd-desc p + p { margin-top: 16px; }

  /* Variant selector — sizes */
  .pd-variants {
    margin-bottom: 32px;
  }
  .pd-variants__title {
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .pd-variants__row {
    display: flex; gap: 10px;
  }
  .pd-size {
    padding: 13px 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--bone);
    font-size: 13.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-weight: 500;
  }
  .pd-size:hover {
    border-color: var(--charcoal);
    transform: translateY(-1px);
  }
  .pd-size.is-active {
    background: var(--charcoal); color: var(--bone);
    border-color: var(--charcoal);
  }

  .pd-actions {
    display: grid; gap: 12px;
    margin-bottom: 32px;
  }

  .pd-action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pd-action-btn {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--bone);
    display: flex; align-items: center; gap: 14px;
    transition: all 0.3s var(--ease);
    text-align: left;
    cursor: pointer;
  }
  .pd-action-btn:hover {
    border-color: var(--cognac);
    background: var(--bone-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  .pd-action-btn__icon {
    width: 42px; height: 42px;
    background: var(--bone-warm);
    border-radius: var(--r-sm);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: background 0.3s var(--ease);
  }
  .pd-action-btn:hover .pd-action-btn__icon { background: var(--cognac); }
  .pd-action-btn__icon svg {
    width: 19px; height: 19px;
    stroke: var(--charcoal); fill: none; stroke-width: 1.5;
    transition: stroke 0.3s var(--ease);
  }
  .pd-action-btn:hover .pd-action-btn__icon svg { stroke: var(--white); }
  .pd-action-btn__text {
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.3;
  }
  .pd-action-btn__text small {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: none;
    font-weight: 400;
    margin-top: 4px;
  }

  /* USP bar in product info */
  .pd-usp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
  }
  .pd-usp__item {
    display: flex; gap: 12px; align-items: center;
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
  }
  .pd-usp__item-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--bone-warm);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .pd-usp__item-icon svg {
    width: 14px; height: 14px;
    stroke: var(--cognac); fill: none; stroke-width: 2;
  }

  /* ============================================
     PRODUCT DETAIL — Materials section
     ============================================ */
  .pd-materials {
    background: var(--white);
    padding: 110px 0;
  }
  .pd-materials__head {
    text-align: center;
    margin-bottom: 70px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--gutter);
  }
  .pd-materials__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cognac);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .pd-materials__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 22px;
  }
  .pd-materials__title em { font-style: italic; color: var(--cognac); }
  .pd-materials__intro {
    font-size: 16.5px;
    color: var(--ink);
    line-height: 1.7;
  }

  .material-tabs {
    display: flex; justify-content: center;
    gap: 8px; margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 var(--gutter);
  }
  .material-tab {
    padding: 12px 28px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--bone);
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    transition: all 0.25s var(--ease);
    cursor: pointer;
    font-weight: 500;
  }
  .material-tab:hover {
    border-color: var(--charcoal);
    transform: translateY(-1px);
  }
  .material-tab.is-active {
    background: var(--charcoal);
    color: var(--bone);
    border-color: var(--charcoal);
  }

  .material-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 60px;
  }
  .material-section__title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .material-section__sub {
    font-size: 13.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 36px;
    font-weight: 500;
  }
  .swatches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 22px;
  }
  .swatch {
    cursor: pointer;
    text-align: center;
  }
  .swatch__chip {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    border-radius: var(--r-md);
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
    position: relative;
  }
  .swatch:hover .swatch__chip {
    transform: scale(1.06) translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .swatch__name {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
  }
  .swatch__code {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ============================================
     PRODUCT DETAIL — Related
     ============================================ */
  .pd-related { padding: 100px 0; }

  /* ============================================
     SECTION LEDE
     ============================================ */
  .section-lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 660px;
    margin-top: 24px;
  }

  /* ============================================
     OVER MONDILEDER — leerexpertise
     ============================================ */
  .about {
    background: var(--bone);
    padding: 120px 0 110px;
  }
  .about__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
  }
  .about__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin: 22px 0 28px;
  }
  .about__title em { font-style: italic; color: var(--cognac); }
  .about__copy p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 18px;
    max-width: 540px;
  }
  .about__stats {
    display: flex; gap: 48px;
    margin: 34px 0 38px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }
  .about__stat span {
    display: block;
    font-family: var(--serif);
    font-size: 42px; line-height: 1;
    color: var(--charcoal);
  }
  .about__stat small {
    display: block;
    margin-top: 8px;
    font-size: 11.5px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted); font-weight: 500;
  }
  .about__visual { position: relative; }
  .about__photo {
    width: 100%;
    aspect-ratio: 4/3.4;
    object-fit: cover;
    display: block;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    background: var(--bone-warm);
  }
  .about__chip {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--bone);
    color: var(--charcoal);
    padding: 12px 20px;
    border-radius: var(--r-pill);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
  }

  /* ============================================
     PROJECTS — grote rustige fotoblokken
     ============================================ */
  .pc-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--bone-warm);
    transition: box-shadow 0.4s var(--ease);
  }
  .pc-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0) 52%, rgba(26,26,26,0.55) 100%);
  }
  .pc-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 1s var(--ease);
  }
  .project-card:hover .pc-img img { transform: scale(1.04); }
  .project-card:hover .pc-img { box-shadow: var(--shadow-lg); }
  .pc-label {
    position: absolute;
    bottom: 32px; left: 36px;
    z-index: 2;
  }
  .pc-label .project-card__cat { color: var(--cognac-soft); }
  .pc-title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--bone);
    line-height: 1.15;
  }
  .projects-feature { display: block; }
  .projects-feature .pc-img { aspect-ratio: 21/9; }
  .projects-feature .pc-title { font-size: 40px; }
  .projects-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  .projects-duo .pc-img { aspect-ratio: 16/10; }

  /* ============================================
     CONTACT — locatiekaart
     ============================================ */
  @keyframes mapPulse {
    0%   { opacity: 0.65; r: 8; }
    100% { opacity: 0; r: 22; }
  }
  .map-pulse { animation: mapPulse 2.2s ease-out infinite; }

  /* ============================================
     LOCATIE & ROUTE — split met kaart
     ============================================ */
  .location {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 540px;
  }
  .location__map {
    position: relative;
    background: var(--bone-warm);
    overflow: hidden;
    min-height: 420px;
  }
  .location__map svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .location__content {
    padding: clamp(60px, 7vw, 110px) clamp(36px, 6vw, 100px);
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
  }
  .location__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--charcoal);
    margin: 20px 0 22px;
  }
  .location__title em { font-style: italic; color: var(--cognac); }
  .location__text {
    font-size: 17px; line-height: 1.7;
    color: var(--ink);
    max-width: 460px;
    margin-bottom: 28px;
  }
  .location__list {
    list-style: none;
    margin: 0 0 36px; padding: 0;
    display: grid; gap: 13px;
  }
  .location__list li {
    display: flex; align-items: center; gap: 13px;
    font-size: 15.5px; color: var(--ink);
  }
  .location__list li::before {
    content: "◆";
    color: var(--cognac);
    font-size: 9.5px;
  }
  .location__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ============================================
     FILTER — knop & uitklap merken
     ============================================ */
  .filter-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--white);
    font-family: var(--sans);
    font-size: 12.5px; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-right: 18px;
  }
  .filter-btn svg {
    width: 15px; height: 15px;
    stroke: currentColor; fill: var(--white); stroke-width: 1.6;
  }
  .filter-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--bone);
  }
  .filter-btn:hover svg { fill: var(--charcoal); }
  .filter-pill--more { color: var(--cognac); border-style: dashed; }
  .filter-more {
    display: none;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 16px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .filter-more.is-open { display: flex; }

  /* ============================================
     LEVERANCIERSACTIE — 2-koloms grid-vlak
     ============================================ */
  .supplier-promo {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  }
  .supplier-promo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }
  .supplier-promo__media {
    position: relative;
    background: var(--bone-warm);
    min-height: 100%;
    overflow: hidden;
  }
  .supplier-promo__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
  }
  .supplier-promo:hover .supplier-promo__media img { transform: scale(1.04); }
  .supplier-promo__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 58px; height: 58px;
    border-radius: 50%;
    background: rgba(250,248,245,0.92);
    display: grid; place-items: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
    z-index: 2;
  }
  .supplier-promo:hover .supplier-promo__play {
    background: var(--cognac);
    transform: translate(-50%, -50%) scale(1.08);
  }
  .supplier-promo__play svg {
    width: 20px; height: 20px;
    fill: var(--cognac);
    margin-left: 3px;
  }
  .supplier-promo:hover .supplier-promo__play svg { fill: var(--white); }
  .supplier-promo__content {
    padding: 34px 36px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
  }
  .supplier-promo__brand {
    font-size: 14.5px; letter-spacing: 0.3em;
    text-transform: uppercase; font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
  }
  .supplier-promo__eyebrow {
    font-size: 11.5px; letter-spacing: 0.26em;
    text-transform: uppercase; font-weight: 500;
    color: var(--cognac);
    margin-bottom: 10px;
  }
  .supplier-promo__title {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 12px;
  }
  .supplier-promo__title em { font-style: italic; color: var(--cognac); }
  .supplier-promo__text {
    font-size: 15.5px; line-height: 1.65;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .supplier-promo__cta {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12.5px; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 600;
    color: var(--cognac);
  }
  .supplier-promo__cta svg { width: 14px; height: 14px; }

  /* ============================================
     PRODUCT — badge, desc-kop, CTA-rij
     ============================================ */
  .pd-gallery__tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--cognac);
    color: var(--white);
    font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    z-index: 3;
  }
  .pd-desc h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 22px 0 10px;
  }
  .pd-cta-row { display: flex; gap: 12px; }
  .pd-cta {
    flex: 1;
    justify-content: center;
    padding: 16px 16px;
    white-space: nowrap;
  }

  /* ============================================
     PRODUCT — actie / showmodel sectie
     ============================================ */
  .pd-actie {
    padding: 0 var(--gutter) 100px;
    background: var(--bone);
  }
  .pd-actie__card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 54px 56px 44px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .pd-actie__brand {
    font-size: 14.5px; letter-spacing: 0.34em;
    text-transform: uppercase; font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 18px;
  }
  .pd-actie__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 16px;
  }
  .pd-actie__title em { font-style: italic; color: var(--cognac); }
  .pd-actie__text {
    font-size: 16.5px; line-height: 1.7;
    color: var(--ink);
    max-width: 560px;
    margin: 0 auto 26px;
  }
  .pd-actie__kader {
    background: var(--bone-warm);
    border-left: 3px solid var(--cognac);
    border-radius: var(--r-sm);
    padding: 20px 26px;
    font-size: 15.5px; line-height: 1.7;
    color: var(--charcoal);
    text-align: left;
    max-width: 640px;
    margin: 0 auto 28px;
  }
  .pd-actie__banner {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 21/7;
    background: var(--bone-warm);
  }
  .pd-actie__banner img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .pd-actie__banner-note {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
  }

  /* ============================================
     PRODUCT — afmetingen & prijzen
     ============================================ */
  .pd-specs {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line-soft);
  }
  .pd-specs__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .pd-specs__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
    margin: 18px 0 14px;
  }
  .pd-specs__title em { font-style: italic; color: var(--cognac); }
  .pd-spec {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .pd-spec__name {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .pd-spec__name span { font-family: var(--sans); font-size: 13.5px; color: var(--muted); }
  .pd-spec__dim {
    font-size: 14.5px; letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .pd-spec__prices { display: grid; gap: 5px; }
  .pd-spec__prices span {
    font-size: 15.5px; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
  }
  .pd-spec__prices span::before {
    content: "◆"; color: var(--cognac); font-size: 8.5px;
  }
  .pd-specs__note {
    margin-top: 22px;
    font-size: 13.5px; color: var(--muted); font-style: italic;
  }
  .pd-specs__features {
    background: var(--bone-soft);
    border-radius: var(--r-lg);
    padding: 40px 42px;
  }
  .pd-specs__features h3 {
    font-family: var(--serif);
    font-size: 23px; font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 22px;
  }
  .pd-specs__features ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
  .pd-specs__features li {
    display: flex; align-items: baseline; gap: 13px;
    font-size: 15.5px; line-height: 1.6; color: var(--ink);
  }
  .pd-specs__features li::before {
    content: "◆"; color: var(--cognac); font-size: 9.5px; flex-shrink: 0;
  }

  /* ============================================
     PRODUCT — SEO verhaal met sfeerbeelden
     ============================================ */
  .pd-seo {
    background: var(--bone);
    padding: 110px 0 90px;
  }
  .pd-seo__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .pd-seo__h2 {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--charcoal);
    margin: 18px 0 22px;
  }
  .pd-seo__h2 em { font-style: italic; color: var(--cognac); }
  .pd-seo__intro p, .pd-seo__txt p {
    font-size: 17px; line-height: 1.8;
    color: var(--ink);
    max-width: 680px;
    margin-bottom: 16px;
  }
  .pd-seo__img {
    margin: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bone-warm);
    box-shadow: var(--shadow-md);
  }
  .pd-seo__img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .pd-seo__img--wide {
    aspect-ratio: 21/9;
    margin: 50px 0 70px;
  }
  .pd-seo__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 70px;
  }
  .pd-seo__split .pd-seo__img { aspect-ratio: 4/3.2; }
  .pd-seo__txt h3 {
    font-family: var(--serif);
    font-size: 25px; font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
  }
  .pd-links {
    border-top: 1px solid var(--line);
    padding-top: 32px;
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
  }
  .pd-links__label {
    font-size: 11.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted);
    font-weight: 600;
    margin-right: 6px;
  }
  .pd-link {
    padding: 11px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s var(--ease);
  }
  .pd-link:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--bone);
  }

  /* ============================================
     CATEGORIE — SEO-tekst onder producten
     ============================================ */
  .cat-seo {
    background: var(--bone);
    padding: 100px 0 90px;
    border-top: 1px solid var(--line-soft);
  }
  .cat-seo__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .cat-seo__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin: 18px 0 28px;
    max-width: 720px;
  }
  .cat-seo__title em { font-style: italic; color: var(--cognac); }
  .mlb-scope .cat-seo__body {
    columns: 1 !important;
    column-gap: 0;
  }
  .mlb-scope .cat-seo__body h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 3vw, 44px) !important;
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin: 10px 0 20px;
    break-inside: avoid;
  }
  .cat-seo__body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 16px;
    break-inside: avoid;
  }
  .cat-seo__body h3 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 8px 0 10px;
    break-inside: avoid;
  }
  .cat-seo__body p:last-child { margin-bottom: 0; }

  /* ============================================
     FAQ — accordeon (werkt zonder JS via details/summary)
     ============================================ */
  .faq {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line-soft);
  }
  .faq__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .faq__head { text-align: center; margin-bottom: 50px; }
  .faq__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-top: 16px;
  }
  .faq__title em { font-style: italic; color: var(--cognac); }
  .faq__item {
    border-bottom: 1px solid var(--line-soft);
  }
  .faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 48px 26px 0;
    position: relative;
    font-family: var(--serif);
    font-size: 21px;
    color: var(--charcoal);
    transition: color 0.25s var(--ease);
  }
  .faq__item summary::-webkit-details-marker { display: none; }
  .faq__item summary:hover { color: var(--cognac); }
  .faq__item summary::after {
    content: "";
    position: absolute;
    right: 6px; top: 50%;
    width: 11px; height: 11px;
    border-right: 1.5px solid var(--cognac);
    border-bottom: 1.5px solid var(--cognac);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s var(--ease);
  }
  .faq__item[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
  }
  .faq__answer {
    padding: 0 48px 28px 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
  }
  .faq__answer p { margin-bottom: 12px; }
  .faq__answer p:last-child { margin-bottom: 0; }
  .faq__foot {
    text-align: center;
    margin-top: 44px;
    font-size: 15.5px;
    color: var(--muted);
  }
  .faq__foot a {
    color: var(--cognac);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ease);
  }
  .faq__foot a:hover { border-color: var(--cognac); }

  /* ============================================
     FOOTER — review score + openingstijden
     ============================================ */
  .footer__review {
    display: inline-flex; align-items: center; gap: 9px;
    margin: 4px 0 22px;
  }
  .footer__review-stars { color: var(--cognac); font-size: 14.5px; letter-spacing: 2px; }
  .footer__review-txt { font-size: 14px; color: var(--muted-soft); }
  .footer__review-txt strong { color: var(--bone); font-weight: 600; }
  .footer__hours-label {
    margin-top: 8px;
    font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted-soft); font-weight: 600;
  }

  /* ============================================
     LOCATIE — foto van het pand in de kaart
     ============================================ */
  .location__photo {
    position: absolute;
    right: 26px; bottom: 26px;
    width: clamp(150px, 24%, 220px);
    margin: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(39,36,33,0.28);
    border: 4px solid var(--white);
  }
  .location__photo img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; display: block;
  }
  .location__photo figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 14px 12px 8px;
    font-size: 12px; letter-spacing: 0.04em; color: var(--white);
    background: linear-gradient(to top, rgba(20,18,16,0.72), transparent);
  }

  /* ============================================
     PRODUCT — delen / printen
     ============================================ */
  .pd-share {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    margin-bottom: 26px; padding-bottom: 26px;
    border-bottom: 1px solid var(--line-soft);
  }
  .pd-share__label {
    font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .pd-share__btns { display: flex; gap: 10px; }
  .pd-share__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--line); border-radius: var(--r-pill);
    background: var(--white);
    font-family: var(--sans); font-size: 13.5px; font-weight: 600;
    color: var(--charcoal); cursor: pointer;
    transition: all 0.25s var(--ease);
  }
  .pd-share__btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--bone); }
  .pd-share__btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; }

  /* ============================================
     WAAROM MONDILEDER — USP-grid
     ============================================ */
  .why {
    background: var(--bone);
    padding: 100px 0;
    border-top: 1px solid var(--line-soft);
  }
  .why__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
  }
  .why__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--charcoal);
    margin: 16px 0 18px;
  }
  .why__title em { font-style: italic; color: var(--cognac); }
  .why__lede {
    font-size: 17px; line-height: 1.75; color: var(--ink);
    max-width: 420px;
  }
  .why__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .why__item { display: flex; gap: 14px; align-items: flex-start; }
  .why__ico {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 50%; background: var(--bone-warm);
    display: grid; place-items: center; margin-top: 1px;
  }
  .why__ico svg { width: 16px; height: 16px; stroke: var(--cognac); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .why__item strong { display: block; font-size: 16px; color: var(--charcoal); margin-bottom: 4px; font-weight: 600; }
  .why__item span { font-size: 14px; line-height: 1.55; color: var(--muted); }

  /* ============================================
     LIGHTBOX — video liggend / onafgesneden
     ============================================ */
  .lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(20,18,16,0.88);
    display: flex; align-items: center; justify-content: center;
    padding: 28px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    animation: lbFade 0.25s var(--ease);
  }
  @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
  .lightbox__inner { position: relative; width: min(1100px, 100%); }
  .lightbox__frame {
    position: relative; width: 100%; aspect-ratio: 16/9;
    background: #000; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .lightbox__frame video { width: 100%; height: 100%; display: block; object-fit: contain; background: #000; }
  .lightbox__close {
    position: absolute; top: -48px; right: 0;
    width: 40px; height: 40px; border-radius: 50%;
    border: none; background: var(--white); color: var(--charcoal);
    font-size: 24px; line-height: 1; cursor: pointer;
    display: grid; place-items: center;
    transition: transform 0.2s var(--ease);
  }
  .lightbox__close:hover { transform: scale(1.08); }

  /* ============================================
     FOOTER — feestdag / sluiting-melding
     ============================================ */
  .footer__holiday {
    margin-top: 10px;
    display: flex; align-items: center; gap: 9px;
    font-size: 14px;
  }
  .footer__holiday::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  }
  .footer__holiday--open { color: var(--bone); }
  .footer__holiday--open::before { background: #6fae7c; }
  .footer__holiday--closed { color: var(--muted-soft); }
  .footer__holiday--closed::before { background: #c98a78; }

  /* ============================================
     PRODUCT — leverancierslogo bij de naam
     ============================================ */
  .pd-info__brandrow {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .pd-info__logo img { height: 44px; width: auto; display: block; }
  .pd-info__logo-txt {
    display: none;
    font-family: var(--serif); font-size: 24px; font-weight: 600;
    color: var(--charcoal); letter-spacing: 0.02em;
  }
  .pd-info__logo.is-fallback img { display: none; }
  .pd-info__logo.is-fallback .pd-info__logo-txt { display: inline; }
  .pd-info__store {
    display: inline-flex; align-items: center;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cognac); font-weight: 600;
  }

  /* ============================================
     PRODUCT — uitvoering bij de prijs
     ============================================ */
  .pd-price__variant {
    font-family: var(--sans);
    font-size: 14.5px; font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.01em;
    margin-bottom: 14px;
  }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 1024px) {
    .header__inner { grid-template-columns: auto 1fr auto; gap: 24px; }
    .header__nav-left, .header__nav-right { display: none; }
    .hv { height: 72vh; min-height: 480px; }
    .hv__badge { display: none; }
    .usp-bar__inner { justify-content: center; }
    .location { grid-template-columns: 1fr; }
    .location__map { min-height: 400px; }
    .pd-specs__inner { grid-template-columns: 1fr; gap: 50px; }
    .pd-seo__split { grid-template-columns: 1fr; gap: 30px; }
    .pd-seo__split--rev .pd-seo__img { order: -1; }
    .about__inner { grid-template-columns: 1fr; gap: 44px; }
    .story__inner { grid-template-columns: 1fr; gap: 50px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .service:nth-child(2) { border-right: none; }
    .service { border-bottom: 1px solid var(--line); }
    .products-row { grid-template-columns: repeat(2, 1fr); }
    .contact-band__inner { grid-template-columns: 1fr; gap: 50px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cat-hero { grid-template-columns: 1fr; gap: 40px; }
    .cat-seo__body { columns: 1; }
    .why__inner { grid-template-columns: 1fr; gap: 40px; }
    .cat-hero__meta { text-align: left; border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .promo-card { grid-column: span 3; aspect-ratio: 16/7; }
    .pd-hero { grid-template-columns: 1fr; gap: 40px; }
    .pd-gallery { position: static; }
    .cat-card:nth-child(n) { grid-column: span 6; }
  }
  @media (max-width: 720px) {
    .topbar__left span:not(:first-child) { display: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card { grid-column: span 2; aspect-ratio: auto; padding: 32px; }
    .promo-card__title { font-size: 26px; }
    .footer__top { grid-template-columns: 1fr; }
    .pd-action-btns { grid-template-columns: 1fr; }
    .pd-usp { grid-template-columns: 1fr; }
    .filter-bar__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .filter-bar__sort { margin-left: 0; }
    .mlb-scope .section { padding: 70px 0; }
    .story__bg-mark { font-size: 240px; }
    .mlb-scope .usp { display: none; }
    .mlb-scope .usp:nth-child(-n+3) { display: inline-flex; }
    .supplier-promo { grid-template-columns: 1fr; }
    .supplier-promo__media { min-height: 220px; }
    .pd-cta-row { flex-direction: column; }
    .pd-actie__card { padding: 36px 26px 32px; }
    .location__content { padding: 50px var(--gutter); }
    .why__grid { grid-template-columns: 1fr; }
    .pd-share { flex-direction: column; align-items: flex-start; }
    .location__photo { right: 16px; bottom: 16px; width: 120px; }
    .projects-duo { grid-template-columns: 1fr; }
    .pc-title { font-size: 24px; }
    .projects-feature .pc-img { aspect-ratio: 16/10; }
    .projects-feature .pc-title { font-size: 28px; }
    .pc-label { bottom: 24px; left: 24px; }
    .about__stats { gap: 28px; flex-wrap: wrap; }
    .story__photo { min-height: 320px; }
  }

/* ---- Bridge-only: lightbox + scope-basis ---- */
.mlb-scope { font-family: var(--sans); color: var(--ink); line-height: 1.55; font-size: 16.5px; }
.mlb-scope *, .mlb-scope *::before, .mlb-scope *::after { box-sizing: border-box; }
.mlb-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center; z-index: 99999; }
.mlb-lightbox__inner { position: relative; width: min(90vw, 1100px); }
.mlb-lightbox__inner video { width: 100%; border-radius: var(--r-md); display: block; }
.mlb-lightbox__close { position: absolute; top: -44px; right: 0; color: #fff; font-size: 34px; line-height: 1; background: none; border: none; cursor: pointer; }
.product-grid__empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 3rem 0; }
.pd-video-section { padding: 60px var(--gutter); max-width: var(--container); margin: 0 auto; }
.pd-video__intro { margin-bottom: 16px; color: var(--muted); }
.pd-video__embed iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--r-md); }
.pd-info__logo.is-fallback img { display: none; }


/* ---- Bridge 0.2.0: materiaal-collapse + fontborging binnen scope ---- */
.mlb-scope .material-section.is-collapsed { display: none; }
.mlb-scope .material-more { text-align: center; margin-top: 40px; }
.mlb-scope .material-more .btn { cursor: pointer; background: none; }

/* Sans is de basis; componentklassen mogen daarboven hun eigen serif instellen. */
.mlb-scope {
  font-family: var(--sans);
}
.mlb-scope button, .mlb-scope select, .mlb-scope input, .mlb-scope textarea {
  font-family: var(--sans);
}
.mlb-scope h1, .mlb-scope h2, .mlb-scope h3, .mlb-scope h4,
.mlb-scope .cat-hero__title, .mlb-scope .pd-info__title { font-family: var(--serif); }
.mlb-scope .btn { font-family: var(--sans); text-decoration: none; cursor: pointer; }
.mlb-scope .btn--primary { background: var(--charcoal); color: var(--bone); border: 1px solid var(--charcoal); }
.mlb-scope .btn--ghost { background: none; color: var(--charcoal); border: 1px solid var(--charcoal); }
.mlb-scope .filter-pill { font-family: var(--sans); cursor: pointer; }


/* ---- Bridge 0.3.0 ---- */
.mlb-scope .product-card__price-old { text-decoration: line-through; color: var(--muted); margin-right: 6px; }
.mlb-scope .filter-group + .filter-group { margin-top: 10px; }
.mlb-scope .filter-bar__inner { flex-wrap: wrap; }

/* ---- Bridge 0.3.4: typografie, sfeerbeelden, galleryzoom en mobiel filter ---- */

/* Semantische fontborging: voorkomt dat Elementor/theme-typografie de prototypefonts overneemt. */
.mlb-scope .product-card__brand,
.mlb-scope .product-card__price,
.mlb-scope .promo-card__eyebrow,
.mlb-scope .promo-card__cta,
.mlb-scope .supplier-promo__brand,
.mlb-scope .supplier-promo__eyebrow,
.mlb-scope .supplier-promo__text,
.mlb-scope .supplier-promo__cta,
.mlb-scope .material-section__sub,
.mlb-scope .swatch__name {
  font-family: var(--sans);
}
.mlb-scope .product-card__name,
.mlb-scope .promo-card__title,
.mlb-scope .supplier-promo__title,
.mlb-scope .pd-info__title,
.mlb-scope .pd-info__sub,
.mlb-scope .pd-info__sub p,
.mlb-scope .pd-price-row__value,
.mlb-scope .pd-materials__title,
.mlb-scope .material-section__title,
.mlb-scope .pd-seo__h2,
.mlb-scope .pd-seo__txt h3,
.mlb-scope .section-head__title,
.mlb-scope .faq__title {
  font-family: var(--serif);
}
.mlb-scope .product-card__name {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.mlb-scope .pd-price-row__value {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}
.mlb-scope .pd-price-row__value strong {
  font-family: inherit;
  font-size: 30px;
  font-weight: 400;
}
.mlb-scope .pd-price-row__value s {
  font-family: inherit;
  font-size: 19px;
}
.mlb-scope .pd-materials__title .elementor-heading-title,
.mlb-scope .promo-card__title .elementor-heading-title,
.mlb-scope .supplier-promo__title .elementor-heading-title {
  font-family: var(--serif) !important;
}
.mlb-scope .promo-card__title .elementor-heading-title {
  font-size: 38px !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
}
.mlb-scope .supplier-promo__title .elementor-heading-title {
  font-size: 27px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}
.mlb-scope .promo-card__eyebrow .elementor-heading-title,
.mlb-scope .supplier-promo__brand .elementor-heading-title,
.mlb-scope .supplier-promo__eyebrow .elementor-heading-title {
  font-family: var(--sans) !important;
}

/* Materiaalgroep: modelnaam bovenaan, materiaaltype eronder, beide links uitgelijnd. */
.mlb-scope .material-section,
.mlb-scope .material-section__heading,
.mlb-scope .material-section__title,
.mlb-scope .material-section__sub {
  text-align: left;
}
.mlb-scope .material-section__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.mlb-scope .material-section__sub {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.mlb-scope .material-section__heading.is-title-only .material-section__title {
  margin-bottom: 36px;
}

/* ---- Bridge 0.5.6: klikbare kleur- en materiaalpreview ---- */
.mlb-scope .swatch {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  box-shadow: none;
}
.mlb-scope button.swatch,
.mlb-scope button.swatch:hover,
.mlb-scope button.swatch:focus,
.mlb-scope button.swatch:active {
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
}
.mlb-scope .swatch__chip {
  display: block;
  width: 100%;
}
.mlb-scope .swatch:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 5px;
  border-radius: var(--r-md);
}
.mlb-scope .swatch.is-selected .swatch__chip {
  outline: 2px solid var(--cognac);
  outline-offset: 4px;
}

.mlb-scope .material-preview {
  position: fixed;
  z-index: 100000;
  inset: 0;
  width: min(900px, calc(100vw - 32px));
  max-width: 900px;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bone);
  color: var(--charcoal);
  box-shadow: 0 24px 70px rgba(42, 38, 34, 0.18);
}
.mlb-scope .material-preview::backdrop {
  background: rgba(38, 35, 32, 0.68);
}
.mlb-scope .material-preview.is-fallback-open {
  box-shadow:
    0 0 0 100vmax rgba(38, 35, 32, 0.68),
    0 24px 70px rgba(42, 38, 34, 0.18);
}
.mlb-scope .material-preview:not([open]) {
  display: none;
}
.mlb-scope .material-preview__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  min-height: 480px;
}
.mlb-scope .material-preview__media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 28px;
  background: var(--bone-soft);
}
.mlb-scope .material-preview__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 540px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.mlb-scope .material-preview__details {
  align-self: center;
  padding: 64px 48px 52px;
}
.mlb-scope .material-preview__eyebrow {
  margin-bottom: 18px;
  color: var(--cognac);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mlb-scope .material-preview__title {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}
.mlb-scope .material-preview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mlb-scope .material-preview__meta span + span::before {
  content: "\00b7";
  margin-right: 16px;
  color: var(--cognac);
}
.mlb-scope .material-preview__note {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
}
.mlb-scope .material-preview__close {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: rgba(250, 248, 245, 0.94) !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  font: 400 25px/1 var(--sans);
  cursor: pointer;
}
.mlb-scope .material-preview__close:hover,
.mlb-scope .material-preview__close:focus,
.mlb-scope .material-preview__close:active,
.mlb-scope .material-preview__close:focus-visible {
  border-color: var(--cognac) !important;
  background: rgba(250, 248, 245, 0.98) !important;
  color: var(--cognac) !important;
  box-shadow: none !important;
  transform: none !important;
}
.mlb-scope .material-preview__close:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .mlb-scope .material-preview__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mlb-scope .material-preview__media {
    padding: 18px;
  }
  .mlb-scope .material-preview__media img {
    max-height: 50vh;
  }
  .mlb-scope .material-preview__details {
    padding: 34px 24px 30px;
  }
  .mlb-scope .material-preview__close {
    top: 12px;
    right: 12px;
  }
}

/* Dynamische sfeerbeelden in Het verhaal. */
.mlb-scope .pd-product-showcase {
  position: relative;
  width: 100%;
}
.mlb-scope .pd-product-showcase__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bone-warm);
}
.mlb-scope .pd-product-showcase__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity .28s ease;
}
.mlb-scope .pd-product-showcase__slide[hidden] { display: none; }
.mlb-scope .pd-product-showcase__slide.is-active {
  display: block;
  opacity: 1;
}
.mlb-scope .pd-product-showcase__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mlb-scope .pd-product-showcase__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 70px;
}
.mlb-scope .pd-product-showcase__arrow,
.mlb-scope .pd-product-showcase__dot {
  appearance: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}
.mlb-scope .pd-product-showcase__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--bone);
  font-size: 20px;
  line-height: 1;
}
.mlb-scope .pd-product-showcase__arrow:hover { border-color: var(--cognac); color: var(--cognac); }
.mlb-scope .pd-product-showcase__dots { display: flex; align-items: center; gap: 9px; }
.mlb-scope .pd-product-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--line);
}
.mlb-scope .pd-product-showcase__dot.is-active { background: var(--cognac); }
.mlb-scope .pd-product-showcase__arrow:focus-visible,
.mlb-scope .pd-product-showcase__dot:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .mlb-scope .pd-product-showcase__slide { transition: none; }
}
.mlb-scope .mlb-product-showcase:not(:has(.pd-product-showcase)) {
  display: none !important;
}

/* Gallerythumbs en toegankelijke afbeelding-lightbox. */
.mlb-scope .pd-gallery__zoom {
  z-index: 4;
  padding: 0;
  border: 0;
}
.mlb-scope button.pd-thumb {
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
}
.mlb-scope .pd-gallery__zoom:focus-visible,
.mlb-scope .pd-thumb:focus-visible,
.mlb-gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 3px;
}
.mlb-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 18, 16, 0.92);
  animation: fadeIn 0.2s ease both;
}
.mlb-gallery-lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(94vw, 1400px);
  max-height: 92vh;
}
.mlb-gallery-lightbox__inner img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
.mlb-gallery-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.94);
  color: var(--charcoal);
  font: 300 32px/1 var(--sans);
  cursor: pointer;
}

/* Native Elementor-foto boven de SVG-kaart. */
.mlb-scope .location__photo.elementor-widget-image {
  z-index: 2;
}
.mlb-scope .location__photo.elementor-widget-image > .elementor-widget-container,
.mlb-scope .location__photo.elementor-widget-image figure {
  position: relative;
  width: 100%;
  height: auto !important;
  margin: 0;
}
.mlb-scope .location__photo.elementor-widget-image .widget-image-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 14px 12px 8px;
  background: linear-gradient(to top, rgba(20,18,16,0.72), transparent);
  color: var(--white);
  font: 400 12px/1.4 var(--sans);
  letter-spacing: 0.04em;
  text-align: left;
}
.mlb-scope .location__text,
.mlb-scope .location__text p {
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left !important;
}

/* Alleen tablet/mobiel inklappen; zonder JS blijven de links zichtbaar. */
.mlb-scope .filter-btn {
  display: none;
}
@media (max-width: 1024px) {
  .mlb-scope .filter-btn {
    display: inline-flex;
  }
  .mlb-scope .filter-bar__inner > .e-con-inner {
    align-items: stretch !important;
  }
  .mlb-scope .mlb-sort-widget {
    order: 1;
    width: 100%;
  }
  .mlb-scope .mlb-filter-widget {
    order: 2;
    width: 100%;
  }
  .mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget:not(.is-open) {
    display: none !important;
  }
  .mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget.is-open {
    display: block !important;
  }
  .mlb-scope .mlb-filter-groups {
    display: grid;
    gap: 10px;
    width: 100%;
    padding-top: 8px;
  }
  .mlb-scope .pd-product-showcase__viewport { aspect-ratio: 4 / 3; }
  .mlb-scope .pd-product-showcase__controls { margin-bottom: 54px; }
}
@media (max-width: 720px) {
  .mlb-scope .promo-card__title .elementor-heading-title {
    font-size: 26px !important;
  }
  .mlb-gallery-lightbox {
    padding: 14px;
  }
  .mlb-gallery-lightbox__close {
    top: 8px;
    right: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mlb-gallery-lightbox {
    animation: none;
  }
}

/* ---- Bridge 0.5.0: dynamische collectiecontent en termgebonden FAQ ---- */
.mlb-scope .cat-hero__title .mlb-archive-dynamic-heading,
.mlb-scope .cat-seo__title .mlb-archive-dynamic-heading {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
.mlb-scope .mlb-dynamic-faq,
.mlb-scope .mlb-dynamic-faq > .elementor-widget-container,
.mlb-scope .mlb-dynamic-faq .elementor-shortcode {
  width: 100%;
}
.mlb-scope .faq__foot p {
  margin: 0;
}

/* ---- Bridge 0.5.3: compacte, robuuste Meer/Minder-merkfilter ---- */
.mlb-scope .filter-group[data-taxonomy="brand"] {
  align-items: center;
}
.mlb-scope .filter-group[data-taxonomy="brand"] > button.filter-pill.filter-pill--more {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bone);
  color: var(--cognac);
  box-shadow: none;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}
.mlb-scope .filter-group[data-taxonomy="brand"] > button.filter-pill.filter-pill--more:hover {
  border-color: var(--charcoal);
  background: var(--bone);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.mlb-scope .filter-group[data-taxonomy="brand"] > button.filter-pill.filter-pill--more:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 3px;
}
.mlb-scope .mlb-brand-filter-more {
  display: contents;
}
.mlb-scope .mlb-brand-filter-more[hidden] {
  display: none !important;
}

/* ============================================================
   MLB feedback 2026-08-06 - klikkader op productkaarten
   Het thema tekende bij tap/klik een blokvormige highlight rond de kaart.
   Toetsenbordfocus blijft zichtbaar via :focus-visible.
   ============================================================ */
.product-card { -webkit-tap-highlight-color: transparent; }
.product-card:focus,
.product-card:active,
.product-card:focus:not(:focus-visible) {
  outline: none;
  background: transparent;
  box-shadow: none;
}
.product-card:focus-visible {
  outline: 2px solid var(--cognac, #a0623a);
  outline-offset: 4px;
  border-radius: var(--r-lg, 24px);
}
.product-card:focus-visible .product-card__image { box-shadow: none; }

/* ============================================================
   MLB legacy pagina's in de nieuwe huisstijl (2026-08-10)
   Gebruikt door [mondileder_page_body] op de merkpagina's en de
   losse pagina's onder /over-mondileder/.
   ============================================================ */
.mlb-page { max-width: 1440px; margin: 0 auto; padding: 0 40px 96px; color: var(--ink, #3a3631); }
.mlb-page__crumb { font-size: 13px; color: var(--muted, #8a8378); padding: 26px 0 0; }
.mlb-page__crumb a { color: var(--muted, #8a8378); text-decoration: none; }
.mlb-page__crumb a:hover { color: var(--cognac, #a0623a); }
.mlb-page__crumb span { margin: 0 8px; color: var(--line, #ddd7cc); }
.mlb-page__crumb strong { color: var(--charcoal, #272421); font-weight: 600; }

.mlb-page__hero { padding: 42px 0 10px; }
.mlb-page__eyebrow { font-family: var(--sans, sans-serif); font-size: 12.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--cognac, #a0623a); font-weight: 500; }
.mlb-page__eyebrow::before { content: "\2014"; margin-right: 10px; }
.mlb-page__logo-wrap { margin: 26px 0 4px; }
.mlb-page__logo { max-width: 190px; max-height: 62px; width: auto; height: auto; object-fit: contain; }
.mlb-page__title { font-family: var(--serif, serif); font-weight: 300; font-size: clamp(42px, 4.6vw, 64px); line-height: 1.05; letter-spacing: -.01em; color: var(--charcoal, #272421); margin: 18px 0 0; }

.mlb-page__prose { max-width: 900px; margin: 30px 0 0; }
.mlb-page__prose p { font-size: 16.5px; line-height: 1.75; color: var(--ink, #3a3631); margin: 0 0 20px; }
.mlb-page__prose h2 { font-family: var(--serif, serif); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; color: var(--charcoal, #272421); margin: 42px 0 16px; }
.mlb-page__prose h3 { font-family: var(--serif, serif); font-weight: 400; font-size: 24px; color: var(--charcoal, #272421); margin: 32px 0 12px; }
.mlb-page__prose ul, .mlb-page__prose ol { margin: 0 0 22px 20px; }
.mlb-page__prose li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.mlb-page__prose a { color: var(--cognac, #a0623a); }
.mlb-page__prose img { max-width: 100%; height: auto; border-radius: var(--r-md, 16px); }

.mlb-page__section { margin-top: 78px; }
.mlb-page__sechead { margin-bottom: 30px; }
.mlb-page__sectitle { font-family: var(--serif, serif); font-weight: 300; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.1; color: var(--charcoal, #272421); margin: 12px 0 0; }
.mlb-page__secintro { font-size: 16px; line-height: 1.7; color: var(--muted, #8a8378); max-width: 640px; margin: 14px 0 0; }

.mlb-page__mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mlb-page__shot { margin: 0; border-radius: var(--r-md, 16px); overflow: hidden; background: var(--bone-warm, #ece8e0); aspect-ratio: 4/3; }
.mlb-page__shot.is-wide { grid-column: span 2; aspect-ratio: 8/5; }
.mlb-page__shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.mlb-page__shot:hover img { transform: scale(1.04); }

.mlb-page__video { border-radius: var(--r-md, 16px); overflow: hidden; background: #000; }
.mlb-page__video iframe { display: block; width: 100%; aspect-ratio: 16/9; height: auto; border: 0; }

.mlb-page__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mlb-page__cta { margin-top: 40px; text-align: center; }
.mlb-page__btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 32px; border-radius: var(--r-pill, 999px); background: var(--cognac, #a0623a); color: #fff; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; text-decoration: none; box-shadow: 0 8px 24px -10px rgba(160,98,58,.5); transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s; }
.mlb-page__btn:hover { background: #8d5533; color: #fff; transform: translateY(-2px); }
.mlb-page__btn:focus-visible { outline: 2px solid var(--cognac, #a0623a); outline-offset: 4px; }

@media (max-width: 1024px) {
  .mlb-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .mlb-page { padding: 0 20px 72px; }
  .mlb-page__mosaic { grid-template-columns: 1fr; }
  .mlb-page__shot.is-wide { grid-column: auto; aspect-ratio: 4/3; }
  .mlb-page__grid { grid-template-columns: 1fr; }
  .mlb-page__section { margin-top: 56px; }
}

.mlb-page__brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mlb-page__brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 34px 24px; background: #fff; border: 1px solid var(--line-soft, #e9e4db); border-radius: var(--r-lg, 24px); text-decoration: none; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1); }
.mlb-page__brand:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(39,36,33,.35); }
.mlb-page__brand-media { display: flex; align-items: center; justify-content: center; height: 54px; }
.mlb-page__brand-media img { max-height: 54px; max-width: 150px; width: auto; height: auto; object-fit: contain; }
.mlb-page__brand-name { font-family: var(--serif, serif); font-size: 19px; color: var(--charcoal, #272421); text-align: center; }
@media (max-width: 1024px) { .mlb-page__brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .mlb-page__brands { grid-template-columns: repeat(2, 1fr); } }

/* Productprijs per uitvoering — v0.6.0 */
.mlb-scope .pd-price-list {
  display: grid;
  gap: 22px;
}

.mlb-scope .pd-price-group + .pd-price-group {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.mlb-scope .pd-price-list .pd-price__variant {
  margin: 0 0 13px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: left;
}

.mlb-scope .pd-price-list .pd-price__rows {
  display: grid;
  gap: 11px;
  margin: 0;
}

.mlb-scope .pd-price-list .pd-price-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.mlb-scope .pd-price-list .pd-price-row__label {
  width: 132px;
  flex: 0 0 132px;
  font-size: 11.5px;
  line-height: 1.45;
}

.mlb-scope .pd-price-list .pd-price-row__value {
  text-align: left;
  white-space: nowrap;
}

.mlb-scope .pd-price > .pd-price__note {
  margin-top: 16px;
}

.mlb-scope .pd-price__note p {
  margin: 0;
}

@media (max-width: 600px) {
  .mlb-scope .pd-price-list .pd-price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .mlb-scope .pd-price-list .pd-price-row__label {
    width: auto;
    flex-basis: auto;
  }

  .mlb-scope .pd-price-list .pd-price-row__value {
    text-align: left;
    white-space: normal;
  }
}

/* ---- Bridge 0.7.0: duidelijke, combineerbare collectie-filters ---- */
.mlb-scope .mlb-filter-groups{
  display:grid;
  gap:18px;
  width:100%;
}
.mlb-scope .filter-group{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.mlb-scope .filter-group__label{
  flex:0 0 100%;
  margin:0 0 2px;
  color:var(--muted);
  font-family:var(--sans);
  font-size:11px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.mlb-scope .filter-group--selection{
  padding-top:14px;
  border-top:1px solid var(--line-soft);
}
.mlb-scope .filter-group[data-taxonomy="brand"] .filter-pill--more{
  padding:11px 20px;
  font-size:12.5px;
  line-height:1.55;
}
@media(max-width:720px){
  .mlb-scope .mlb-filter-groups{gap:16px;}
  .mlb-scope .filter-group{gap:8px;}
  .mlb-scope .filter-pill,
  .mlb-scope .filter-group[data-taxonomy="brand"] .filter-pill--more{
    padding:9px 14px;
    font-size:11.5px;
  }
}

/* ---- Bridge 0.7.2: compacte inklapbare collectie-filterbalk ---- */
.mlb-scope .filter-bar__inner > .e-con-inner{
  flex-wrap:wrap !important;
  align-items:stretch !important;
  gap:0 !important;
  padding-top:14px !important;
  padding-bottom:14px !important;
}
.mlb-scope .mlb-sort-widget{
  order:1 !important;
  flex:0 0 100% !important;
  width:100% !important;
  max-width:none !important;
}
.mlb-scope .filter-bar__sort{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  width:100%;
  min-height:42px;
}
.mlb-scope .filter-btn{
  -webkit-appearance:none;
  appearance:none;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:auto;
  min-width:0;
  min-height:0;
  margin:0 auto 0 0;
  padding:10px 16px;
  border:1px solid var(--line) !important;
  border-radius:var(--r-pill);
  background:var(--bone) !important;
  color:var(--charcoal) !important;
  box-shadow:none !important;
  font-family:var(--sans);
  font-size:12px;
  font-weight:600;
  line-height:1.35;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
}
.mlb-scope .filter-btn svg{
  width:17px;
  height:17px;
}
.mlb-scope .filter-btn::after{
  content:attr(data-active-count);
  display:inline-grid;
  place-items:center;
  min-width:20px;
  height:20px;
  padding:0 5px;
  border-radius:var(--r-pill);
  background:var(--charcoal);
  color:var(--white);
  font-size:10px;
  line-height:1;
  letter-spacing:0;
}
.mlb-scope .filter-btn[data-active-count="0"]::after{
  display:none;
}
.mlb-scope .filter-btn:hover,
.mlb-scope .filter-btn[aria-expanded="true"]{
  border-color:var(--charcoal) !important;
  background:var(--charcoal) !important;
  color:var(--white) !important;
  transform:none !important;
}
.mlb-scope .filter-btn[aria-expanded="true"]::after{
  background:var(--bone);
  color:var(--charcoal);
}
.mlb-scope .filter-btn:focus-visible{
  outline:2px solid var(--cognac);
  outline-offset:3px;
}
.mlb-scope .mlb-filter-widget{
  order:2 !important;
  flex:0 0 100% !important;
  width:100% !important;
  max-width:none !important;
}
.mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget:not(.is-open){
  display:none !important;
}
.mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget.is-open{
  display:block !important;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line-soft);
}
.mlb-scope .filter-bar .mlb-filter-groups{
  gap:12px;
}
.mlb-scope .filter-bar .filter-group{
  gap:8px;
}
.mlb-scope .filter-bar .filter-pill,
.mlb-scope .filter-group[data-taxonomy="brand"] > button.filter-pill.filter-pill--more{
  padding:8px 14px;
  font-size:11.5px;
  line-height:1.4;
}
.mlb-scope .filter-bar .filter-group--selection{
  padding-top:10px;
}
@media(min-width:1025px){
  .mlb-scope .filter-bar .filter-group__label{
    flex:0 0 94px;
    margin:0;
  }
}
@media(max-width:520px){
  .mlb-scope .filter-bar__sort{
    gap:10px;
  }
  .mlb-scope .filter-bar__sort > span{
    display:none;
  }
  .mlb-scope .filter-btn{
    padding:9px 13px;
    font-size:11px;
  }
  .mlb-scope .filter-bar__sort select{
    min-width:132px;
  }
}

/* ---- Bridge 0.7.5: gecentreerde filter- en sorteerbediening ---- */
.mlb-scope .filter-bar__sort{
  width:max-content;
  max-width:100%;
  margin:0 auto;
  padding:6px;
  gap:8px;
  justify-content:center;
  border:1px solid var(--line-soft);
  border-radius:var(--r-pill);
  background:var(--bone-soft);
}
.mlb-scope .filter-bar__sort > span{
  margin-left:8px;
  color:var(--muted);
  font-size:10.5px;
  font-weight:600;
  letter-spacing:.14em;
  white-space:nowrap;
}
.mlb-scope .filter-bar__sort select{
  min-width:158px;
  border-color:var(--line);
  background-color:var(--bone);
}
.mlb-scope .filter-bar__sort .filter-btn{
  margin:0;
  border-color:transparent !important;
  background:transparent !important;
}
.mlb-scope .filter-bar__sort .filter-btn:hover,
.mlb-scope .filter-bar__sort .filter-btn[aria-expanded="true"]{
  border-color:var(--charcoal) !important;
  background:var(--charcoal) !important;
}
@media(max-width:520px){
  .mlb-scope .filter-bar__sort{
    width:100%;
    padding:5px;
    justify-content:space-between;
  }
  .mlb-scope .filter-bar__sort > span{
    display:none;
  }
  .mlb-scope .filter-bar__sort select{
    min-width:0;
    width:148px;
  }
}

/* ---- MLB mobiele homepage-hero 2026-08-26 ---- */
@media (max-width: 720px) {
  .elementor-21663 .mlb-home .hv {
    height: clamp(640px, calc(100svh - 132px), 720px);
    min-height: 640px;
    max-height: 720px;
    isolation: isolate;
  }
  .elementor-21663 .mlb-home .hv__media {
    object-position: 58% center;
    transform: none;
  }
  .elementor-21663 .mlb-home .hv__overlay {
    background:
      linear-gradient(180deg, rgba(22,20,18,.10) 0%, rgba(22,20,18,.18) 24%, rgba(22,20,18,.72) 66%, rgba(22,20,18,.94) 100%),
      linear-gradient(90deg, rgba(22,20,18,.28) 0%, transparent 72%) !important;
  }
  .elementor-21663 .mlb-home .hv__content {
    justify-content: flex-end;
    padding-top: 72px;
    padding-bottom: 28px;
  }
  .elementor-21663 .mlb-home .hv__eyebrow {
    margin: 0 0 16px;
    font-size: 9.5px;
    line-height: 1.35;
    letter-spacing: .16em;
    white-space: nowrap;
    color: rgba(226,171,133,.95);
  }
  .elementor-21663 .mlb-home .hv__eyebrow::before { width: 18px; }
  .elementor-21663 .mlb-home .hv__title {
    margin: 0 0 16px;
    text-shadow: 0 2px 18px rgba(0,0,0,.22);
  }
  .elementor-21663 .mlb-home .hv__title .elementor-heading-title {
    font-size: clamp(40px, 11.2vw, 46px) !important;
    line-height: .98;
    letter-spacing: -.02em;
  }
  .elementor-21663 .mlb-home .hv__lede {
    width: min(100%, 34ch) !important;
    max-width: 34ch !important;
    margin: 0 0 22px !important;
    font-size: 15.25px;
    line-height: 1.48;
    color: rgba(250,248,245,.9);
  }
  .elementor-21663 .mlb-home .hv__lede p { margin: 0; }
  .elementor-21663 .mlb-home .hv__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    align-self: flex-start;
  }
  .elementor-21663 .mlb-home .hv__cta-row .elementor-widget-button,
  .elementor-21663 .mlb-home .hv__cta-row .elementor-button { width: 100%; }
  .elementor-21663 .mlb-home .hv__cta-row .elementor-button {
    min-height: 48px;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: none;
    font-size: 11.5px;
    letter-spacing: .11em;
  }
  .elementor-21663 .mlb-home .hv__decor { display: none !important; }
}
@media (max-width: 380px) {
  .elementor-21663 .mlb-home .hv {
    min-height: 680px;
    max-height: 740px;
  }
  .elementor-21663 .mlb-home .hv__title .elementor-heading-title { font-size: 38px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .elementor-21663 .mlb-home .hv__media {
    animation: none;
    transition: none;
  }
}
/* ---- Einde MLB mobiele homepage-hero ---- */

/* ---- MLB mobiele actuele-acties kaart 2026-08-26 ---- */
@media (max-width: 720px) {
  .mlb-scope .promo-card.mlb-native-promo-card {
    min-height: 0;
    padding: 26px 24px 24px;
    border: 1px solid rgba(196,137,95,.32);
    border-radius: 22px;
    box-shadow: none;
    gap: 20px;
  }

  .mlb-scope .promo-card.mlb-native-promo-card::before {
    top: 0;
    right: 24px;
    width: 96px;
    height: 2px;
    border-radius: 0;
    background: var(--cognac-soft);
    opacity: .8;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-copy {
    gap: 0;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .promo-card__eyebrow {
    margin: 0 0 8px;
    font-size: 10.5px;
    letter-spacing: .24em;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .promo-card__title {
    max-width: 270px;
    margin: 0;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .promo-card__title .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.04 !important;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta {
    width: 100%;
    max-width: 360px;
    border-top: 1px solid rgba(250,248,245,.16);
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta .elementor-button {
    width: 100%;
    min-height: 44px;
    padding: 14px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    color: var(--bone);
    -webkit-tap-highlight-color: transparent;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta .elementor-button-content-wrapper {
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta .elementor-button-content-wrapper::after {
    content: "\2192";
    color: var(--cognac-soft);
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta .elementor-button:hover {
    background: transparent !important;
    color: var(--cognac-soft);
    transform: none;
  }

  .mlb-scope .promo-card.mlb-native-promo-card .mlb-native-promo-cta .elementor-button:focus-visible {
    outline: 2px solid var(--cognac-soft);
    outline-offset: 4px;
  }
}
/* ---- Einde MLB mobiele actuele-acties kaart ---- */

/* ---- MLB gedeelde Waarom-sectie + productvideo mobiel 2026-08-26 ---- */
@media (max-width: 720px) {
  .mlb-scope .mlb-shared-why .why {
    padding: 52px 0 48px !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-inner {
    --gap: 28px 28px !important;
    --row-gap: 28px !important;
    --column-gap: 28px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-intro {
    width: 100% !important;
    max-width: 34rem !important;
  }

  .mlb-scope .mlb-shared-why .section-head__eyebrow {
    margin: 0 0 14px !important;
    font-size: 10.5px !important;
    line-height: 1.4 !important;
    letter-spacing: .24em !important;
  }

  .mlb-scope .mlb-shared-why .why__title {
    margin: 0 0 14px !important;
  }

  .mlb-scope .mlb-shared-why .why__title,
  .mlb-scope .mlb-shared-why .why__title .elementor-heading-title {
    font-family: var(--serif) !important;
    font-size: clamp(30px, 8.5vw, 36px) !important;
    font-weight: 300 !important;
    line-height: 1.05 !important;
    letter-spacing: -.015em !important;
    text-transform: none !important;
  }

  .mlb-scope .mlb-shared-why .why__lede,
  .mlb-scope .mlb-shared-why .why__lede p {
    max-width: 34rem !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item-wrap {
    width: auto !important;
    min-width: 0 !important;
    padding: 15px 13px !important;
    border: 1px solid var(--line-soft) !important;
    border-radius: 15px !important;
    background: var(--bone-soft) !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item,
  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-widget-container {
    height: 100% !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon-box-wrapper {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
    height: 100% !important;
    text-align: left !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon-box-icon {
    width: 28px !important;
    margin: 0 !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon-box-content {
    min-width: 0 !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon-box-title {
    margin: 0 0 5px !important;
    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .mlb-scope .mlb-shared-why .mlb-why-item .elementor-icon-box-description {
    margin: 0 !important;
    font-family: var(--sans) !important;
    font-size: 12.25px !important;
    line-height: 1.45 !important;
  }

  .mlb-scope .mlb-product-video {
    padding: 0 16px 56px !important;
  }

  .mlb-scope .mlb-product-video > .e-con-inner {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .mlb-scope .mlb-product-video .elementor-widget-shortcode {
    --container-widget-height: auto !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
  }

  .mlb-scope .mlb-product-video .elementor-shortcode,
  .mlb-scope .mlb-product-video .pd-video,
  .mlb-scope .mlb-product-video .pd-video__embed {
    width: 100% !important;
    min-height: 0 !important;
  }

  .mlb-scope .mlb-product-video .pd-video__embed {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 16px !important;
  }

  .mlb-scope .mlb-product-video .pd-video__embed iframe {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
  }
}
/* ---- Einde MLB gedeelde Waarom-sectie + productvideo mobiel ---- */

/* MLB productvideo mobiele hoogteborging 2026-08-26 */
@media (max-width: 720px) {
  .mlb-scope .mlb-product-video .elementor-widget-shortcode {
    width: 100% !important;
    height: calc(56.25vw - 18px) !important;
    min-height: calc(56.25vw - 18px) !important;
    aspect-ratio: 16 / 9 !important;
  }

  .mlb-scope .mlb-product-video .elementor-shortcode,
  .mlb-scope .mlb-product-video .pd-video,
  .mlb-scope .mlb-product-video .pd-video__embed {
    height: 100% !important;
  }
}
/* Einde MLB productvideo mobiele hoogteborging */

/* ---- MLB homepage hero mobiel balans + inline CTA's 2026-08-26 ---- */
@media (max-width: 720px) {
  .elementor-21663 .mlb-home .hv {
    height: clamp(600px, calc(100svh - 132px), 680px) !important;
    min-height: 600px !important;
    max-height: 680px !important;
  }

  .elementor-21663 .mlb-home .hv__content {
    justify-content: center !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .elementor-21663 .mlb-home .hv__eyebrow {
    margin-bottom: 14px !important;
    font-size: 9.5px !important;
    letter-spacing: .14em !important;
  }

  .elementor-21663 .mlb-home .hv__title {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
  }

  .elementor-21663 .mlb-home .hv__title .elementor-heading-title {
    max-width: 100% !important;
    font-size: clamp(38px, 10.4vw, 42px) !important;
    line-height: .99 !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
  }

  .elementor-21663 .mlb-home .hv__lede {
    width: 100% !important;
    max-width: 340px !important;
    margin-bottom: 22px !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-widget-button,
  .elementor-21663 .mlb-home .hv__cta-row .elementor-button {
    width: 100% !important;
    min-width: 0 !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button {
    min-height: 46px !important;
    padding: 12px 11px !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
    letter-spacing: .055em !important;
    white-space: nowrap !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-icon {
    display: inline-flex !important;
    flex: 0 0 10px !important;
    width: 10px !important;
    margin: 0 !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-icon svg {
    width: 10px !important;
    height: 10px !important;
  }
}

@media (max-width: 380px) {
  .elementor-21663 .mlb-home .hv__cta-row {
    gap: 6px !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button {
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 9px !important;
    letter-spacing: .035em !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-content-wrapper {
    gap: 4px !important;
  }
}

@media (max-width: 350px) {
  .elementor-21663 .mlb-home .hv__cta-row .elementor-button {
    padding-right: 6px !important;
    padding-left: 6px !important;
    font-size: 8.3px !important;
    letter-spacing: .025em !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-icon {
    flex-basis: 8px !important;
    width: 8px !important;
  }

  .elementor-21663 .mlb-home .hv__cta-row .elementor-button-icon svg {
    width: 8px !important;
    height: 8px !important;
  }
}
/* ---- Einde MLB homepage hero mobiel balans + inline CTA's ---- */

/* ---- MLB final owner feedback 2026-08-31 ---- */
.mlb-scope .mlb-filter-groups {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}
.mlb-scope .filter-group[data-taxonomy="brand"] { order: 1; }
.mlb-scope .filter-group[data-taxonomy="product_category"] { order: 2; }
.mlb-scope .filter-group[data-taxonomy="selection"] { order: 3; }
.mlb-scope .filter-group[data-taxonomy="product_category"] a[href$="/collectie/accessoires/"] {
  display: none !important;
}
.mlb-scope .product-card__tag--show {
  background: #5f7568 !important;
  color: #fff !important;
}
.mlb-scope .mlb-product-tools-widget {
  grid-column: 1 / -1;
  width: 100%;
}
.mlb-scope .mlb-product-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.mlb-scope .mlb-product-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 15px !important;
  border: 1px solid #e1dbd0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #3a3631 !important;
  font: 500 11px/1.2 "Inter Tight", sans-serif !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: none !important;
}
.mlb-scope .mlb-product-tool:hover,
.mlb-scope .mlb-product-tool:focus-visible {
  border-color: #a0623a !important;
  color: #a0623a !important;
  outline: none;
}
.mlb-scope .mlb-product-tools__status {
  color: #6f685f;
  font-size: 12px;
}
@media print {
  .mlb-scope .mlb-product-tools,
  .mlb-scope .mlb-site-header-slot,
  .mlb-scope .mlb-site-footer-slot { display: none !important; }
}
@media (max-width: 720px) {
  .mlb-scope .mlb-product-tools { justify-content: flex-start; }
  .mlb-scope .mlb-product-tool { flex: 0 0 auto; }
}
.mlb-scope .filter-group[data-taxonomy="brand"] {
  padding-bottom: 18px;
  border-bottom: 1px solid #e1dbd0;
}
@media (min-width: 721px) {
  body .mlb-scope .filter-bar__sort .filter-btn.filter-btn--brands { display: none !important; }
}
@media (max-width: 720px) {
  body .mlb-scope .filter-bar__sort .filter-btn.filter-btn--brands { display: inline-flex !important; }
}
.elementor-21663 .mlb-home .location__map-panel .mlb-location-photo {
  width: clamp(250px, 28vw, 380px) !important;
}
.elementor-21663 .mlb-home .location__map-panel .mlb-location-photo img {
  aspect-ratio: 16 / 10 !important;
  object-position: center !important;
}
@media (max-width: 767px) {
  .elementor-21663 .mlb-home .location__map-panel .mlb-location-photo {
    width: min(62vw, 240px) !important;
  }
}
.mlb-scope .pd-gallery__tag--show {
  background: #5f7568 !important;
  color: #fff !important;
}
.elementor-21663 .mlb-home .hv__sound {
  position: absolute;
  right: 22px;
  bottom: 104px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(250,248,245,.52);
  border-radius: 999px;
  background: rgba(39,36,33,.58);
  color: #fff;
  font: 500 11px/1.2 "Inter Tight", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.elementor-21663 .mlb-home .hv__sound:hover,
.elementor-21663 .mlb-home .hv__sound[aria-pressed="true"] {
  border-color: #c4895f;
  background: rgba(160,98,58,.86);
}
@media (max-width: 860px) {
  .elementor-21663 .mlb-home .hv__sound { right: 16px; bottom: 18px; }
}
@media (min-width: 721px) {
  .mlb-scope .filter-group[data-taxonomy="brand"] { display: flex !important; }
}
@media (max-width: 720px) {
  .mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget,
  .mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget:not(.is-open),
  .mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget.is-open {
    display: block !important;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E9E4DB;
  }
  .mlb-scope .filter-bar:not(.is-filters-open) .filter-group[data-taxonomy="brand"] { display: none !important; }
  .mlb-scope .filter-bar.is-filters-open .filter-group[data-taxonomy="brand"] { display: flex !important; }
}
/* Voorkom een thema-/browserkleurflits bij het aanklikken van de categoriekaarten. */
.elementor-21663 .mlb-home .cat-card,
.elementor-21663 .mlb-home .cat-card a {
  -webkit-tap-highlight-color: transparent;
}
.elementor-21663 .mlb-home .cat-card:active,
.elementor-21663 .mlb-home .cat-card a:active {
  background-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}
.elementor-21663 .mlb-home .cat-card:focus-visible {
  outline: 2px solid #A0623A;
  outline-offset: 4px;
}
.mlb-scope .material-groups.is-materials-collapsed > .material-section:nth-child(n + 3) {
  display: none !important;
}
.mlb-scope .material-groups.is-materials-collapsed > .material-section .swatches > .swatch:nth-child(n + 9) {
  display: none !important;
}
.mlb-scope .mlb-material-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.mlb-scope .mlb-material-more__button {
  min-height: 42px;
  padding: 11px 20px !important;
  border: 1px solid #DDD7CC !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #3A3631 !important;
  font: 600 11px/1.2 "Inter Tight", sans-serif !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: none !important;
}
.mlb-scope .mlb-material-more__button:hover,
.mlb-scope .mlb-material-more__button:focus-visible,
.mlb-scope .mlb-material-more__button[aria-expanded="true"] {
  border-color: #A0623A !important;
  color: #A0623A !important;
  outline: none;
}
@media (max-width: 720px) {
  .mlb-scope .material-groups.is-materials-collapsed > .material-section:nth-child(n + 2) {
    display: none !important;
  }
  .mlb-scope .material-groups.is-materials-collapsed > .material-section .swatches > .swatch:nth-child(n + 7) {
    display: none !important;
  }
  .mlb-scope .mlb-material-more {
    margin-top: 22px;
  }
  .mlb-scope .mlb-material-more__button {
    width: 100%;
    max-width: 290px;
  }
}
/* Verwijder de dubbele scheidingslijn onder de filter- en sorteerbediening. */
.mlb-scope .filter-bar.is-filter-ready .mlb-filter-widget {
  border-top: 0 !important;
}

/* ---- Einde MLB final owner feedback ---- */

