/* Tegeloutlet thema — hoofdstijlblad. Kleuren/lettertype volgens de huisstijl
   (zie theme.json voor de kleurenpalet-namen die ook in de bloc-editor verschijnen). */

:root {
  --bg: #F5F6F9;
  --bg-band: #ECEEF3;
  --surface: #FFFFFF;
  --surface-alt: #EFF1F5;
  --border: #E0E3EA;
  --border-strong: #C9CDD8;
  --text: #24262B;
  --text-muted: #7A7A7A;
  --text-faint: #9AA0AC;
  --brand: #3F4AA6;
  --brand-ink: #FFFFFF;
  --brand-hover: #333D8C;
  --brand-soft: #E9EBF7;
  --green: #61CE70;
  --green-ink: #143018;
  --green-soft: #E4F7E7;
  --blue: #6EC1E4;
  --blue-soft: #E6F4FA;
  --sale: #D8483B;
  --sale-soft: #FBE9E7;
  --focus: #3F4AA6;
  --shadow: 0 1px 2px rgba(24,28,40,0.06), 0 8px 20px -12px rgba(24,28,40,0.18);
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
a { color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; }
::selection { background: var(--brand-soft); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- header ---------- */
header.site { background: var(--surface); border-bottom: 1px solid var(--border); }
.topbar { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo img { height: 34px; display: block; }
.logo-text { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 19px; }
.search { flex: 1; max-width: 480px; position: relative; }
.search input {
  width: 100%; padding: 10px 14px 10px 38px; border-radius: 999px; border: 1.5px solid var(--border);
  background: var(--surface-alt); color: var(--text); font-size: 14px; font-family: inherit;
}
.search input:focus { border-color: var(--brand); background: var(--surface); }
.search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); opacity: 0.55; pointer-events: none; }
.top-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; font-size: 13.5px; color: var(--text-muted); }
.top-actions .tel { font-weight: 800; color: var(--text); font-family: "Poppins", sans-serif; }
nav.catnav { border-top: 1px solid var(--border); }
.catnav ul { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; gap: 4px; list-style: none; overflow-x: auto; }
.catnav a { display: block; padding: 11px 14px; font-size: 14px; font-weight: 700; color: var(--text-muted); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; }
.catnav .current-menu-item > a, .catnav a:hover { color: var(--brand); border-bottom-color: var(--brand); }

#site-content { max-width: 1280px; margin: 0 auto; padding: 22px 24px 80px; }
.page-wrap { max-width: 1280px; margin: 0 auto; }

