:root {
  --ink: #171b1e;
  --ink-soft: #31383d;
  --paper: #f7f8fa;
  --white: #ffffff;
  --yellow: #f4c430;
  --yellow-dark: #c49600;
  --green: #647179;
  --steel: #647179;
  --line: #d9dfe3;
  --muted: #667279;
  --danger: #b74235;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.utility-bar {
  height: 34px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.utility-inner {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.utility-inner span,
.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.utility-inner svg { width: 14px; height: 14px; color: var(--yellow); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 80px;
  border-bottom: 1px solid rgba(23, 27, 25, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { width: auto; height: 64px; display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; justify-content: center; color: var(--ink); line-height: 1; }
.brand-name small { font-size: 9px; font-weight: 700; text-transform: uppercase; }
.brand-name strong { margin-top: 3px; font-family: var(--display); font-size: 25px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 8px; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-category-menu-wrap { position: relative; }
.nav-category-trigger { min-height: 42px; padding: 8px 0; display: inline-flex; align-items: center; gap: 5px; border: 0; color: var(--ink); background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }
.nav-category-trigger svg { width: 15px; height: 15px; transition: transform 160ms ease; }
.nav-category-menu-wrap.is-open .nav-category-trigger { color: var(--green); }
.nav-category-menu-wrap.is-open .nav-category-trigger svg { transform: rotate(180deg); }
.nav-category-links { position: absolute; z-index: 130; top: calc(100% + 12px); left: -16px; width: 252px; padding: 8px; display: none; border: 1px solid var(--line); border-radius: 3px; background: var(--white); box-shadow: 0 18px 35px rgba(23,27,25,0.16); }
.nav-category-menu-wrap.is-open .nav-category-links { display: grid; }
.nav-category-links a { min-height: 42px; padding: 10px; display: flex; align-items: center; gap: 10px; border-radius: 2px; font-size: 12px; font-weight: 800; }
.nav-category-links a:hover, .nav-category-links a:focus-visible { color: var(--green); background: #eef1f3; outline-offset: -2px; }
.nav-category-links svg { width: 17px; height: 17px; color: var(--green); }

.nav-cta {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--green);
  border-radius: 3px;
}

.nav-cta svg { width: 17px; height: 17px; }
.icon-button { width: 44px; height: 44px; padding: 0; display: none; place-items: center; border: 0; background: transparent; cursor: pointer; }

.hero {
  position: relative;
  min-height: max(560px, calc(100vh - 174px));
  max-height: 820px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-photo,
.hero-shade { position: absolute; inset: 0; }

.hero-photo {
  z-index: -3;
  background-color: #273137;
  background-image: url("assets/products/20-altrex-partij.jpg");
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  animation: hero-enter 900ms ease-out both;
}

.hero-shade { z-index: -2; background: rgba(12, 16, 19, 0.60); }

.hero-inner {
  min-height: inherit;
  padding-top: 70px;
  padding-bottom: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before { content: ""; width: 34px; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--green); }

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--display);
  font-size: 96px;
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-company-type { display: block; margin-bottom: 12px; font-family: var(--body); font-size: 17px; font-weight: 700; line-height: 1; }

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.button-primary:hover { background: #ffd54d; border-color: #ffd54d; }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.72); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--green); border-color: var(--green); }
.button-review { color: var(--white); background: transparent; border-color: rgba(255,255,255,0.72); }
.button-review:hover { color: var(--ink); background: var(--white); border-color: var(--white); }

.rating-line {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 13px;
}

.rating-line svg { width: 15px; height: 15px; }
.rating-stars { color: var(--yellow); font-size: 14px; }

.trust-strip { color: var(--white); background: var(--green); }
.trust-grid { min-height: 106px; display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 22px 28px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.17); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,0.17); }
.trust-item strong { font-family: var(--display); font-size: 29px; line-height: 1; }
.trust-item span { margin-top: 6px; color: rgba(255,255,255,0.72); font-size: 12px; }
.trust-item-certificate { position: relative; color: var(--white); transition: background-color 160ms ease; }
.trust-item-certificate:hover { background: rgba(255,255,255,0.08); }
.trust-item-certificate svg { width: 20px; height: 20px; margin-bottom: 8px; color: var(--yellow); }
.trust-item-certificate strong { font-size: 22px; }
.trust-item-certificate span { max-width: 190px; line-height: 1.35; }

.certificate-showcase { padding-block: 96px; background: var(--paper); }
.certificate-showcase-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: 74px; align-items: center; }
.certificate-showcase-media { position: relative; width: min(100%, 430px); justify-self: center; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: 0 16px 34px rgba(23,27,25,0.12); }
.certificate-showcase-media img { width: 100%; height: auto; display: block; }
.certificate-showcase-media > span { position: absolute; right: 14px; bottom: 14px; padding: 9px 11px; display: inline-flex; align-items: center; gap: 6px; color: var(--white); background: rgba(16,19,22,0.88); font-size: 11px; font-weight: 800; }
.certificate-showcase-media svg { width: 14px; height: 14px; }
.certificate-showcase-copy { min-width: 0; }
.certificate-showcase-copy h2 { max-width: 620px; margin: 0; font-family: var(--display); font-size: 58px; line-height: 0.92; text-transform: uppercase; }
.certificate-showcase-copy p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.certificate-showcase-copy .lead { color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.certificate-badges { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.certificate-badge { display: block; width: auto; height: auto; object-fit: contain; }
.certificate-badge-round { width: 116px; height: 90px; }
.certificate-badge-thar { width: 220px; height: 67px; }

.section { padding-block: 112px; }
.section-heading h2,
.feature-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0;
}

.catalog-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: 64px; align-items: end; }
.catalog-heading > p { margin: 0; color: var(--muted); font-size: 15px; }

.catalog-toolbar {
  margin-top: 46px;
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 42px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button span { margin-left: 4px; color: var(--muted); font-size: 11px; }
.filter-button.is-active { color: var(--white); border-color: var(--ink); background: var(--ink); }
.filter-button.is-active span { color: var(--yellow); }

.search-field {
  width: min(300px, 100%);
  height: 42px;
  padding-inline: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.search-field svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--muted); }
.search-field input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; font-size: 13px; }

.catalog-meta { margin: 22px 0 18px; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 12px; }
.catalog-meta strong { color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.product-card > a { min-height: 0; display: flex; flex: 1 1 auto; flex-direction: column; }
.product-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e7ebed; }
.product-card-media > a { height: 100%; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.product-card:hover .product-card-media > a > img { transform: scale(1.035); }
.product-tag { position: absolute; top: 12px; left: 12px; padding: 5px 8px; color: var(--white); background: rgba(23, 27, 25, 0.9); border-radius: 2px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.product-tag.new { color: var(--ink); background: var(--yellow); }
.product-photo-count { position: absolute; right: 12px; bottom: 12px; padding: 6px 8px; display: inline-flex; align-items: center; gap: 5px; color: var(--white); background: rgba(23, 27, 25, 0.88); border-radius: 2px; font-size: 10px; font-weight: 800; }
.product-photo-count svg { width: 13px; height: 13px; }
.product-card-thumbs { min-height: 55px; padding: 8px 10px; display: flex; gap: 6px; overflow-x: auto; border-bottom: 1px solid var(--line); background: #f7f8fa; scrollbar-width: thin; }
.product-card-thumb { width: 60px; height: 43px; flex: 0 0 auto; display: block; background-position: center; background-size: cover; border: 1px solid #d8dde1; border-radius: 2px; }
.product-card-thumb.is-active { border-color: var(--green); }
.product-card-body { min-height: 236px; padding: 20px; display: flex; flex: 1; flex-direction: column; }
.product-card-category { margin: 0 0 7px; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--display); font-size: 26px; font-weight: 700; line-height: 1.04; letter-spacing: 0; }
.product-description { margin: 12px 0 16px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-card-footer { margin-top: auto; padding-top: 15px; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; border-top: 1px solid var(--line); }
.product-price { font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1; }
.product-link-label { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: 11px; font-weight: 800; white-space: nowrap; }
.product-link-label svg { width: 14px; height: 14px; }
.product-card-ad { border-top: 1px solid var(--line); background: #f7f8fa; }
.product-card-ad summary { min-height: 43px; padding: 11px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ink-soft); cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; list-style: none; text-transform: uppercase; }
.product-card-ad summary::-webkit-details-marker { display: none; }
.product-card-ad summary svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--green); transition: transform 180ms ease; }
.product-card-ad[open] summary svg { transform: rotate(180deg); }
.product-card-ad-text { padding: 0 20px 18px; color: var(--muted); font-size: 12px; line-height: 1.65; white-space: pre-line; overflow-wrap: anywhere; }
.product-card-category-link { min-height: 38px; padding: 10px 20px; display: flex !important; align-items: center; justify-content: space-between; gap: 8px; color: var(--green); border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.product-card-category-link:hover { color: var(--ink); background: #f7f8fa; }
.product-card-category-link svg { width: 15px; height: 15px; }

.catalog-more { margin-top: 36px; display: flex; justify-content: center; }
.catalog-more[hidden], .catalog-empty[hidden] { display: none; }
.catalog-empty { padding: 70px 20px; text-align: center; }
.catalog-empty svg { width: 36px; height: 36px; color: var(--muted); }
.catalog-empty h3 { margin: 12px 0 8px; font-family: var(--display); font-size: 28px; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green); font-weight: 700; cursor: pointer; }

.feature-band { min-height: 650px; display: grid; grid-template-columns: 1.05fr 0.95fr; color: var(--white); background: var(--ink); }
.feature-image { min-height: 650px; background: url("assets/products/01-wijnvat.jpg") center 62% / cover no-repeat; }
.feature-copy { padding: 80px max(40px, calc((100vw - var(--container)) / 2)); padding-left: 72px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.feature-copy h2 { max-width: 560px; }
.feature-copy p:not(.eyebrow) { max-width: 520px; margin: 24px 0 30px; color: rgba(255,255,255,0.75); }

.process-section { background: var(--white); }
.process-layout { display: grid; grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr); gap: 100px; }
.process-heading > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { padding: 26px 0; display: grid; grid-template-columns: 58px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-family: var(--display); font-size: 22px; font-weight: 800; }
.process-list h3 { margin: 0 0 5px; font-family: var(--display); font-size: 27px; line-height: 1; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.about-section { padding-block: 120px; background: #eef1f3; }
.about-layout { display: grid; grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr); gap: 92px; align-items: center; }
.about-media { position: relative; min-height: 640px; }
.about-media::before { content: ""; position: absolute; top: -20px; right: -20px; bottom: 40px; left: 40px; border: 3px solid var(--yellow); }
.about-media img { position: relative; width: 100%; height: 640px; object-fit: cover; }
.about-stamp { position: absolute; right: -28px; bottom: 18px; width: 142px; height: 142px; padding: 18px; display: flex; flex-direction: column; justify-content: center; color: var(--white); background: var(--green); border-radius: 50%; text-align: center; }
.about-stamp strong { font-family: var(--display); font-size: 43px; line-height: 1; }
.about-stamp span { font-size: 10px; }
.about-copy .lead { margin: 27px 0 16px; color: var(--ink-soft); font-size: 20px; font-weight: 600; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); font-size: 14px; }
.check-list { margin: 24px 0 28px; padding: 0; display: grid; gap: 10px; list-style: none; font-size: 13px; font-weight: 700; }
.check-list li { display: flex; align-items: center; gap: 10px; }
.check-list svg { width: 20px; height: 20px; padding: 3px; color: var(--white); background: var(--green); border-radius: 50%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; padding-bottom: 4px; border-bottom: 2px solid var(--yellow); color: var(--green); font-size: 13px; font-weight: 800; }
.text-link svg { width: 15px; height: 15px; }

.contact-section { padding-block: 110px; color: var(--white); background: var(--green); }
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 100px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: rgba(255,255,255,0.76); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-details { margin: 0; font-style: normal; border-top: 1px solid rgba(255,255,255,0.24); }
.contact-details a { padding: 24px 0; display: grid; grid-template-columns: 34px 1fr; gap: 15px; align-items: start; border-bottom: 1px solid rgba(255,255,255,0.24); }
.contact-details > a > svg { width: 22px; height: 22px; margin-top: 2px; color: var(--yellow); }
.contact-details span { min-width: 0; display: flex; flex-direction: column; }
.contact-details small { color: rgba(255,255,255,0.6); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.contact-details strong { overflow-wrap: anywhere; font-size: 14px; }

.site-footer { color: #c5cbd0; background: #101316; }
.footer-main { padding-block: 65px; display: grid; grid-template-columns: 1.1fr 1.25fr repeat(3, 1fr); gap: 46px; }
.footer-brand { width: 170px; height: 170px; overflow: hidden; background: var(--white); }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-certificate { min-width: 0; display: flex; align-items: flex-start; gap: 16px; }
.footer-certificate-media { width: 105px; height: 140px; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,0.25); background: var(--white); }
.footer-certificate-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.footer-certificate-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-certificate-copy strong { color: var(--white); font-family: var(--display); font-size: 19px; line-height: 1; }
.footer-certificate-copy span { color: #c5cbd0; font-size: 11px; line-height: 1.45; }
.footer-certificate-copy small { color: rgba(255,255,255,0.58); font-size: 10px; }
.footer-nav { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 12px; }
.footer-nav strong { margin-bottom: 5px; color: var(--white); font-family: var(--display); font-size: 19px; }
.footer-nav a { overflow-wrap: anywhere; }
.footer-nav a:hover { color: var(--yellow); }
.footer-nav svg { width: 13px; height: 13px; vertical-align: -2px; }
.footer-bottom { min-height: 64px; padding-block: 16px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 10px; }
.mobile-contact-bar { display: none; }

.main-nav > a.is-current { color: var(--green); }

.route-section { background: #eef1f3; }
.route-heading { margin-bottom: 42px; }
.route-heading > p { max-width: 410px; margin: 0; color: var(--muted); font-size: 14px; }
.route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.route-card { min-height: 342px; padding: 30px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid transparent; border-radius: 4px; transition: transform 180ms ease, box-shadow 180ms ease; }
.route-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(23, 27, 25, 0.12); }
.route-card-dark { color: var(--white); background: var(--ink); }
.route-card-yellow { color: var(--ink); background: var(--yellow); }
.route-card-green { color: var(--white); background: var(--green); }
.route-card-icon { width: 42px; height: 42px; margin-bottom: 28px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; }
.route-card-dark .route-card-icon, .route-card-green .route-card-icon { color: var(--ink); }
.route-card-icon svg { width: 20px; height: 20px; }
.route-card-kicker { margin-bottom: 9px; font-size: 11px; font-weight: 800; text-transform: uppercase; opacity: 0.72; }
.route-card h3 { margin: 0; font-family: var(--display); font-size: 34px; line-height: 0.96; text-transform: uppercase; }
.route-card p { margin: 18px 0 24px; font-size: 13px; line-height: 1.55; opacity: 0.76; }
.route-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; }
.route-card-link svg { width: 16px; height: 16px; }

.category-section { padding-top: 92px; background: #eef1f3; }
.category-heading { margin-bottom: 36px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-tile { position: relative; min-height: 372px; padding: 25px; display: flex; flex-direction: column; align-items: center; color: var(--white); text-align: center; background-color: var(--ink); background-repeat: no-repeat; background-size: cover; border-radius: 3px; overflow: hidden; isolation: isolate; transition: transform 180ms ease, box-shadow 180ms ease; }
.category-tile::before { position: absolute; z-index: 0; inset: 0; content: ""; background: rgba(11, 16, 20, 0.6); transition: background 180ms ease; }
.category-tile > * { position: relative; z-index: 1; }
.category-tile:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(23,27,25,0.15); }
.category-tile:hover::before { background: rgba(11, 16, 20, 0.47); }
.category-tile-scaffolds { background-image: url("assets/products/20-altrex-partij.jpg"); background-position: center 54%; }
.category-tile-barrels { background-image: url("assets/products/09-wijnvaten-partij.jpg"); background-position: center; }
.category-tile-fencing { background-image: url("assets/products/06-gaasmatten.jpg"); background-position: center; }
.category-tile-other { background-image: url("assets/products/07-duplo.jpg"); background-position: center; }
.category-tile-count { margin-bottom: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.82; }
.category-tile h3 { max-width: 230px; margin: auto 0; font-family: var(--display); font-size: 33px; line-height: 0.92; text-align: center; text-transform: uppercase; }
.category-tile-link { margin-top: 0; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.category-tile-link svg { width: 15px; height: 15px; }
.category-cta { margin-top: 28px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-cta-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.category-cta-copy span { color: var(--muted); font-size: 12px; }
.category-cta-copy strong { color: var(--ink); font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.category-cta .button { flex: 0 0 auto; padding: 12px 16px; font-size: 12px; }
.category-cta .button svg { width: 16px; height: 16px; }

.subpage-hero { position: relative; min-height: 600px; display: flex; color: var(--white); overflow: hidden; isolation: isolate; }
.subpage-hero-image, .subpage-hero-shade { position: absolute; inset: 0; }
.subpage-hero-image { z-index: -2; background-position: center; background-size: cover; background-repeat: no-repeat; }
.subpage-hero-shade { z-index: -1; background: rgba(12, 16, 19, 0.62); }
.sale-hero .subpage-hero-image { background-image: url("assets/products/12-altrex-combi.jpg"); background-position: center 58%; }
.buy-hero .subpage-hero-image { background-image: url("assets/products/17-altrex-10-2.jpg"); background-position: center 54%; }
.subpage-hero-content { padding-top: 96px; padding-bottom: 90px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.subpage-hero h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: 86px; font-weight: 800; line-height: 0.86; text-transform: uppercase; }
.subpage-hero-content > p:not(.eyebrow) { max-width: 630px; margin: 26px 0 30px; color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.55; }
.category-hero .subpage-hero-image { background-position: center 52%; }
.category-detail-section { padding-block: 92px 104px; background: var(--paper); }
.category-detail-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 84px; align-items: start; }
.category-detail-copy h2 { margin: 0; font-family: var(--display); font-size: 58px; line-height: 0.9; text-transform: uppercase; }
.category-detail-copy > p:not(.eyebrow) { max-width: 620px; margin: 23px 0 0; color: var(--muted); font-size: 15px; }
.category-detail-copy .lead { color: var(--ink); font-size: 18px; line-height: 1.55; }
.category-detail-points { margin: 30px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; color: var(--muted); font-size: 13px; }
.category-detail-points li { display: flex; align-items: flex-start; gap: 10px; }
.category-detail-points svg { flex: 0 0 auto; width: 18px; height: 18px; padding: 3px; color: var(--white); background: var(--green); border-radius: 50%; }
.category-detail-media { min-height: 460px; overflow: hidden; background: #e0e6e9; }
.category-detail-media img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.subpage-certificate { padding-block: 78px; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.subpage-certificate-inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: 64px; align-items: center; }
.subpage-certificate-copy h2 { max-width: 540px; margin: 0; font-family: var(--display); font-size: 52px; line-height: 0.94; text-transform: uppercase; }
.subpage-certificate-copy p:not(.eyebrow) { max-width: 560px; margin: 20px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.subpage-certificate-proof { min-width: 0; display: grid; grid-template-columns: minmax(130px, 0.7fr) minmax(180px, 1.3fr); gap: 26px; align-items: center; }
.subpage-certificate-card { width: 100%; max-width: 210px; justify-self: center; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(23,27,25,0.1); }
.subpage-certificate-badges { min-width: 0; display: grid; gap: 16px; align-items: center; }
.subpage-certificate-badges img { width: 100%; height: auto; max-height: 95px; object-fit: contain; object-position: left center; }
.category-products { padding-block: 92px; background: #eef1f3; }
.category-products .section-heading { margin-bottom: 36px; }
.category-products .product-grid { margin-top: 0; }
.subpage-proof { color: var(--white); background: var(--green); }
.subpage-proof-grid { min-height: 108px; display: grid; grid-template-columns: repeat(4, 1fr); }
.subpage-proof-grid > div { padding: 20px 26px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.18); }
.subpage-proof-grid > div:last-child { border-right: 1px solid rgba(255,255,255,0.18); }
.subpage-proof strong { font-family: var(--display); font-size: 28px; line-height: 1; }
.subpage-proof span { margin-top: 6px; color: rgba(255,255,255,0.68); font-size: 11px; }
.conversion-band { padding-block: 84px; color: var(--white); background: var(--ink); }
.conversion-band-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 54px; }
.conversion-band h2 { margin: 0; font-family: var(--display); font-size: 55px; line-height: 0.92; text-transform: uppercase; }
.conversion-band p:not(.eyebrow) { max-width: 560px; margin: 18px 0 0; color: rgba(255,255,255,0.72); font-size: 14px; }
.conversion-band-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.breadcrumb { padding-top: 28px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--green); font-weight: 700; }
.breadcrumb svg { width: 14px; height: 14px; }
.product-detail-section { padding-top: 58px; background: var(--paper); }
.product-detail-layout { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); gap: 84px; align-items: start; }
.product-detail-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e8ecee; }
.product-detail-media::after { content: ""; position: absolute; top: 20px; right: 20px; bottom: 20px; left: 20px; border: 2px solid rgba(244,196,48,0.8); pointer-events: none; }
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery { min-width: 0; }
.product-gallery-thumbnails { margin-top: 12px; padding-bottom: 4px; display: flex; gap: 9px; overflow-x: auto; scrollbar-width: thin; }
.product-gallery-thumb { width: 82px; height: 64px; flex: 0 0 auto; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 2px; background: #e8ecee; cursor: pointer; }
.product-gallery-thumb.is-active { border-color: var(--green); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy h1 { margin: 0; font-family: var(--display); font-size: 68px; font-weight: 800; line-height: 0.9; text-transform: uppercase; }
.product-detail-description { max-width: 610px; margin: 24px 0 14px; color: var(--muted); font-size: 16px; }
.product-detail-price { margin-top: 14px; font-family: var(--display); font-size: 46px; font-weight: 800; line-height: 1; }
.product-inline-info { max-width: 680px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.product-inline-info .eyebrow { margin-bottom: 5px; }
.product-inline-info h2 { margin: 0; font-family: var(--display); font-size: 30px; line-height: 0.98; text-transform: uppercase; }
.product-inline-subtitle { margin: 19px 0 8px; color: var(--ink-soft); font-family: var(--display); font-size: 18px; line-height: 1; text-transform: uppercase; }
.product-inline-subtitle-specs { margin-top: 24px; }
.product-ad-text { color: var(--muted); font-size: 12px; line-height: 1.7; white-space: pre-line; overflow-wrap: anywhere; }
.product-inline-info .product-spec-list { margin-top: 15px; gap: 9px; font-size: 12px; }
.product-trailer-note { margin: 20px 0 0; padding: 12px 14px; display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); background: #eef1f3; border-left: 3px solid var(--green); font-size: 12px; line-height: 1.5; }
.product-trailer-note[hidden] { display: none; }
.product-trailer-note svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--green); }
.product-detail-meta { margin: 22px 0 28px; display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 12px; }
.product-detail-meta span { display: inline-flex; align-items: center; gap: 7px; }
.product-detail-meta svg { width: 16px; height: 16px; color: var(--green); }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-detail-note { margin: 20px 0 0; display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 11px; }
.product-detail-note svg { flex: 0 0 auto; width: 15px; height: 15px; }
.product-info-section { padding-block: 84px; background: #eef1f3; }
.product-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-info-panel { padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.product-info-panel h2 { margin: 0; font-family: var(--display); font-size: 40px; line-height: 0.94; text-transform: uppercase; }
.product-info-panel-accent { color: var(--white); background: var(--green); border-color: var(--green); }
.product-info-panel-accent > svg { width: 32px; height: 32px; margin-bottom: 24px; color: var(--yellow); }
.product-info-panel-accent p { margin: 18px 0 25px; color: rgba(255,255,255,0.75); font-size: 14px; }
.product-info-panel-accent .text-link { color: var(--white); }
.product-spec-list { margin: 24px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; color: var(--muted); font-size: 13px; }
.product-spec-list li { display: flex; align-items: flex-start; gap: 9px; }
.product-spec-list svg { flex: 0 0 auto; width: 18px; height: 18px; padding: 3px; color: var(--white); background: var(--green); border-radius: 50%; }
.related-section { background: var(--paper); }
.related-section .catalog-heading { margin-bottom: 38px; }
.related-section .catalog-heading > .text-link { justify-self: end; align-self: end; }
.request-section { padding-block: 110px; color: var(--white); background: var(--green); }
.request-layout { display: grid; grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr); gap: 84px; align-items: start; }
.request-copy h2 { margin: 0; font-family: var(--display); font-size: 62px; line-height: 0.92; text-transform: uppercase; }
.request-copy > p:not(.eyebrow) { max-width: 470px; margin: 24px 0 30px; color: rgba(255,255,255,0.74); font-size: 14px; }
.request-side-note { max-width: 460px; padding-top: 22px; display: flex; gap: 12px; border-top: 1px solid rgba(255,255,255,0.2); }
.request-side-note > svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--yellow); }
.request-side-note div { display: flex; flex-direction: column; gap: 5px; }
.request-side-note strong { font-size: 13px; }
.request-side-note span { color: rgba(255,255,255,0.7); font-size: 12px; }
.request-form { padding: 30px; color: var(--ink); background: var(--white); border-radius: 4px; }
.request-form label:not(.checkbox-label):not(.file-drop) { display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form .form-row + .form-row, .request-form > label:not(.checkbox-label):not(.file-drop) { margin-top: 14px; }
.request-form input:not([type="checkbox"]):not([type="file"]), .request-form select, .request-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 2px; outline: 0; color: var(--ink); background: var(--paper); font-size: 13px; font-weight: 500; }
.request-form textarea { resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(100,113,121,0.16); }
.checkbox-label { margin: 18px 0; display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.checkbox-label input { margin-top: 2px; accent-color: var(--green); }
.request-form > .button { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.form-success { margin-top: 18px; padding: 14px; display: flex; flex-direction: column; gap: 4px; color: var(--green); background: #e8eef1; border-left: 3px solid var(--green); font-size: 12px; }
.form-success svg { width: 20px; height: 20px; margin-bottom: 3px; }
.file-drop { min-height: 78px; margin-top: 14px; padding: 14px; display: flex; align-items: center; gap: 12px; border: 1px dashed var(--green); border-radius: 3px; color: var(--green); background: #f1f4f6; cursor: pointer; }
.file-drop > svg { width: 23px; height: 23px; }
.file-drop span { display: flex; flex-direction: column; gap: 2px; }
.file-drop strong { font-size: 12px; }
.file-drop small { color: var(--muted); font-size: 10px; font-weight: 500; }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.photo-preview { margin-top: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.photo-preview:empty { display: none; }
.photo-preview-item { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); }
.photo-preview-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.photo-preview-item span { display: block; padding: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 9px; }
.photo-error { grid-column: 1 / -1; margin: 0; color: var(--danger); font-size: 11px; }
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.faq-grid details { padding: 20px; border-top: 2px solid var(--yellow); background: var(--paper); }
.faq-grid summary { cursor: pointer; font-family: var(--display); font-size: 23px; font-weight: 700; line-height: 1; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; float: right; color: var(--green); font-family: var(--body); font-size: 20px; }
.faq-grid details[open] summary::after { content: "-"; }
.faq-grid details p { margin: 15px 0 0; color: var(--muted); font-size: 12px; }

.chat-widget { position: fixed; z-index: 180; right: 22px; bottom: 22px; }
.chat-launcher { min-height: 48px; padding: 12px 17px; display: inline-flex; align-items: center; gap: 8px; border: 0; border-radius: 3px; color: var(--ink); background: var(--yellow); box-shadow: 0 8px 22px rgba(23,27,25,0.2); font-size: 13px; font-weight: 800; cursor: pointer; }
.chat-launcher svg { width: 18px; height: 18px; }
.chat-panel { position: absolute; right: 0; bottom: 60px; width: min(370px, calc(100vw - 28px)); overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--white); box-shadow: 0 18px 45px rgba(23,27,25,0.2); }
.chat-header { padding: 16px; display: flex; justify-content: space-between; align-items: flex-start; color: var(--white); background: var(--ink); }
.chat-header > div { display: flex; flex-direction: column; gap: 3px; }
.chat-header strong { font-family: var(--display); font-size: 23px; line-height: 1; }
.chat-header span { color: rgba(255,255,255,0.64); font-size: 10px; }
.chat-close { width: 32px; height: 32px; color: var(--white); }
.chat-close svg { width: 18px; height: 18px; }
.chat-messages { max-height: 240px; padding: 15px; display: flex; flex-direction: column; gap: 9px; overflow-y: auto; background: var(--paper); }
.chat-message { max-width: 86%; padding: 9px 11px; border-radius: 3px; font-size: 12px; line-height: 1.45; }
.chat-message-bot { color: var(--ink); background: var(--white); border: 1px solid var(--line); align-self: flex-start; }
.chat-message-user { color: var(--ink); background: var(--yellow); align-self: flex-end; }
.chat-quick-replies { padding: 10px 15px 0; display: flex; flex-wrap: wrap; gap: 6px; background: var(--paper); }
.chat-quick-replies button { padding: 6px 8px; border: 1px solid var(--line); border-radius: 2px; color: var(--green); background: var(--white); font-size: 10px; font-weight: 700; cursor: pointer; }
.chat-form { padding: 12px 15px; display: flex; gap: 6px; background: var(--paper); }
.chat-form input { min-width: 0; flex: 1; padding: 10px; border: 1px solid var(--line); border-radius: 2px; outline: 0; background: var(--white); font-size: 12px; }
.chat-form input:focus { border-color: var(--green); }
.chat-form button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 2px; color: var(--ink); background: var(--yellow); cursor: pointer; }
.chat-form button svg { width: 16px; height: 16px; }
.chat-whatsapp { padding: 11px 15px; display: flex; align-items: center; gap: 7px; border-top: 1px solid var(--line); color: var(--green); background: var(--white); font-size: 11px; font-weight: 800; }
.chat-whatsapp svg { width: 15px; height: 15px; }

@keyframes hero-enter {
  from { opacity: 0.6; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  .main-nav { gap: 20px; }
  .hero h1 { font-size: 80px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-copy { padding-left: 48px; }
  .process-layout { gap: 55px; }
  .about-layout { gap: 55px; }
  .contact-layout { gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-bar { display: none; }
  .site-header { height: 70px; }
  .brand { height: 56px; gap: 8px; }
  .brand img { width: 50px; height: 50px; }
  .brand-name small { font-size: 8px; }
  .brand-name strong { font-size: 22px; }
  .icon-button { display: grid; }
  .main-nav {
    position: fixed;
    z-index: 120;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 44px 22px 90px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) { padding: 16px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 28px; }
  .nav-category-menu-wrap { border-bottom: 1px solid var(--line); }
  .nav-category-trigger { width: 100%; min-height: 66px; padding: 16px 4px; justify-content: space-between; font-family: var(--display); font-size: 28px; line-height: 1; }
  .nav-category-links { position: static; width: 100%; margin: 0 0 15px; padding: 5px; box-shadow: none; }
  .nav-category-links a { min-height: 42px; padding: 10px; font-family: var(--body); font-size: 13px; }
  .nav-cta { margin-top: 24px; justify-content: center; }
  .hero { min-height: max(520px, calc(100vh - 164px)); max-height: none; }
  .hero-photo { background-position: center 42%; background-size: 100% auto; }
  .hero-shade { background: rgba(12,16,19,0.67); }
  .hero-inner { padding-top: 56px; padding-bottom: 44px; justify-content: flex-end; }
  .hero h1 { font-size: 66px; line-height: 0.84; }
  .hero-company-type { margin-bottom: 9px; font-size: 13px; }
  .hero-copy { max-width: 540px; margin-top: 16px; font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { flex: 1; padding-inline: 12px; }
  .rating-line { margin-top: 20px; font-size: 11px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 96px; padding: 18px 16px; border-bottom: 1px solid rgba(255,255,255,0.17); }
  .trust-item strong { font-size: 25px; }
  .certificate-showcase { padding-block: 72px; }
  .certificate-showcase-layout { grid-template-columns: 1fr; gap: 42px; }
  .certificate-showcase-media { width: min(100%, 360px); }
  .certificate-showcase-copy h2 { font-size: 46px; }
  .certificate-showcase-copy .lead { font-size: 17px; }
  .subpage-certificate { padding-block: 64px; }
  .subpage-certificate-inner { grid-template-columns: 1fr; gap: 38px; }
  .subpage-certificate-copy h2 { font-size: 46px; }
  .subpage-certificate-proof { grid-template-columns: minmax(120px, 0.75fr) minmax(160px, 1.25fr); }
  .section { padding-block: 78px; }
  .section-heading h2,
  .feature-copy h2,
  .about-copy h2,
  .contact-copy h2 { font-size: 44px; }
  .catalog-heading { grid-template-columns: 1fr; gap: 22px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .filter-group { display: grid; grid-template-columns: repeat(2, 1fr); }
  .filter-button { width: 100%; }
  .search-field { width: 100%; }
  .catalog-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-tile { min-height: 318px; padding: 20px; }
  .category-tile h3 { font-size: 29px; }
  .category-tile p { font-size: 11px; }
  .product-card-body { min-height: 220px; }
  .feature-band { min-height: 0; grid-template-columns: 1fr; }
  .feature-image { min-height: 480px; }
  .feature-copy { padding: 62px 20px 68px; }
  .process-layout { grid-template-columns: 1fr; gap: 42px; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .about-section { padding-block: 84px; }
  .about-layout { grid-template-columns: 1fr; gap: 62px; }
  .about-media { min-height: 520px; margin-right: 18px; }
  .about-media img { height: 520px; }
  .about-stamp { right: -20px; bottom: -26px; width: 118px; height: 118px; }
  .about-stamp strong { font-size: 36px; }
  .about-copy .lead { font-size: 17px; }
  .category-detail-layout { grid-template-columns: 1fr; gap: 44px; }
  .category-detail-copy h2 { font-size: 48px; }
  .category-detail-media, .category-detail-media img { min-height: 360px; }
  .contact-section { padding-block: 78px; }
  .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .contact-actions .button { flex: 1 1 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-certificate-media { width: 92px; height: 123px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.18);
    background: var(--ink);
  }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); font-size: 13px; font-weight: 800; }
  .mobile-contact-bar a + a { color: var(--ink); background: var(--yellow); }
  .mobile-contact-bar svg { width: 18px; height: 18px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 56px; }
  .section-heading h2,
  .feature-copy h2,
  .about-copy h2,
  .contact-copy h2 { font-size: 39px; }
  .product-card h3 { font-size: 24px; }
  .product-card-footer { align-items: flex-start; flex-direction: column; }
  .feature-image { min-height: 400px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-cta { align-items: flex-start; flex-direction: column; gap: 14px; }
  .category-cta .button { width: auto; }
}

@media (max-width: 340px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
}

@media (max-width: 980px) {
  .subpage-hero h1 { font-size: 72px; }
  .product-detail-layout { gap: 48px; }
  .request-layout { gap: 50px; }
  .conversion-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .route-grid, .faq-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 280px; padding: 24px; }
  .route-card-icon { margin-bottom: 20px; }
  .route-card h3 { font-size: 31px; }
  .subpage-hero { min-height: 610px; }
  .subpage-hero-content { padding-top: 64px; padding-bottom: 50px; justify-content: flex-end; }
  .subpage-hero h1 { font-size: 58px; }
  .subpage-hero-content > p:not(.eyebrow) { margin-top: 20px; font-size: 15px; }
  .subpage-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-proof-grid > div { min-height: 92px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .conversion-band { padding-block: 64px; }
  .conversion-band h2 { font-size: 45px; }
  .conversion-band-actions { width: 100%; }
  .conversion-band-actions .button { flex: 1 1 100%; }
  .breadcrumb { padding-top: 20px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .product-detail-section { padding-top: 36px; }
  .product-detail-layout, .product-info-grid, .request-layout { grid-template-columns: 1fr; gap: 42px; }
  .product-detail-copy h1 { font-size: 52px; }
  .product-detail-price { font-size: 38px; }
  .product-detail-actions .button { flex: 1 1 100%; }
  .product-info-section { padding-block: 64px; }
  .product-info-panel { padding: 26px; }
  .product-info-panel h2 { font-size: 34px; }
  .related-section .catalog-heading > .text-link { justify-self: start; align-self: start; }
  .request-section { padding-block: 76px; }
  .request-copy h2 { font-size: 49px; }
  .request-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .photo-preview { grid-template-columns: repeat(4, 1fr); }
  .chat-widget { right: 14px; bottom: 78px; }
  .chat-launcher { min-height: 44px; padding: 10px 13px; }
  .chat-panel { bottom: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Manager */
.manager-page { min-height: 100vh; background: #edf1f2; }
.manager-auth[hidden], .manager-dashboard[hidden], .manager-empty[hidden], .manager-toast[hidden], .manager-logout[hidden] { display: none; }
/* Inlogvelden die per modus verborgen worden (online: geen 'wachtwoord herhalen'; lokaal: geen e-mail). */
label[data-password-confirm][hidden], label[data-manager-email-field][hidden] { display: none !important; }
.manager-header { position: sticky; z-index: 120; top: 0; border-bottom: 1px solid rgba(23, 27, 25, 0.16); background: rgba(255, 255, 255, 0.98); }
.manager-header-inner { width: min(calc(100% - 40px), 1320px); min-height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.manager-header .brand { height: 60px; }
.manager-header .brand img { width: 52px; height: 52px; }
.manager-header-actions, .manager-title-actions, .manager-row-actions { display: flex; align-items: center; gap: 8px; }
.manager-back-link, .icon-text-button { min-height: 40px; padding: 8px 11px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 3px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 800; cursor: pointer; }
.manager-back-link:hover, .icon-text-button:hover { border-color: var(--green); color: var(--green); }
.manager-back-link svg, .icon-text-button svg { width: 16px; height: 16px; }
.manager-logout.icon-button, .manager-editor .icon-button, .manager-catalog .icon-button { width: 40px; height: 40px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 3px; background: var(--white); cursor: pointer; }
.manager-logout.icon-button:hover, .manager-editor .icon-button:hover, .manager-catalog .icon-button:hover { color: var(--green); border-color: var(--green); }
.manager-editor .icon-button svg, .manager-catalog .icon-button svg, .manager-logout.icon-button svg { width: 17px; height: 17px; }
.manager-main { width: min(calc(100% - 40px), 1320px); margin-inline: auto; }
.manager-auth { min-height: calc(100vh - 76px); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); align-items: center; gap: clamp(44px, 8vw, 140px); padding: 70px 8%; }
.manager-auth-copy { position: relative; padding: 54px 0 54px 38px; }
.manager-auth-copy::before { position: absolute; top: 0; bottom: 0; left: 0; width: 7px; content: ""; background: var(--yellow); }
.manager-auth-copy h1 { max-width: 570px; margin: 0; font-family: var(--display); font-size: clamp(64px, 8vw, 118px); font-weight: 800; line-height: 0.82; text-transform: uppercase; }
.manager-auth-copy > p:last-child { max-width: 500px; margin: 26px 0 0; color: var(--ink-soft); font-size: 16px; }
.manager-auth-panel { max-width: 440px; padding: 34px; border: 1px solid var(--line); border-top: 5px solid var(--green); background: var(--white); box-shadow: 0 18px 36px rgba(23, 27, 25, 0.08); }
.manager-auth-mark { width: 44px; height: 44px; margin-bottom: 24px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 3px; }
.manager-auth-mark svg { width: 21px; height: 21px; }
.manager-auth-panel h2, .manager-panel-heading h2 { margin: 0; font-family: var(--display); font-size: 38px; line-height: 0.9; text-transform: uppercase; }
.manager-auth-panel > p:not(.eyebrow):not(.manager-local-note) { margin: 10px 0 24px; color: var(--muted); font-size: 13px; }
.manager-auth-panel form, .manager-product-form { display: grid; gap: 14px; }
.manager-auth-panel label, .manager-product-form label { display: grid; gap: 6px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.manager-auth-panel input, .manager-product-form input:not([type="file"]), .manager-product-form select, .manager-product-form textarea, .manager-search input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 3px; outline: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 13px; font-weight: 500; }
.manager-auth-panel input:focus, .manager-product-form input:focus, .manager-product-form select:focus, .manager-product-form textarea:focus, .manager-search input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(100, 113, 121, 0.14); }
.manager-auth-panel .button, .manager-product-form .button { width: 100%; margin-top: 4px; justify-content: center; }
.manager-form-message { min-height: 18px; margin: 0; color: var(--danger); font-size: 11px; font-weight: 700; line-height: 1.4; }
.manager-local-note { margin: 20px 0 0; display: flex; gap: 8px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.manager-local-note svg { width: 17px; flex: 0 0 auto; color: var(--green); }
.manager-dashboard { padding: 58px 0 76px; }
.manager-title-row { margin-bottom: 32px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.manager-title-row h1 { margin: 0; font-family: var(--display); font-size: 58px; line-height: 0.88; text-transform: uppercase; }
.manager-title-row p:last-child { max-width: 590px; margin: 11px 0 0; color: var(--muted); font-size: 13px; }
.manager-title-actions { flex-wrap: wrap; justify-content: flex-end; }
.file-import { position: relative; overflow: hidden; }
.file-import input { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; }
.manager-stats { margin-bottom: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); background: var(--white); }
.manager-stats > div { min-height: 108px; padding: 18px 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.manager-stats > div:last-child { border-right: 0; }
.manager-stats strong { font-family: var(--display); font-size: 48px; line-height: 0.8; }
.manager-stats span { margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.manager-workspace { display: grid; grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr); gap: 24px; align-items: start; }
.manager-editor, .manager-catalog { border: 1px solid var(--line); background: var(--white); }
.manager-editor { position: sticky; top: 100px; padding: 26px; }
.manager-catalog { padding: 26px; }
.manager-panel-heading { margin-bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.manager-panel-heading .eyebrow { margin-bottom: 8px; }
.manager-cancel-edit[hidden] { display: none; }
.manager-image-field { position: relative; min-height: 170px; display: grid; place-items: center; overflow: hidden; border: 1px dashed #aeb8bd; background: #f1f5f7; }
.manager-image-field > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.manager-image-field > img[hidden], .manager-image-field > div[hidden] { display: none; }
.manager-image-field > div { display: grid; justify-items: center; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.manager-image-field > div svg { width: 30px; height: 30px; color: var(--green); }
.image-select-button { position: absolute; z-index: 1; right: 10px; bottom: 10px; padding: 8px 10px; display: inline-flex !important; border: 1px solid var(--ink); border-radius: 3px; color: var(--white) !important; background: var(--ink); font-size: 10px !important; cursor: pointer; }
.image-select-button:hover { background: var(--green); border-color: var(--green); }
.image-select-button input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.manager-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.manager-product-form textarea { min-height: 94px; resize: vertical; }
.field-optional { color: var(--muted); font-weight: 600; }
.field-help { margin: 0; color: var(--muted); font-size: 10px; font-weight: 600; line-height: 1.45; }
.manager-gallery-editor { display: grid; gap: 9px; padding: 12px; border: 1px solid var(--line); background: var(--paper); }
.manager-gallery-heading { display: flex; align-items: center; justify-content: space-between; color: var(--ink-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.manager-gallery-heading small { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: none; }
.manager-gallery-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(68px, 1fr)); gap: 8px; }
.manager-gallery-thumb { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.manager-gallery-thumb > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.manager-gallery-thumb .icon-button { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 2px; color: var(--white); background: rgba(23, 27, 25, 0.82); cursor: pointer; }
.manager-gallery-thumb .icon-button svg { width: 13px; height: 13px; }
.manager-gallery-main { position: absolute; right: 4px; bottom: 4px; padding: 2px 4px; color: var(--white); background: var(--green); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.manager-gallery-upload { justify-self: start; position: relative; overflow: hidden; }
.manager-gallery-upload input { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; }
.manager-search { width: min(250px, 48%); min-height: 40px; padding: 0 10px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); }
.manager-search svg { width: 16px; height: 16px; color: var(--green); }
.manager-search input { padding: 0; border: 0; background: transparent; box-shadow: none !important; }
.manager-product-list { display: grid; border-top: 1px solid var(--line); }
.manager-product-row { min-height: 112px; padding: 14px 0; display: grid; grid-template-columns: 82px minmax(0, 1fr) auto; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.manager-product-row > img { width: 82px; height: 82px; object-fit: cover; background: var(--paper); }
.manager-product-copy { min-width: 0; }
.manager-product-copy h3 { margin: 5px 0 4px; overflow: hidden; font-family: var(--display); font-size: 24px; line-height: 0.95; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.manager-product-copy strong { color: var(--green); font-size: 12px; }
.manager-product-meta { display: flex; align-items: center; gap: 8px; overflow: hidden; color: var(--muted); font-size: 10px; font-weight: 700; white-space: nowrap; }
.manager-status { padding: 3px 6px; border-radius: 2px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.manager-status.is-published { color: #4e626c; background: #e1e8eb; }
.manager-status.is-draft { color: #755200; background: #f9edbe; }
.manager-source { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 3px; color: var(--green); background: var(--paper); }
.manager-source:hover { border-color: var(--green); }
.manager-source svg { width: 16px; height: 16px; }
.manager-delete-button:hover { color: var(--danger) !important; border-color: var(--danger) !important; }
.manager-empty { padding: 60px 24px; display: grid; justify-items: center; text-align: center; }
.manager-empty svg { width: 34px; height: 34px; color: var(--muted); }
.manager-empty h3 { margin: 12px 0 4px; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.manager-empty p { margin: 0; color: var(--muted); font-size: 12px; }
.manager-danger-zone { margin-top: 28px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.manager-danger-zone > div { display: grid; gap: 3px; }
.manager-danger-zone strong { font-size: 12px; }
.manager-danger-zone span { max-width: 460px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.manager-lock-panel[hidden] { display: none !important; }
.manager-lock-panel { margin-top: 24px; padding: 20px 22px; border: 1px solid var(--line); border-left: 4px solid var(--yellow-dark); border-radius: 3px; background: var(--white); }
.manager-lock-panel.is-locked { border-left-color: #b3261e; background: #fff5f4; }
.manager-lock-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 16px; }
.manager-lock-head h2 { margin: 2px 0 6px; font-size: 18px; }
.manager-lock-status { margin: 0; font-size: 12px; font-weight: 800; color: var(--ink-soft); }
.manager-lock-panel.is-locked .manager-lock-status { color: #b3261e; }
.manager-lock-help { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.manager-lock-message { margin-top: 14px; display: grid; gap: 6px; font-size: 11px; font-weight: 800; color: var(--ink-soft); }
.manager-lock-message textarea { padding: 10px 12px; border: 1px solid var(--line); border-radius: 3px; font: inherit; font-size: 12px; font-weight: 500; resize: vertical; }
.manager-live-note { margin-top: 24px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; border-left: 4px solid var(--yellow-dark); background: #fff9df; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.manager-live-note svg { width: 18px; flex: 0 0 auto; color: var(--yellow-dark); }
.manager-live-note p { margin: 0; }
.manager-toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; max-width: min(360px, calc(100% - 40px)); padding: 12px 16px; border-left: 4px solid var(--yellow); color: var(--white); background: var(--ink); box-shadow: 0 12px 28px rgba(23, 27, 25, 0.18); font-size: 12px; font-weight: 700; }

@media (max-width: 940px) {
  .manager-auth { grid-template-columns: 1fr; gap: 38px; padding-inline: 0; }
  .manager-auth-panel { max-width: 540px; }
  .manager-workspace { grid-template-columns: 1fr; }
  .manager-editor { position: static; }
}

@media (max-width: 680px) {
  .manager-header-inner, .manager-main { width: min(calc(100% - 28px), 1320px); }
  .manager-header .brand-name { display: none; }
  .manager-back-link { font-size: 11px; }
  .manager-auth { min-height: auto; padding-block: 48px; }
  .manager-auth-copy { padding: 36px 0 36px 24px; }
  .manager-auth-copy h1 { font-size: 68px; }
  .manager-auth-panel, .manager-editor, .manager-catalog { padding: 20px; }
  .manager-dashboard { padding-block: 36px 58px; }
  .manager-title-row { align-items: flex-start; flex-direction: column; }
  .manager-title-row h1 { font-size: 48px; }
  .manager-title-actions { justify-content: flex-start; }
  .manager-stats { grid-template-columns: 1fr; }
  .manager-stats > div { min-height: 80px; border-right: 0; border-bottom: 1px solid var(--line); }
  .manager-stats > div:last-child { border-bottom: 0; }
  .manager-panel-heading { align-items: flex-start; flex-direction: column; }
  .manager-search { width: 100%; }
  .manager-form-row { grid-template-columns: 1fr; }
  .manager-product-row { grid-template-columns: 62px minmax(0, 1fr); gap: 12px; }
  .manager-product-row > img { width: 62px; height: 62px; }
  .manager-row-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .manager-product-copy h3 { font-size: 21px; }
  .manager-danger-zone { align-items: flex-start; flex-direction: column; }
}
