/* =====================================================
   Slimme Kattenbak — Stylesheet (pet-supplies stijl)
   Forest green palet, bredere layout, serif headings
   ===================================================== */

:root {
  --primary:        #3D6F42;   /* forest green */
  --primary-dark:   #1E3120;   /* deep forest */
  --primary-soft:   #EAF1EA;   /* very light green wash */
  --accent:         #E2E2E2;   /* soft gray lines */
  --accent-warm:    #F5F1EA;   /* warm cream background */

  --text:           #111111;
  --text-soft:      #4A4A4A;
  --muted:          #7A7A7A;
  --border:         #E2E2E2;
  --border-soft:    #F0F0F0;
  --bg:             #FFFFFF;
  --bg-alt:         #F8F7F4;
  --warn:           #C0392B;
  --star:           #E8A33C;

  --radius:         4px;
  --radius-lg:      8px;

  --shadow-sm:      0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:      0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:      0 30px 60px -15px rgba(0,0,0,.18);

  --max-w:          1365px;
  --container-pad:  30px;

  --font-head:      "Trocchi", Georgia, "Times New Roman", serif;
  --font-body:      "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 .5em;
  font-weight: 400;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2rem; color: var(--text-soft); }
ul, ol { color: var(--text-soft); }
strong { color: var(--text); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}
@media (max-width: 640px) { :root { --container-pad: 20px; } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--primary-dark); color: #fff;
  padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { top: 0; }

/* =====================================================
   Top bar (small info strip above header)
   ===================================================== */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: #fff; opacity: .9; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar-left span { margin-right: 1.5rem; display: inline-flex; align-items: center; gap: .4rem; }
.topbar-right span { margin-left: 1.25rem; }
@media (max-width: 720px) { .topbar-right { display: none; } }

/* =====================================================
   Header / Navigation
   ===================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--text);
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 22px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--text);
}
.brand-tagline {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  border-radius: 4px; padding: .55rem .65rem; cursor: pointer;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-nav .nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 0; align-items: center;
}
.primary-nav .nav-item > a {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: 1.1rem 1.1rem;
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}
.primary-nav .nav-item > a:hover {
  color: var(--primary);
}
.primary-nav .nav-item > a::after {
  content: ""; position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: .7rem;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.primary-nav .nav-item:hover > a::after,
.primary-nav .nav-item.is-active > a::after { transform: scaleX(1); }
.primary-nav .nav-item.is-active > a { color: var(--primary); }
.caret { font-size: .6rem; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: .75rem 0;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: .7rem 1.25rem;
  color: var(--text); font-size: .85rem; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  border-left: 2px solid transparent;
}
.dropdown li a:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-left-color: var(--primary);
}

.header-actions {
  display: flex; align-items: center; gap: .5rem;
}
.header-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); background: transparent;
  transition: background .2s, color .2s;
}
.header-icon:hover { background: var(--primary-soft); color: var(--primary); }

@media (max-width: 1080px) {
  .primary-nav .nav-item > a { padding: 1.1rem .75rem; font-size: .82rem; letter-spacing: .05em; }
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .header-actions { display: none; }
  .primary-nav {
    position: fixed; inset: 88px 0 0 0; background: #fff;
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto; padding: 1rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav .nav-item > a {
    padding: 1rem .5rem;
    border-bottom: 1px solid var(--border-soft);
    justify-content: space-between;
  }
  .primary-nav .nav-item > a::after { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 .5rem .75rem; margin: 0;
    display: none;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .brand-tagline { display: none; }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid var(--primary);
  background: var(--primary); color: #fff;
  border-radius: 0;
  transition: background .25s, border-color .25s, color .25s, transform .1s;
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--outline {
  background: transparent; color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--light {
  background: #fff; color: var(--primary-dark); border-color: #fff;
}
.btn--light:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.btn--ghost-light {
  background: transparent; color: #fff; border-color: #fff;
}
.btn--ghost-light:hover { background: #fff; color: var(--primary-dark); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: .7rem 1.25rem; font-size: .72rem; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: .85rem; }

/* =====================================================
   Sections
   ===================================================== */