/* ---------- breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--text-faint); margin-bottom: 10px; }
.crumb a { color: var(--text-faint); text-decoration: none; }
.crumb a:hover { color: var(--brand); }
.crumb .sep { margin: 0 4px; }

/* ---------- overview header ---------- */
.page-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 4px; }
.page-head h1 { font-size: 26px; }
.result-count { color: var(--text-muted); font-size: 14.5px; }
.intro-line { color: var(--text-muted); font-size: 14.5px; max-width: 62ch; margin-top: 6px; margin-bottom: 18px; }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: var(--brand-soft); color: var(--brand); border-radius: 999px; padding: 5px 8px 5px 12px; font-size: 13px; font-weight: 700; border: none; text-decoration: none; }
.chip button, .chip .chip-x { background: none; border: none; color: inherit; cursor: pointer; display: flex; padding: 2px; opacity: 0.75; }
.chip:hover .chip-x { opacity: 1; }
.clear-all { font-size: 13px; font-weight: 700; color: var(--text-muted); background: none; border: none; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.clear-all:hover { color: var(--sale); }

.sortbox { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.sortbox select { font-family: inherit; font-size: 13.5px; font-weight: 700; color: var(--text); border: 1.5px solid var(--border); border-radius: var(--radius-s); padding: 7px 10px; background: var(--surface); }

.mobile-filter-btn { display: none; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--border-strong); border-radius: var(--radius-s); padding: 9px 14px; font-weight: 700; font-size: 13.5px; color: var(--text); cursor: pointer; }

/* ---------- layout: filters + grid ---------- */
.layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
aside.filters { position: sticky; top: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 4px 18px 10px; }
.fgroup { padding: 14px 0; border-bottom: 1px solid var(--border); }
.fgroup:last-child { border-bottom: none; }
.fgroup h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-family: "Poppins", sans-serif; font-weight: 700; margin-bottom: 10px; }
.fopt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 14px; cursor: pointer; user-select: none; }
.fopt input { accent-color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
.fopt .count { margin-left: auto; color: var(--text-faint); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.swatchlist { display: flex; flex-wrap: wrap; gap: 8px; }
.swopt { position: relative; }
.swopt input { position: absolute; opacity: 0; width: 30px; height: 30px; cursor: pointer; margin: 0; }
.swopt span { display: block; width: 30px; height: 30px; border-radius: 8px; border: 2px solid var(--border); box-shadow: inset 0 0 0 2px var(--surface); }
.swopt input:checked + span { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft), inset 0 0 0 2px var(--surface); }
.swopt input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 2px; }
.togglerow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.togglerow span.label { font-size: 14px; font-weight: 600; }
.switch { position: relative; display: inline-block; width: 38px; height: 22px; flex-shrink: 0; cursor: pointer; }
.switch input { opacity: 0; width: 100%; height: 100%; margin: 0; position: absolute; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--border-strong); border-radius: 999px; transition: background 0.15s; }
.switch .knob { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: var(--surface); border-radius: 50%; transition: transform 0.15s; box-shadow: 0 1px 2px rgba(0,0,0,0.25); }
.switch input:checked + .track { background: var(--green); }
.switch input:checked ~ .knob { transform: translateX(16px); }

/* ---------- product grid / kaarten ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.tgo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s; }
.tgo-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: translateY(-2px); }
.tgo-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.tgo-card__thumb { position: relative; aspect-ratio: 1 / 1; background: var(--surface-alt); }
.tgo-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tgo-swatch { display: block; width: 100%; height: 100%; }
.tgo-badge-sale { position: absolute; top: 10px; left: 10px; background: var(--sale); color: #fff; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 12px; padding: 4px 9px; border-radius: 999px; line-height: 1.3; }
.tgo-badge-outlet { position: absolute; top: 10px; right: 10px; background: rgba(20,22,27,0.72); color: #fff; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 8px; border-radius: 5px; }
.tgo-card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tgo-card__sku { font-size: 11.5px; color: var(--text-faint); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.tgo-card__name { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.tgo-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 1px; }
.tgo-tag { font-size: 11px; font-weight: 700; color: var(--text-muted); background: var(--surface-alt); border-radius: 5px; padding: 2px 6px; display: inline-flex; align-items: center; gap: 3px; }
.tgo-tag--on { color: var(--blue); background: var(--blue-soft); }
.tgo-tag--brand { color: var(--brand); background: var(--brand-soft); }
.tgo-card__price { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tgo-price-was { font-size: 12.5px; color: var(--text-faint); text-decoration: line-through; }
.tgo-price-now { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 19px; color: var(--brand); }
.tgo-price-unit { font-size: 11.5px; color: var(--text-faint); }
.tgo-card__pack { font-size: 11.5px; color: var(--text-faint); }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state h3 { margin-bottom: 8px; color: var(--text); }
.empty-state button { margin-top: 14px; background: var(--brand); color: var(--brand-ink); border: none; padding: 10px 18px; border-radius: var(--radius-s); font-weight: 700; cursor: pointer; }

.grid-loading { opacity: 0.45; pointer-events: none; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.pagination button { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-s); padding: 9px 16px; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.pagination button.current { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.pagination button:disabled { opacity: 0.4; cursor: default; }

/* ---------- detail page ---------- */
.detail-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,0.8fr); gap: 40px; align-items: start; }
.gallery-main { aspect-ratio: 1/1; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); background: var(--surface-alt); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumbs .thumb-sm { width: 62px; height: 62px; border-radius: var(--radius-s); overflow: hidden; border: 2px solid var(--border); cursor: pointer; background: var(--surface-alt); padding: 0; }
.gallery-thumbs .thumb-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs .thumb-sm.active { border-color: var(--brand); }

