:root {
  --ink: #152033;
  --ink-soft: #5a6575;
  --paper: #ffffff;
  --wash: #f3f5f7;
  --line: #dde2e8;
  --brand: #c81927;
  --brand-ink: #9e121e;
  --ok: #1f7a4d;
  --warn: #9a6b00;
  --muted-fill: #eef1f4;
  --focus: #c81927;
  --radius-control: 10px;
  --radius-media: 14px;
  --font-display: "Sora", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-ink); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #fff; padding: .5rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}
.brand img { height: 36px; width: auto; }
.nav-desktop {
  display: none; flex: 1; gap: 1.75rem; justify-content: center;
  flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-desktop::-webkit-scrollbar { display: none; }
.nav-desktop a {
  color: var(--ink); font-weight: 600; font-size: .88rem;
  padding: .35rem 0; border-bottom: 2px solid transparent;
  white-space: nowrap; flex: 0 0 auto;
  transition: color .15s ease, border-color .15s ease;
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: .65rem; margin-left: auto; }
.action-link, .cart-link, .b2b-shop-link {
  color: var(--ink); font-weight: 600; font-size: .88rem;
}
.action-link-secondary {
  font-weight: 500; font-size: .82rem; color: var(--ink-soft);
}
.b2b-shop-link {
  display: inline-flex; align-items: center; gap: .4rem;
  position: relative; padding: .4rem .7rem;
  background: var(--ink); color: #fff; border-radius: var(--radius-control);
}
.b2b-shop-link:hover { color: #fff; background: #1f2d45; }
.b2b-shop-icon { flex: 0 0 auto; }
.cart-link { display: inline-flex; align-items: center; gap: .35rem; position: relative; }
.cart-badge:not(:empty) {
  display: inline-flex; min-width: 1.25rem; height: 1.25rem; padding: 0 .35rem;
  align-items: center; justify-content: center;
  background: var(--brand); color: #fff; border-radius: 999px; font-size: .75rem;
}
.b2b-shop-link .cart-badge {
  position: absolute; top: -.35rem; right: -.35rem;
}
.lang-switch select {
  border: 1px solid var(--line); border-radius: var(--radius-control);
  padding: .35rem .5rem; background: var(--paper); font: inherit;
}
.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  border: 0; background: transparent; padding: .4rem; cursor: pointer;
  position: relative; z-index: 46; flex: 0 0 auto;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
}
.nav-drawer {
  position: relative;
  z-index: 45;
  background: var(--paper); border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.5rem;
  transform: translateY(-8px); opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-drawer.is-open { transform: translateY(0); opacity: 1; }
.nav-drawer a {
  display: block; padding: .7rem 0; color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.nav-drawer a.is-active { color: var(--brand); }
.nav-overlay {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: rgba(21,32,51,.35); z-index: 30;
}
body.nav-open { overflow: hidden; }

.lang-tip, .flash {
  max-width: 1200px; margin: .75rem auto 0; padding: .65rem 1rem;
  border-radius: var(--radius-control);
}
.flash-ok { background: #e8f6ee; color: var(--ok); }
.flash-error { background: #fdebec; color: var(--brand-ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.75rem; padding: .65rem 1.25rem;
  border-radius: var(--radius-control); font-weight: 700; font-family: inherit;
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-ink); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }

.section { padding: 3.5rem 1.25rem; }
.section-wash { background: var(--wash); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink a { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding-left: 0; padding-right: 0; }
.section > .container,
.page-hero > .container { max-width: 1200px; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .5rem;
}
.section-ink .eyebrow { color: rgba(255,255,255,.7); }
h1, h2, .display {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .75rem;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 40rem; margin: 0 0 1.25rem; }
.brand-intro p { margin: 0 0 .75rem; }
.brand-intro ul, .brand-intro ol { margin: 0 0 .75rem 1.2rem; }
.brand-intro a { color: var(--red, #c81927); text-decoration: underline; }
.section-ink .lead { color: rgba(255,255,255,.82); }
.section-head {
  display: flex; justify-content: space-between; gap: 1.25rem 2rem;
  align-items: end; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.section-head .lead { margin-bottom: 0; }
.text-link { font-weight: 700; }

/* Hero */
.hero {
  position: relative; min-height: min(78vh, 640px);
  display: grid; align-items: stretch;
  background: var(--ink);
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  background: #1a2436 center/cover no-repeat;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(21,32,51,.88) 0%, rgba(21,32,51,.55) 48%, rgba(21,32,51,.15) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 4.5rem 1.25rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero .lead { color: rgba(255,255,255,.88); }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 2rem; padding: 0; list-style: none;
  align-items: flex-start;
}
.trust-strip li { min-width: 7.5rem; }
.trust-strip strong {
  display: block; font-family: var(--font-display); font-size: 1.35rem; margin-bottom: .15rem;
}
.trust-strip span { color: rgba(255,255,255,.75); font-size: .92rem; }

.brand-grid, .product-grid, .news-grid, .catalog-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-grid-dense { gap: .75rem; }
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.logo-wall-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 90px;
  max-width: 140px;
  min-height: 64px;
  padding: .5rem .35rem;
  color: inherit;
}
.logo-wall-item img {
  max-height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 1;
  transition: transform .2s ease;
}
.logo-wall-item:hover img { transform: translateY(-1px); }
.logo-wall-brands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: .85rem .4rem;
}
.logo-wall-brands .logo-wall-item {
  flex: none;
  width: 100%;
  max-width: none;
}
.trust-logos-section { padding-top: 2.25rem; padding-bottom: 1.25rem; }
.trust-logos-title {
  margin: 0 0 1.15rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.trust-logos { justify-content: center; gap: 1rem 2.25rem; }
.trust-logos .logo-wall-item { flex: 0 1 150px; max-width: 168px; }
.trust-logos .logo-wall-item img { max-width: 148px; max-height: 52px; }
.brand-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; min-height: 120px; padding: 1rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-media); color: var(--ink); font-weight: 700;
  transition: border-color .15s ease;
}
.brand-tile:hover { border-color: var(--brand); color: var(--ink); }
.brand-tile img { max-height: 48px; width: auto; opacity: 1; transition: transform .15s ease; }
.brand-tile:hover img { transform: translateY(-1px); }
.brand-visuals { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.brand-page-logo, .brand-visuals img { max-height: 120px; width: auto; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .4rem; }
.brand-visuals figure { margin: 0; }
.brand-visuals figcaption { font-size: .8rem; color: var(--ink-soft); margin-top: .25rem; }

.product-teaser {
  display: flex; flex-direction: column; color: inherit;
  border: 0; border-radius: var(--radius-media);
  background: transparent; overflow: hidden;
}
.product-teaser:hover { color: inherit; }
.product-teaser-media {
  position: relative; aspect-ratio: 1;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  overflow: hidden; border-radius: var(--radius-media);
}
.product-teaser-media img {
  width: 100%; height: 100%; object-fit: contain; padding: .65rem;
  transition: transform .2s ease;
}
@media (hover: hover) {
  .product-teaser:hover .product-teaser-media img { transform: scale(1.03); }
}
.product-teaser-body { display: flex; flex-direction: column; gap: .2rem; padding: .65rem .15rem .85rem; }
.product-brand {
  font-size: .72rem; font-weight: 600; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .05em;
}
.product-title {
  font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.stock-label { font-size: .82rem; font-weight: 600; }
.stock-op_voorraad { color: var(--ok); }
.stock-beperkt { color: var(--warn); }
.stock-niet { color: var(--ink-soft); }
.price, .price-gate { font-weight: 700; margin-top: .2rem; font-size: .95rem; }
.price-gate { color: var(--brand); }
.price-muted { font-size: .75rem; font-weight: 600; color: var(--ink-soft); margin-top: .15rem; letter-spacing: .04em; }
.badge-deal {
  position: absolute; top: .6rem; left: .6rem;
  background: #fff; color: var(--brand); border: 1px solid var(--brand);
  font-size: .75rem; font-weight: 700; padding: .2rem .45rem; border-radius: 6px;
}

.why-points {
  display: grid; gap: 1.25rem 1.5rem; margin: 1.5rem 0;
  max-width: 100%;
}
.why-points div { padding: 0; border: 0; }
.why-points strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .25rem; }

.story-split {
  display: grid; gap: 2.25rem; align-items: center;
}
.story-values {
  display: grid; gap: 1rem; margin-top: 1.5rem;
}
.story-values strong { display: block; font-family: var(--font-display); margin-bottom: .2rem; }
.story-values span { color: var(--ink-soft); font-size: .95rem; }
.story-media {
  border-radius: var(--radius-media); overflow: hidden; background: var(--wash);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.klant-split {
  display: grid; gap: 2rem; align-items: start;
}
.klant-intro p { color: var(--ink-soft); margin-top: 0; }
.klant-media {
  margin-top: 1.25rem; border-radius: var(--radius-media); overflow: hidden; background: var(--wash);
}
.klant-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.form-grid-flush { max-width: none; }

.shop-mode .shop-toolbar {
  position: sticky; top: var(--header-h); z-index: 20;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  padding: .85rem 0; margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

/* Wide B2B shop shell with left + right rails */
.container-shop {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.shop-pagehead { padding: .7rem 0 .2rem; }
.shop-pagehead h1 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin: 0; }
.shop-main .brand-pagehead {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.75rem;
  align-items: center;
  margin: 0 0 1.75rem;
}
.shop-main .brand-pagehead:not(:has(.brand-page-logo)) { grid-template-columns: 1fr; }
.shop-main .brand-page-logo {
  max-height: 168px;
  max-width: 240px;
  width: auto;
}
.shop-brand-intro {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .shop-main .brand-pagehead { grid-template-columns: 1fr; }
}
.shop-search-field { position: relative; }
.search-suggest {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 30px rgba(18,36,58,.12); max-height: 22rem; overflow: auto;
}
.search-suggest a {
  display: grid; grid-template-columns: 42px 1fr; gap: .6rem; align-items: center;
  padding: .45rem .7rem; color: inherit;
}
.search-suggest a:hover, .search-suggest a.is-active { background: rgba(200,25,39,.06); }
.search-suggest img { width: 42px; height: 42px; object-fit: contain; background: #faf9f7; }
.search-suggest small { display: block; color: var(--ink-soft); }
.page-hero-shop .lead { max-width: 42rem; }
.shop-shell {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "left"
    "right";
  align-items: start;
  padding-bottom: 2rem;
}
.shop-side-left { grid-area: left; }
.shop-main { grid-area: main; min-width: 0; }
.shop-side-right { grid-area: right; }
.shop-side-card {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  padding: 1rem 1.1rem;
  margin-bottom: .85rem;
}
.shop-side-card-accent {
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
}
.shop-side-title {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 .65rem;
  font-weight: 700;
}
.shop-side-text {
  margin: 0 0 .85rem;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.45;
}
.shop-side-links {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.shop-side-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: .35rem .2rem;
  border-radius: 6px;
}
.shop-side-links a:hover,
.shop-side-links a.is-active {
  color: var(--brand);
  background: rgba(200, 25, 39, .06);
}
.shop-side-links-scroll {
  max-height: 16rem;
  overflow: auto;
}
.btn-block { width: 100%; margin-bottom: .55rem; }
.shop-searchbar {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
  padding: .85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
}
.shop-searchbar input,
.shop-searchbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: .7rem .85rem;
  font: inherit;
  background: var(--paper);
}
.shop-result-meta,
.shop-active-filters {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0 0 1rem;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem .5rem;
  align-items: center; font-size: .9rem; color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb [aria-current="page"] {
  color: var(--ink); max-width: 18rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-shop-grid {
  display: grid; gap: 1.5rem;
}
.product-meta-row {
  display: flex; flex-wrap: wrap; gap: .35rem .55rem;
  color: var(--ink-soft); font-size: .92rem; margin: .35rem 0 1rem;
}
.buy-box {
  padding: 1rem 1.1rem;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  margin-bottom: 1.25rem;
}
.buy-box-price { font-size: 1.35rem; margin: 0 0 .5rem; }
.stock-pill {
  display: inline-flex; align-items: center;
  font-size: .8rem; font-weight: 700; padding: .28rem .55rem;
  border-radius: 6px; margin: 0 0 .75rem;
  border: 1px solid var(--line); background: #fff;
}
.stock-pill.stock-op_voorraad { border-color: #1f7a4d; color: #1f7a4d; }
.stock-pill.stock-beperkt { border-color: #a15c00; color: #a15c00; }
.stock-pill.stock-niet { border-color: #8a2f2f; color: #8a2f2f; }
.buy-box-note { color: var(--ink-soft); font-size: .9rem; margin: .5rem 0 0; }
.specs-table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.25rem;
  font-size: .95rem;
}
.specs-table th,
.specs-table td {
  text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs-table th {
  width: 9rem; color: var(--ink-soft); font-weight: 600;
}
.product-desc h2 { font-size: 1.1rem; margin: 0 0 .5rem; }
.product-story {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 46rem;
}
.product-story h2 { font-size: 1.35rem; margin: 0 0 .75rem; }
.product-story-body {
  font-size: 1.02rem;
  line-height: 1.65;
  white-space: normal;
}
.product-brand {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .35rem;
}
.product-shop-gallery .gallery-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.product-shop-gallery .gallery-main img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}
.shop-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.shop-related h2 { font-size: 1.25rem; margin: 0; }

@media (min-width: 720px) {
  .shop-searchbar {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
  .product-shop-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1100px) {
  .shop-shell {
    grid-template-columns: 220px minmax(0, 1fr) 240px;
    grid-template-areas: "left main right";
    gap: 1.5rem;
  }
  .shop-side {
    position: sticky;
    top: calc(var(--header-h) + .85rem);
  }
  .shop-side-links-scroll { max-height: min(40vh, 22rem); }
}
.legal-body h2 { font-size: 1.15rem; margin-top: 1.75rem; }

.news-card {
  display: flex; flex-direction: column; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-media); overflow: hidden; background: var(--paper);
}
.news-card:hover { color: inherit; }
.news-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.news-card-body { padding: 1rem; }
.news-card time { color: var(--ink-soft); font-size: .88rem; }

.page-hero { padding: 2.5rem 1.25rem 1rem; }
.page-hero .container { max-width: 1200px; }

.toolbar {
  display: grid; gap: .75rem; margin-bottom: 1.5rem;
  grid-template-columns: 1fr;
}
.toolbar input, .toolbar select, .form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-control);
  padding: .7rem .85rem; font: inherit; background: var(--paper);
}
.form-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  max-width: 640px;
}
.form-grid label { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; }
.form-grid .full { grid-column: 1 / -1; }
.consent { flex-direction: row !important; align-items: flex-start; gap: .6rem !important; font-weight: 400 !important; }
.form-grid .consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  margin: .2rem 0 0;
  padding: 0;
  border-radius: .2rem;
  accent-color: var(--brand);
}
.consent > span { flex: 1 1 auto; min-width: 0; }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.empty-state { padding: 2rem 0; color: var(--ink-soft); }

.product-detail {
  display: grid; gap: 2rem; padding: 1.5rem 1.25rem 3rem;
  max-width: 1200px; margin: 0 auto;
}
.gallery-main {
  aspect-ratio: 1; background: var(--wash); border-radius: var(--radius-media);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gallery-main img { max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 64px; height: 64px; object-fit: contain; background: var(--wash);
  border-radius: 8px; border: 1px solid var(--line); padding: .25rem;
}
.qty-row { display: flex; gap: .75rem; align-items: center; margin: 0; }
.qty-row input { width: 5rem; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  text-align: left; padding: .85rem .5rem; border-bottom: 1px solid var(--line); vertical-align: middle;
}
.cart-thumb { width: 64px; height: 64px; object-fit: contain; background: var(--wash); border-radius: 8px; }
.cart-summary { margin-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }

.article-body { max-width: 720px; }
.article-body :where(p, ul, ol) { margin: 0 0 1rem; }
.article-cover { max-width: 960px; margin: 0 auto 1.5rem; border-radius: var(--radius-media); overflow: hidden; }
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.site-footer {
  background: var(--wash); border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 2.5rem; margin-top: 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
.footer-grid h2 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .75rem; font-family: var(--font-body); }
.footer-grid a { display: block; color: var(--ink); padding: .2rem 0; font-weight: 600; }
.footer-tagline { font-weight: 600; margin: .75rem 0 .35rem; }
.footer-note { color: var(--ink-soft); font-size: .92rem; }

@media (min-width: 640px) {
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo-wall { gap: 1rem 2rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid, .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .toolbar { grid-template-columns: 2fr 1fr 1fr 1fr auto; align-items: end; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .why-points { grid-template-columns: repeat(3, 1fr); }
  .story-values { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 820px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .cart-label, .b2b-shop-label { display: inline; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo-wall { gap: 1rem 1.5rem; justify-content: space-between; }
  .logo-wall-brands { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.25rem 1rem; }
  .product-detail { grid-template-columns: 1fr 1fr; }
  .product-shop-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .story-split { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
  .klant-split { grid-template-columns: .95fr 1.05fr; gap: 2.5rem; }
}
@media (max-width: 819px) {
  .header-inner { gap: .6rem; padding: 0 .85rem; }
  .action-link-secondary { display: none; }
  .cart-label { display: none; }
  .b2b-shop-label { display: none; }
}