.section { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.85); }

.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 4rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 1rem;
}
.section-head h2 { margin: 0 0 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section-head .divider {
  width: 60px; height: 2px; background: var(--primary);
  margin: 1rem auto 1.5rem;
}

/* Grid helpers */
.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* =====================================================
   Hero (full-bleed)
   ===================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(30,49,32,.85) 0%, rgba(30,49,32,.55) 55%, rgba(30,49,32,.15) 100%),
    url("https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=2000&q=75");
  background-size: cover;
  background-position: center;
}
.hero-inner {
  position: relative;
  width: 100%;
  display: grid; grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: inline-block;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding-bottom: .75rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(255,255,255,.4);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 820px) {
  .hero { min-height: 520px; }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(30,49,32,.9), rgba(30,49,32,.6)),
      url("https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=1400&q=75");
  }
  .hero-inner { grid-template-columns: 1fr; padding: 3.5rem 0; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--primary-dark);
  color: #fff;
  padding: 5rem 0 4.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,49,32,.75), rgba(30,49,32,.85)),
    url("https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=1800&q=70");
  background-size: cover; background-position: center;
}
.page-hero > .container { position: relative; }
.page-hero .eyebrow {
  display: inline-block;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding-bottom: .6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,.4);
}
.page-hero h1 { color: #fff; margin: 0 0 .75rem; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 70ch; margin: 0 auto; font-size: 1.05rem; }
.breadcrumbs {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 .5rem; }

/* =====================================================
   Features bar (under hero)
   ===================================================== */
.features-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.features-bar .grid { gap: 20px; }
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
}
.feature-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
}
.feature-text h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  margin: 0 0 .2rem;
  color: var(--text);
}
.feature-text p { margin: 0; font-size: .82rem; color: var(--muted); }

/* =====================================================
   Category tile (large image card with overlay)
   ===================================================== */
.cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  min-height: 420px;
  background: var(--primary-dark);
}
.cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,49,32,.05) 30%, rgba(30,49,32,.85) 100%);
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 2.25rem;
  z-index: 2;
}
.cat-tile h3 {
  color: #fff;
  margin: 0 0 .35rem;
  font-size: 1.75rem;
}
.cat-tile p {
  color: rgba(255,255,255,.88);
  margin: 0 0 1rem;
  font-size: .95rem;
}
.cat-tile .cat-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: #fff;
}
.cat-tile .cat-link::after { content: "→"; transition: transform .25s; }
.cat-tile:hover .cat-link::after { transform: translateX(6px); }

/* =====================================================
   Product / Review card
   ===================================================== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  text-decoration: none;
}
.card-media {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden; position: relative;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.card:hover .card-media img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary); color: #fff;
  padding: .35rem .8rem;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.card-badge--soft { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.card-body { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; gap: .5rem; }
.card-rating { color: var(--star); font-size: .9rem; letter-spacing: 2px; }
.card-rating span { color: var(--muted); margin-left: .4rem; font-size: .8rem; letter-spacing: 0; }
.card h3 { margin: .3rem 0 .35rem; font-size: 1.3rem; }
.card .card-desc { font-size: .92rem; margin: 0; color: var(--text-soft); }
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 1.25rem;
}
.card-price { font-weight: 700; color: var(--text); font-size: 1.1rem; font-family: var(--font-head); }
.card-price small { color: var(--muted); font-weight: 400; font-size: .72rem; }

/* =====================================================
   Story split (image + text)
   ===================================================== */