.buybox { position: sticky; top: 16px; }
.kicker { font-size: 12.5px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; display: flex; gap: 10px; align-items: center; }
.kicker .sku2 { color: var(--text-faint); font-weight: 700; text-transform: none; letter-spacing: 0; }
.pd-title { font-size: 25px; margin-bottom: 12px; }
.pd-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-tags .ptag { font-size: 11.5px; font-weight: 700; color: var(--text-muted); background: var(--surface-alt); border-radius: 5px; padding: 3px 8px; display: inline-flex; align-items: center; gap: 4px; }
.pd-tags .ptag.on { color: var(--blue); background: var(--blue-soft); }

.price-card { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 18px 20px; margin-bottom: 16px; }
.price-card .disc { display: inline-block; background: var(--sale); color: #fff; font-weight: 800; font-size: 12.5px; padding: 3px 9px; border-radius: 999px; margin-bottom: 10px; font-family: "Poppins", sans-serif; }
.price-main { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-main .now { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 34px; color: var(--brand); }
.price-main .was { font-size: 16px; color: var(--text-faint); text-decoration: line-through; }
.price-main .per { font-size: 13.5px; color: var(--text-muted); }
.pack-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.cta-row { display: flex; gap: 10px; margin-top: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.cta-row .btn { flex: 1; }
.btn { border: none; border-radius: var(--radius-s); padding: 13px 18px; font-weight: 800; font-size: 14.5px; cursor: pointer; font-family: "Poppins", sans-serif; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-primary { background: var(--brand); color: var(--brand-ink); flex: 1; justify-content: center; }
.btn-primary:hover { background: var(--brand-hover); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.not-sellable { display: flex; gap: 10px; align-items: flex-start; background: var(--blue-soft); border-radius: var(--radius-m); padding: 10px 12px; font-size: 12.5px; color: var(--text); margin-top: 14px; }
.not-sellable svg { flex-shrink: 0; margin-top: 1px; color: var(--blue); }

.specs { margin-top: 44px; }
.specs h2 { font-size: 19px; margin-bottom: 14px; }
.spec-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; border-top: 1px solid var(--border); }
.spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-row dt { color: var(--text-muted); margin: 0; }
.spec-row dd { margin: 0; font-weight: 700; text-align: right; }
.spec-row-wide { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 6px; }
.spec-row-wide dd { text-align: left; display: flex; flex-direction: column; gap: 3px; }
.spec-pak-line { font-weight: 700; font-size: 13.5px; }

/* ---------- project calculator ---------- */
.project-calc { max-width: 680px; margin: 56px 0 0; padding-top: 40px; border-top: 1px solid var(--border); }
.project-calc h2 { font-size: 21px; margin-bottom: 6px; }
.calc-intro { color: var(--text-muted); font-size: 14.5px; margin: 0 0 22px; max-width: 56ch; }
.calc-section { margin-bottom: 22px; }
.calc-section h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-family: "Poppins", sans-serif; font-weight: 700; margin-bottom: 10px; }
.calc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field input { width: 100%; padding: 11px 12px; border-radius: var(--radius-s); border: 1.5px solid var(--border); font-family: inherit; font-size: 14.5px; background: var(--surface); color: var(--text); font-variant-numeric: tabular-nums; }
.field input:focus { border-color: var(--brand); }

.format-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.format-opt { padding: 10px 16px; border-radius: var(--radius-s); border: 1.5px solid var(--border); background: var(--surface); color: var(--text); font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; }
.format-opt:hover { border-color: var(--border-strong); }
.format-opt.selected { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.custom-format-row { margin-top: 14px; }

.legrichting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.leg-opt { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 10px; border-radius: var(--radius-m); border: 1.5px solid var(--border); background: var(--surface); color: var(--text-muted); cursor: pointer; font-family: inherit; }
.leg-opt:hover { border-color: var(--border-strong); }
.leg-opt.selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.leg-opt svg { color: var(--green); }
.leg-opt.selected svg { color: var(--brand); }
.leg-name { font-weight: 800; font-size: 13.5px; color: var(--text); font-family: "Poppins", sans-serif; }
.leg-opt.selected .leg-name { color: var(--brand); }
.leg-verlies { font-size: 12px; }

.calc-note { display: flex; gap: 9px; align-items: flex-start; background: var(--green-soft); color: var(--green-ink); border-radius: var(--radius-m); padding: 11px 13px; font-size: 13px; margin-bottom: 22px; }
.calc-note svg { flex-shrink: 0; margin-top: 2px; }

.calc-advanced { margin-bottom: 22px; border: 1px solid var(--border); border-radius: var(--radius-m); padding: 12px 16px; }
.calc-advanced summary { cursor: pointer; font-weight: 700; font-size: 14px; }
.calc-advanced-hint { font-size: 12.5px; color: var(--text-muted); margin: 10px 0; }
.calc-advanced[open] summary { margin-bottom: 4px; }

.calc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.calc-actions .btn-primary { flex: 0 0 auto; }

.calc-result { margin-top: 18px; border-radius: var(--radius-l); padding: 18px 20px; background: var(--surface-alt); border: 1px solid var(--border); }
.calc-result.error { background: var(--sale-soft); color: var(--sale); font-weight: 700; border-color: transparent; }
.calc-result-head { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.calc-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; }
.calc-result-grid > div { display: flex; flex-direction: column; gap: 4px; }
.calc-result-grid dt { font-size: 12px; color: var(--text-muted); margin: 0; }
.calc-result-grid dd { margin: 0; font-weight: 800; font-family: "Poppins", sans-serif; font-size: 17px; font-variant-numeric: tabular-nums; }
.calc-result-grid .total { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--border); }
.calc-result-grid .total dd { font-size: 22px; color: var(--brand); }

.calc-disclaimer { display: flex; gap: 10px; align-items: flex-start; color: var(--text-faint); font-size: 12px; line-height: 1.5; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--border); }
.calc-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

@media (max-width: 620px) {
  .calc-grid-2, .legrichting-grid, .calc-result-grid { grid-template-columns: 1fr; }
}

/* ---------- content-pagina's (tekst + media / benodigdheden) ---------- */
.content-hero { position: relative; width: 100vw; margin-left: calc(50% - 50vw); background: var(--green); padding: 52px 24px 60px; overflow: hidden; margin-bottom: 4px; }
.content-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.content-hero h1 { color: #fff; font-size: 32px; max-width: 22ch; line-height: 1.2; }
.hero-deco { position: absolute; top: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; gap: 7px; padding-right: 48px; opacity: 0.92; }
.hero-deco span { display: block; width: 64px; border-radius: 10px; }
.hero-deco span:nth-child(1) { height: 55%; background: var(--brand); align-self: flex-start; margin-top: 24px; }
.hero-deco span:nth-child(2) { height: 38%; background: var(--blue); }
.hero-deco span:nth-child(3) { height: 72%; background: var(--brand); }
.hero-deco span:nth-child(4) { height: 28%; background: var(--blue); align-self: flex-start; margin-top: 44px; }

.content-crumb { margin: 20px 0 26px; }
.content-columns { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.content-text h2 { font-size: 22px; margin-bottom: 14px; }
.content-text p { color: var(--text); font-size: 15px; line-height: 1.7; max-width: 62ch; margin: 0 0 16px; }
.content-text p:last-child { margin-bottom: 0; }
.content-cross-link { font-size: 14px; }
.link-btn { background: none; border: none; padding: 0; color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; font-family: inherit; font-size: inherit; }
.link-btn:hover { color: var(--brand-hover); }

.media-video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); }
.media-video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.media-video { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-l); overflow: hidden; background: linear-gradient(135deg, #2b2f38, #14161b); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; border: 1px solid var(--border); }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.media-label { color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 700; }
img.media-image, .media-image { aspect-ratio: 4/3; border-radius: var(--radius-l); border: 1px solid var(--border); background: repeating-linear-gradient(45deg, var(--surface-alt) 0 14px, var(--surface) 14px 28px); object-fit: cover; display: block; width: 100%; }

.content-products { margin-top: 44px; display: flex; flex-direction: column; gap: 26px; padding-top: 32px; border-top: 1px solid var(--border); }
.content-product-row { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: start; }
.cp-swatch { width: 96px; height: 96px; border-radius: var(--radius-m); background: linear-gradient(135deg, var(--blue-soft), var(--brand-soft)); border: 1px solid var(--border); }
.content-product-row h3 { font-size: 15.5px; margin-bottom: 4px; }
.content-product-row p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 62ch; }

.content-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 28px; }
.content-cta-row .btn { flex: 0 0 auto; }

.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 22px 18px; }
.profile-swatch { aspect-ratio: 3/2; border-radius: var(--radius-m); border: 1px solid var(--border); margin-bottom: 10px; background-color: var(--surface-alt); }
.profile-card h3 { font-size: 14px; margin-bottom: 4px; color: var(--brand); font-family: "Poppins", sans-serif; }
.profile-card p { margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 780px) {
  .content-columns { grid-template-columns: 1fr; }
  .content-product-row { grid-template-columns: 1fr; }
  .content-hero h1 { font-size: 25px; }
  .hero-deco { display: none; }
}
@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .spec-table { grid-template-columns: 1fr; }
  .buybox { position: static; }
}
@media (max-width: 760px) {
  .layout { grid-template-columns: 1fr; }
  aside.filters { display: none; position: fixed; inset: 0; z-index: 40; border-radius: 0; top: 0; overflow-y: auto; padding: 16px 18px 100px; }
  aside.filters.open { display: block; }
  .mobile-filter-btn { display: inline-flex; }
  .top-actions { display: none; }
}

