/* ============================================================
   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;
  }

  /* Subtle entrance animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .page.is-active .hv__eyebrow { animation: fadeUp 0.7s var(--ease) 0.1s both; }
  .page.is-active .hv__title { animation: fadeUp 0.8s var(--ease) 0.2s both; }
  .page.is-active .hv__lede { animation: fadeUp 0.8s var(--ease) 0.35s both; }
  .page.is-active .hv__cta-row { animation: fadeUp 0.8s var(--ease) 0.5s both; }
  .page.is-active .hv__badge { animation: fadeUp 0.8s var(--ease) 0.75s both; }
  .page.is-active .cat-hero__title { animation: fadeUp 0.8s var(--ease) 0.1s both; }
  .page.is-active .pd-info__title { animation: fadeUp 0.8s var(--ease) 0.1s both; }

  .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); }
  .cat-seo__body {
    columns: 2;
    column-gap: 56px;
  }
  .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;
}

/* Dynamische sfeerbeelden in Het verhaal. */
.mlb-scope .pd-product-showcase {
  width: 100%;
}
.mlb-scope .pd-product-showcase:has(.pd-product-showcase__pair) .pd-seo__img--wide {
  margin-bottom: 30px;
}
.mlb-scope .pd-product-showcase__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}
.mlb-scope .pd-product-showcase__pair.is-single {
  grid-template-columns: 1fr;
}
.mlb-scope .pd-product-showcase__pair .pd-seo__img {
  aspect-ratio: 4 / 3.2;
}
.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__pair {
    grid-template-columns: 1fr;
  }
}
@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;
  }
}