.story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.story-image {
  min-height: 520px;
  background-size: cover; background-position: center;
}
.story-content {
  padding: 5rem 5rem;
  background: var(--bg-alt);
  display: flex; flex-direction: column; justify-content: center;
}
.story-content .eyebrow {
  color: var(--primary);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  margin-bottom: 1rem;
}
.story-content h2 { margin: 0 0 1.5rem; max-width: 18ch; }
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 340px; }
  .story-content { padding: 3rem 1.5rem; }
}

/* =====================================================
   Top pick block (inside reviews)
   ===================================================== */
.top-pick {
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  padding: 2.5rem;
  display: grid; grid-template-columns: 260px 1fr auto; gap: 2.5rem;
  align-items: center; margin: 2.5rem 0;
}
.top-pick-media { aspect-ratio: 1/1; overflow: hidden; background: #fff; }
.top-pick-media img { width: 100%; height: 100%; object-fit: cover; }
.top-pick-label {
  display: inline-block; background: var(--primary); color: #fff;
  padding: .35rem .8rem; font-size: .65rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: .75rem;
}
.top-pick h2, .top-pick h3 { margin: 0 0 .5rem; }
.top-pick .rating { color: var(--star); font-weight: 700; margin-bottom: .75rem; letter-spacing: 2px; }
.top-pick p { margin: 0 0 1rem; }
.top-pick-cta { min-width: 200px; display: flex; flex-direction: column; gap: .65rem; }
@media (max-width: 900px) {
  .top-pick { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .top-pick-media { max-width: 320px; }
}

/* =====================================================
   Comparison table
   ===================================================== */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); margin: 1.5rem 0; }
.compare-table {
  width: 100%; border-collapse: collapse; background: #fff; min-width: 680px;
}
.compare-table th, .compare-table td {
  padding: 1.1rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: .92rem;
}
.compare-table thead th {
  background: var(--primary-dark); color: #fff;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600;
}
.compare-table tbody tr:hover { background: var(--bg-alt); }
.compare-table .winner { background: var(--primary-soft); }
.compare-table .yes { color: var(--primary); font-weight: 700; }
.compare-table .no  { color: var(--warn); font-weight: 700; }

/* =====================================================
   Pros / Cons
   ===================================================== */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; } }
.proscons-box {
  background: #fff; border: 1px solid var(--border);
  padding: 1.75rem 2rem;
}
.proscons-box.pros { border-top: 3px solid var(--primary); }
.proscons-box.cons { border-top: 3px solid var(--accent); }
.proscons-box h3 { margin-top: 0; font-size: 1.25rem; }
.proscons-box ul { list-style: none; padding: 0; margin: 0; }
.proscons-box li {
  padding: .6rem 0 .6rem 1.9rem; position: relative;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-soft); font-size: .95rem;
}
.proscons-box li:last-child { border-bottom: 0; }
.proscons-box.pros li::before {
  content: "✓"; position: absolute; left: 0; top: .6rem;
  color: var(--primary); font-weight: 900;
}
.proscons-box.cons li::before {
  content: "✕"; position: absolute; left: 0; top: .6rem;
  color: var(--warn); font-weight: 900;
}

/* Feature list with green checks */
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li {
  padding: .65rem 0 .65rem 2rem; position: relative;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: .65rem;
  color: var(--primary); font-weight: 900;
  width: 1.3rem; height: 1.3rem; border: 1px solid var(--primary);
  border-radius: 50%; text-align: center; line-height: 1.1rem; font-size: .75rem;
}

/* Badges */
.badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: .3rem .7rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eco-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: .25rem .6rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* =====================================================
   FAQ accordion
   ===================================================== */
.faq { margin: 2.5rem 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: transparent; border: 0;
  padding: 1.35rem 0; text-align: left;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 400;
  color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: "+"; font-size: 1.6rem; color: var(--primary);
  font-family: var(--font-body);
  transition: transform .2s;
}
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 0 1.35rem; color: var(--text-soft); }

/* =====================================================
   CTA banner
   ===================================================== */
.cta-banner {
  background: var(--primary-dark);
  color: #fff;
  padding: 3.5rem 3rem;
  margin: 4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin: 0 0 .5rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; max-width: 60ch; }