/* ---------- homepage: outlet showroom sfeer ---------- */
.hazard-strip { width: 100vw; margin-left: calc(50% - 50vw); height: 12px; background: repeating-linear-gradient(135deg, #F4C430 0 18px, #1C1C1C 18px 36px); }
.hero { width: 100vw; margin-left: calc(50% - 50vw); background: radial-gradient(ellipse at 20% 100%, rgba(0,0,0,0.05), transparent 60%), repeating-linear-gradient(120deg, rgba(0,0,0,0.025) 0 2px, transparent 2px 26px), var(--bg-band); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 60px 24px 52px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-block; color: var(--green-ink); background: var(--green-soft); padding: 5px 12px; border-radius: 999px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; margin-bottom: 16px; font-family: "Poppins", sans-serif; }
.hero h1 { font-size: 42px; line-height: 1.1; max-width: 15ch; margin-bottom: 18px; }
.hero .lead { font-size: 16px; color: var(--text-muted); max-width: 46ch; line-height: 1.65; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas .btn { padding: 14px 22px; font-size: 15px; }

.pallet-art { position: relative; height: 320px; }
.box { position: absolute; width: 104px; height: 72px; border-radius: 8px; box-shadow: 0 10px 20px -8px rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; }
.box-a { background: var(--brand); left: 16%; bottom: 118px; transform: rotate(-4deg); z-index: 3; }
.box-b { background: var(--green); left: 42%; bottom: 134px; transform: rotate(3deg); z-index: 2; }
.box-c { background: var(--blue); left: 28%; bottom: 184px; transform: rotate(-2deg); z-index: 4; }
.box-tile { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; width: 28px; height: 28px; }
.box-tile i { display: block; background: rgba(255,255,255,0.92); border-radius: 2px; }
.pallet-deck { position: absolute; left: 6%; right: 6%; bottom: 84px; height: 22px; display: flex; gap: 6px; }
.pallet-deck span { flex: 1; background: linear-gradient(180deg, #C8955F, #A66A38); border-radius: 3px; box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15); }
.pallet-blocks { position: absolute; left: 10%; right: 10%; bottom: 52px; height: 34px; display: flex; justify-content: space-between; }
.pallet-blocks span { width: 44px; background: linear-gradient(180deg, #B98652, #8F5F32); border-radius: 3px; }
.stamp { position: absolute; top: 4px; right: 2%; z-index: 5; border: 3px solid var(--sale); color: var(--sale); background: var(--sale-soft); font-family: "Poppins", sans-serif; font-weight: 800; font-size: 19px; letter-spacing: 0.03em; padding: 8px 14px; border-radius: 10px; transform: rotate(-9deg); }

.usp-strip { width: 100vw; margin-left: calc(50% - 50vw); background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-strip-inner { max-width: 1280px; margin: 0 auto; padding: 30px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.usp-item { display: flex; gap: 13px; align-items: flex-start; }
.usp-item svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.usp-item h3 { font-size: 14.5px; margin-bottom: 4px; }
.usp-item p { margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

.steps-section { padding: 52px 0 6px; }
.steps-section h2 { font-size: 22px; margin-bottom: 24px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 22px 20px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-family: "Poppins", sans-serif; font-weight: 800; margin-bottom: 14px; }
.step h3 { font-size: 15px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

.teaser-section { padding: 50px 0 6px; }
.teaser-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.teaser-head h2 { font-size: 22px; }

.stat-band { width: 100vw; margin-left: calc(50% - 50vw); background: #14161B; margin-top: 54px; }
.stat-band-inner { max-width: 1280px; margin: 0 auto; padding: 42px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 33px; color: #fff; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 12.5px; color: #A3A8B4; }

.cat-section { padding: 50px 0 6px; }
.cat-section h2 { font-size: 22px; margin-bottom: 20px; }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 0; overflow: hidden; cursor: pointer; text-align: left; font-family: inherit; text-decoration: none; color: inherit; display: block; }
.cat-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.cat-thumb { aspect-ratio: 4/3; background-color: var(--surface-alt); }
.cat-thumb-alt { background: linear-gradient(135deg, var(--blue-soft), var(--brand-soft)); }
.cat-name { display: block; padding: 12px 14px; font-weight: 700; font-size: 13px; }

.footer-cta { width: 100vw; margin-left: calc(50% - 50vw); background: var(--brand-soft); margin-top: 4px; }
.footer-cta-inner { max-width: 1280px; margin: 0 auto; padding: 38px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cta h2 { font-size: 20px; margin-bottom: 8px; }
.footer-cta p { margin: 0; display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-muted); font-size: 14px; align-items: center; }
.footer-cta p svg { vertical-align: middle; margin-right: 4px; color: var(--brand); }
.footer-cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-tel { font-weight: 800; font-family: "Poppins", sans-serif; display: flex; align-items: center; gap: 6px; }

/* ---------- footer ---------- */
.site-footer { width: 100vw; margin-left: calc(50% - 50vw); background: #14161B; color: #A3A8B4; margin-top: 40px; }
.site-footer-inner { max-width: 1280px; margin: 0 auto; padding: 24px 24px; font-size: 13px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .pallet-art { height: 240px; }
  .usp-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .usp-strip-inner { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}