/* Newsletter full-bleed */
.newsletter {
  background: var(--primary);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}
.newsletter h2 { color: #fff; margin: 0 0 .75rem; }
.newsletter p { color: rgba(255,255,255,.9); max-width: 55ch; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex; gap: 0; max-width: 540px; margin: 0 auto;
  background: #fff;
}
.newsletter-form input {
  flex: 1; border: 0; padding: 1.1rem 1.3rem;
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: transparent; outline: none;
}
.newsletter-form button {
  border: 0; background: var(--primary-dark); color: #fff;
  padding: 0 2rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .15em;
}
.newsletter-form button:hover { background: #000; }

/* =====================================================
   Testimonials
   ===================================================== */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 100%;
}
.testimonial .stars { color: var(--star); letter-spacing: 2px; }
.testimonial blockquote {
  border: 0; background: transparent; padding: 0; margin: 0;
  font-family: var(--font-head); font-size: 1.15rem;
  color: var(--text); line-height: 1.5;
}
.testimonial-author {
  display: flex; align-items: center; gap: .85rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-meta strong { display: block; color: var(--text); font-size: .9rem; }
.testimonial-meta span { color: var(--muted); font-size: .8rem; }

/* =====================================================
   Article / prose content (wider than before)
   ===================================================== */
.prose { max-width: 920px; margin: 0 auto; }
.prose h2 { margin-top: 3rem; }
.prose h3 { margin-top: 2.25rem; }
.prose ul, .prose ol { margin: 0 0 1.5rem 1.5rem; }
.prose li { margin: .35rem 0; }
.prose blockquote {
  border-left: 3px solid var(--primary);
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
}

/* Specs table */
.specs-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  background: #fff; border: 1px solid var(--border);
}
.specs-table th, .specs-table td {
  padding: 1rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border-soft); font-size: .93rem;
}
.specs-table th { background: var(--bg-alt); width: 35%; font-weight: 600; color: var(--text); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }

/* Two-column content layout (for inner pages) */
.content-2col {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 60px;
  margin-top: 4rem;
}
@media (max-width: 980px) { .content-2col { grid-template-columns: 1fr; } }
.sidebar-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-top: 3px solid var(--primary);
}
.sidebar-box h3 { font-size: 1.15rem; margin: 0 0 1rem; }
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { border-bottom: 1px solid var(--border); }
.sidebar-box li:last-child { border-bottom: 0; }
.sidebar-box a {
  display: block; padding: .65rem 0;
  color: var(--text); font-size: .9rem;
}
.sidebar-box a:hover { color: var(--primary); }

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--primary-dark);
  color: #C7CFC7;
  margin-top: 0;
  padding-top: 5rem;
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.site-footer a { color: #C7CFC7; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 4rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .7rem; font-size: .9rem; }
.footer-brand .brand--footer {
  color: #fff; margin-bottom: 1.25rem;
  display: inline-flex; gap: .65rem; align-items: center;
}
.footer-brand .brand-mark { background: var(--primary); color: #fff; }
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-brand p { color: #9FA89F; font-size: .92rem; line-height: 1.7; }
.eco-line { font-size: .85rem; margin-top: 1rem; }
.footer-bottom {
  border-top: 1px solid #2D4231;
  padding: 1.5rem var(--container-pad);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: #9FA89F;
}
.footer-bottom p { margin: 0; color: #9FA89F; }
.disclosure-mini a { color: #fff; text-decoration: underline; }
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { display: none; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(5) { display: block; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { justify-content: flex-start; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* bol.com Partner Product-link widget */
.bol-widget {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  max-width: 420px;
}
.bol-widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (max-width: 720px) {
  .bol-widget-grid { grid-template-columns: 1fr; }
}
.bol-widget-heading {
  margin: 2.5rem 0 1rem;
  font-size: 1.15rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
