/* ============================================================
   COMPETITIE BANDEN — Scoped CSS
   Prefix: cb- | Racing DNA: zwart / rood / carbon
   ============================================================ */

:root {
  --cb-red:         #dc2626;
  --cb-red-dark:    #991b1b;
  --cb-red-bright:  #ef4444;
  --cb-black:       #080808;
  --cb-black-mid:   #141414;
  --cb-black-light: #1f1f1f;
  --cb-carbon:      #2a2a2a;
  --cb-bg:          #f5f5f5;
  --cb-white:       #ffffff;
  --cb-gray:        #888888;
  --cb-border:      #e0e0e0;
  --cb-text:        #444444;
  --cb-gold:        #d97706;
}

/* -- HERO --------------------------------------------------- */
.cb-hero {
  position: relative;
  background: var(--cb-black);
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Carbon fiber weave */
.cb-hero-carbon {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0px, transparent 6px,
      rgba(255,255,255,.012) 6px, rgba(255,255,255,.012) 7px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 6px,
      rgba(255,255,255,.012) 6px, rgba(255,255,255,.012) 7px
    );
}

/* Diagonal racing stripes */
.cb-hero-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent 0px, transparent 60px,
    rgba(220,38,38,.06) 60px, rgba(220,38,38,.06) 62px
  );
  animation: cb-stripe 8s linear infinite;
}
@keyframes cb-stripe {
  from { background-position: 0 0; }
  to   { background-position: 124px 0; }
}

.cb-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 0% 50%, rgba(8,8,8,.97) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(20,0,0,.7) 0%, transparent 60%),
    linear-gradient(135deg, #080808 0%, #141414 70%, #1a0000 100%);
}

/* Red speed glow */
.cb-hero-glow {
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(220,38,38,.18) 0%, rgba(220,38,38,.06) 35%, transparent 65%);
  pointer-events: none;
  animation: cb-pulse 3s ease-in-out infinite;
}
@keyframes cb-pulse {
  0%,100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%      { transform: translateY(-50%) scale(1.06); opacity: .85; }
}

/* Red accent line top */
.cb-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cb-red);
  box-shadow: 0 0 20px rgba(220,38,38,.8);
}

.cb-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  position: relative; z-index: 2; width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  box-sizing: border-box;
}

.cb-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.5);
  border-radius: 2px;
  padding: 6px 16px;
  color: #fca5a5;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 20px;
}
.cb-hero-eyebrow::before {
  content: '';
  width: 8px; height: 2px;
  background: var(--cb-red);
  box-shadow: 0 0 8px var(--cb-red);
  animation: cb-blink 1.5s step-end infinite;
}
@keyframes cb-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.cb-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem,6vw,6rem);
  font-weight: 900; line-height: .86;
  letter-spacing: -2px; color: #fff;
  text-transform: uppercase; margin-bottom: 8px;
  font-style: italic;
}
.cb-hero-title em {
  color: var(--cb-red); font-style: italic;
  text-shadow: 0 0 40px rgba(220,38,38,.4);
}

.cb-hero-title-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem,1.6vw,1.3rem);
  font-weight: 700; color: rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: 6px;
  margin-bottom: 24px;
}

.cb-hero-desc {
  color: rgba(255,255,255,.62); font-size: 1rem;
  line-height: 1.8; max-width: 440px; margin-bottom: 36px;
}

.cb-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.cb-hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.cb-hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1;
  font-style: italic;
}
.cb-hero-stat-num span { color: var(--cb-red); }
.cb-hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 2px; text-transform: uppercase; letter-spacing: 1.5px; }
.cb-hero-stat-divider { width: 1px; background: rgba(255,255,255,.08); align-self: stretch; }

/* -- FINDER ------------------------------------------------- */
.cb-finder {
  background: rgba(20,20,20,.9);
  border: 1px solid rgba(220,38,38,.25);
  border-radius: 4px; padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 32px 80px rgba(0,0,0,.8);
  position: relative; overflow: hidden;
}
.cb-finder::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cb-red);
  box-shadow: 0 0 16px rgba(220,38,38,.6);
}
.cb-finder-label {
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--cb-red); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.cb-finder-label::before {
  content: ''; width: 20px; height: 2px; background: var(--cb-red);
  box-shadow: 0 0 8px var(--cb-red);
}
.cb-finder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
  letter-spacing: -0.5px; font-style: italic;
}
.cb-finder-field { margin-bottom: 12px; }
.cb-finder-field label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.cb-finder-field select,
.cb-finder-field input {
  width: 100%; height: 46px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; color: #fff;
  font-size: .9rem; padding: 0 14px;
  outline: none; cursor: pointer;
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box;
  font-family: 'Barlow', sans-serif;
}
.cb-finder-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.cb-finder-field select option { background: #141414; color: #fff; }
.cb-finder-field select:focus,
.cb-finder-field input:focus {
  border-color: var(--cb-red);
  box-shadow: 0 0 0 2px rgba(220,38,38,.25);
}
.cb-finder-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.cb-finder-btn {
  width: 100%; padding: 15px;
  background: var(--cb-red); color: #fff;
  border: none; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  cursor: pointer; transition: all .2s; margin-top: 6px;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 2px; font-style: italic;
}
.cb-finder-btn:hover {
  background: var(--cb-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(220,38,38,.6);
}
.cb-finder-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.cb-finder-tab {
  flex: 1; padding: 9px 8px;
  background: none; border: none; border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4); font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: all .2s;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
}
.cb-finder-tab:last-child { border-right: none; }
.cb-finder-tab.active { background: var(--cb-red); color: #fff; }
.cb-finder-panel { display: none; }
.cb-finder-panel.active { display: block; }
.cb-finder-guarantee {
  text-align: center; font-size: .7rem;
  color: rgba(255,255,255,.25); margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cb-finder-guarantee i { color: var(--cb-red); }

/* -- KNOPPEN ------------------------------------------------ */
.cb-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--cb-red); color: #fff;
  border: 2px solid var(--cb-red); border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 24px rgba(220,38,38,.4);
  text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; font-style: italic;
}
.cb-btn-primary:hover {
  background: var(--cb-red-dark); border-color: var(--cb-red-dark);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(220,38,38,.6);
  color: #fff;
}
.cb-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.2); border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: all .2s; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1.5px; font-style: italic;
}
.cb-btn-outline:hover {
  border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08);
  transform: translateY(-2px); color: #fff;
}
.cb-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.15); border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .2s; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
}
.cb-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }

/* -- USP BALK ----------------------------------------------- */
.cb-usp-strip { background: var(--cb-red); position: relative; overflow: hidden; }
.cb-usp-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -12deg, transparent, transparent 40px,
    rgba(0,0,0,.08) 40px, rgba(0,0,0,.08) 42px
  );
}
.cb-usp-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.cb-usp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(0,0,0,.15);
}
.cb-usp-item:last-child { border-right: none; }
.cb-usp-icon { color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.cb-usp-text strong { display: block; font-size: .85rem; font-weight: 700; color: #fff; }
.cb-usp-text span  { font-size: .75rem; color: rgba(255,255,255,.7); }

/* -- SECTIES ----------------------------------------------- */
.cb-section { padding: 80px 0; }
.cb-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.cb-section-header { margin-bottom: 52px; }
.cb-section-header.center { text-align: center; }
.cb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--cb-red); margin-bottom: 10px;
}
.cb-eyebrow::before { content: '//'; opacity: .5; }
.cb-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem,3.5vw,3.4rem); font-weight: 900;
  text-transform: uppercase; color: var(--cb-black);
  line-height: .92; letter-spacing: -1px; font-style: italic;
}
.cb-section-title em { color: var(--cb-red); font-style: italic; }
.cb-section-title.light { color: #fff; }
.cb-section-line {
  width: 40px; height: 3px;
  background: var(--cb-red); margin: 14px 0 0;
  box-shadow: 0 0 10px rgba(220,38,38,.4);
}
.cb-section-header.center .cb-section-line { margin: 14px auto 0; }
.cb-section-sub {
  font-size: .95rem; color: var(--cb-text);
  margin-top: 12px; max-width: 520px; line-height: 1.7;
}
.cb-section-header.center .cb-section-sub { margin-left: auto; margin-right: auto; }
.cb-section-sub.light { color: rgba(255,255,255,.5); }

.cb-bg-white { background: #fff; }
.cb-bg-light  { background: var(--cb-bg); }
.cb-bg-black  { background: var(--cb-black); }
.cb-bg-dark   { background: var(--cb-black-mid); }
.cb-center    { text-align: center; margin-top: 36px; }

/* -- RACING CATEGORIEËN ------------------------------------- */
.cb-cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; background: #111; border: 3px solid #111; border-radius: 8px; overflow: hidden; }
.cb-cat-card {
  background: var(--cb-black-light);
  padding: 36px 32px;
  cursor: pointer; transition: all .25s; position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.cb-cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--cb-red);
  transform: scaleY(0); transform-origin: bottom; transition: transform .25s;
  box-shadow: 2px 0 12px rgba(220,38,38,.4);
}
.cb-cat-card:hover { background: #222; }
.cb-cat-card:hover::before { transform: scaleY(1); }
.cb-cat-card.featured {
  background: var(--cb-red);
  grid-row: 1 / 3;
}
.cb-cat-card.featured::before { display: none; }
.cb-cat-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.cb-cat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,.06);
  line-height: 1; font-style: italic; user-select: none;
}
.cb-cat-card.featured .cb-cat-num { color: rgba(0,0,0,.15); }
.cb-cat-badge {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 2px;
  background: rgba(220,38,38,.2); color: #fca5a5; border: 1px solid rgba(220,38,38,.3);
}
.cb-cat-card.featured .cb-cat-badge { background: rgba(0,0,0,.2); color: rgba(255,255,255,.85); border-color: rgba(0,0,0,.2); }
.cb-cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; text-transform: uppercase;
  color: #fff; margin-bottom: 8px; letter-spacing: -.3px; font-style: italic;
}
.cb-cat-sub { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
.cb-cat-card.featured .cb-cat-sub { color: rgba(255,255,255,.75); }
.cb-cat-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.cb-spec-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 2px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65);
}
.cb-cat-card.featured .cb-spec-tag { background: rgba(0,0,0,.15); border-color: rgba(0,0,0,.15); color: rgba(255,255,255,.85); }
.cb-cat-cta {
  display: flex; align-items: center; gap: 8px;
  color: var(--cb-red); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
}
.cb-cat-card.featured .cb-cat-cta { color: rgba(255,255,255,.9); }
.cb-cat-cta i { transition: transform .2s; }
.cb-cat-card:hover .cb-cat-cta i { transform: translateX(5px); }

/* -- MERKEN ------------------------------------------------ */
.cb-brands-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: #222; }
.cb-brand-card {
  background: var(--cb-black-mid);
  padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; transition: all .25s; position: relative; overflow: hidden;
}
.cb-brand-card::after {
  content: '';
  position: absolute; inset: 0;
  border-bottom: 2px solid var(--cb-red);
  transform: translateY(2px); opacity: 0; transition: all .25s;
}
.cb-brand-card:hover { background: #1a1a1a; }
.cb-brand-card:hover::after { transform: translateY(0); opacity: 1; }
.cb-brand-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; text-transform: uppercase;
  color: rgba(255,255,255,.55); letter-spacing: 2px; transition: color .25s; font-style: italic;
}
.cb-brand-card:hover .cb-brand-logo { color: #fff; }
.cb-brand-count { font-size: .72rem; color: rgba(255,255,255,.25); transition: color .25s; }
.cb-brand-card:hover .cb-brand-count { color: var(--cb-red); }
.cb-brand-type { font-size: .65rem; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: 1.5px; }
.cb-brand-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--cb-red); color: #fff;
  font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 1px;
}

/* -- PRODUCTEN --------------------------------------------- */
.cb-prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: #ddd; }
.cb-prod-card {
  background: #fff;
  overflow: hidden; transition: all .25s; position: relative;
}
.cb-prod-card:hover { z-index: 2; box-shadow: 0 0 0 2px var(--cb-red), 0 20px 50px rgba(0,0,0,.2); }
.cb-prod-card.featured { background: var(--cb-black); }
.cb-prod-top-bar { height: 3px; background: var(--cb-border); }
.cb-prod-top-bar.red { background: var(--cb-red); box-shadow: 0 0 10px rgba(220,38,38,.4); }
.cb-prod-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--cb-black); color: #fff;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 1px; z-index: 2;
}
.cb-prod-badge.red   { background: var(--cb-red); }
.cb-prod-badge.gold  { background: var(--cb-gold); }
.cb-prod-img {
  height: 200px; background: var(--cb-bg);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.cb-prod-card.featured .cb-prod-img { background: var(--cb-black-light); }
.cb-prod-body { padding: 24px; }
.cb-prod-brand {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--cb-red); margin-bottom: 4px;
}
.cb-prod-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 900; color: var(--cb-black);
  margin: 4px 0 6px; text-transform: uppercase; letter-spacing: -.3px; font-style: italic;
}
.cb-prod-card.featured .cb-prod-name { color: #fff; }
.cb-prod-use {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 1px; margin-bottom: 14px;
  background: var(--cb-bg); border: 1px solid var(--cb-border); color: var(--cb-gray);
}
.cb-prod-card.featured .cb-prod-use { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.cb-prod-scores { margin-bottom: 14px; }
.cb-prod-score { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.cb-prod-score-label { font-size: .7rem; color: var(--cb-gray); min-width: 72px; text-transform: uppercase; letter-spacing: .5px; }
.cb-bar-wrap { flex: 1; height: 4px; background: var(--cb-border); border-radius: 0; overflow: hidden; }
.cb-prod-card.featured .cb-bar-wrap { background: rgba(255,255,255,.1); }
.cb-bar-fill { height: 100%; background: var(--cb-red); transition: width .4s; }
.cb-bar-fill.gold { background: var(--cb-gold); }
.cb-prod-desc { font-size: .82rem; color: var(--cb-text); line-height: 1.65; margin-bottom: 14px; }
.cb-prod-card.featured .cb-prod-desc { color: rgba(255,255,255,.55); }
.cb-prod-old  { font-size: .85rem; color: var(--cb-gray); text-decoration: line-through; }
.cb-prod-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 900; color: var(--cb-black); line-height: 1; font-style: italic;
}
.cb-prod-card.featured .cb-prod-price { color: #fff; }
.cb-prod-price small { font-size: 1rem; font-weight: 400; font-style: normal; }
.cb-prod-buy {
  width: 100%; padding: 13px;
  background: var(--cb-black); color: #fff;
  border: none; border-radius: 1px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 900; cursor: pointer; transition: all .2s;
  margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-sizing: border-box; text-transform: uppercase; letter-spacing: 2px; font-style: italic;
}
.cb-prod-buy.red { background: var(--cb-red); box-shadow: 0 0 20px rgba(220,38,38,.3); }
.cb-prod-buy:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* -- MATEN ------------------------------------------------- */
.cb-maten-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; background: #ddd; }
.cb-maat-card {
  background: #fff;
  padding: 22px;
  text-align: center; cursor: pointer; transition: all .2s;
  position: relative; overflow: hidden; text-decoration: none; display: block;
}
.cb-maat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cb-black);
  transform: translateY(100%); transition: transform .25s;
  z-index: 0;
}
.cb-maat-card:hover::before { transform: translateY(0); }
.cb-maat-card > * { position: relative; z-index: 1; }
.cb-maat-size { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--cb-black); margin-bottom: 2px; font-style: italic; transition: color .25s; }
.cb-maat-card:hover .cb-maat-size { color: #fff; }
.cb-maat-label { font-size: .72rem; color: var(--cb-gray); margin-bottom: 12px; transition: color .25s; }
.cb-maat-card:hover .cb-maat-label { color: rgba(255,255,255,.5); }
.cb-maat-from  { font-size: .68rem; color: var(--cb-gray); text-transform: uppercase; letter-spacing: 1px; transition: color .25s; }
.cb-maat-card:hover .cb-maat-from { color: rgba(255,255,255,.35); }
.cb-maat-price { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--cb-red); line-height: 1; font-style: italic; }
.cb-maat-count { font-size: .7rem; color: var(--cb-gray); margin-top: 4px; transition: color .25s; }
.cb-maat-card:hover .cb-maat-count { color: rgba(255,255,255,.35); }

/* -- REVIEWS ----------------------------------------------- */
.cb-reviews-top {
  display: flex; gap: 40px; align-items: center;
  margin-bottom: 48px;
  background: var(--cb-black-light); border-radius: 0; padding: 32px;
  border-left: 3px solid var(--cb-red);
}
.cb-review-score-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900; color: #fff; line-height: 1; font-style: italic;
}
.cb-review-stars { color: var(--cb-red); font-size: 1.1rem; margin: 4px 0; }
.cb-review-lbl { font-size: .78rem; color: rgba(255,255,255,.35); }
.cb-review-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; }
.cb-review-bars { flex: 1; }
.cb-review-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.cb-review-bar-row span { font-size: .75rem; color: rgba(255,255,255,.4); width: 30px; }
.cb-review-bar { flex: 1; height: 4px; background: rgba(255,255,255,.1); overflow: hidden; }
.cb-review-bar-fill { height: 100%; background: var(--cb-red); }
.cb-review-extra { display: flex; gap: 32px; }
.cb-review-extra-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: #fff; font-style: italic; }
.cb-review-extra-lbl { font-size: .75rem; color: rgba(255,255,255,.35); }
.cb-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: #ddd; }
.cb-review-card {
  background: #fff; padding: 24px; transition: all .2s; position: relative;
}
.cb-review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cb-border); transition: background .2s;
}
.cb-review-card:hover::before { background: var(--cb-red); }
.cb-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cb-review-avatar {
  width: 44px; height: 44px; border-radius: 2px;
  background: var(--cb-black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900; color: #fff; flex-shrink: 0;
  font-style: italic;
}
.cb-review-name { font-weight: 700; font-size: .9rem; color: var(--cb-black); }
.cb-review-car  { font-size: .75rem; color: var(--cb-gray); }
.cb-review-stars-sm { color: var(--cb-red); font-size: .85rem; margin-bottom: 10px; }
.cb-review-text { font-size: .875rem; color: var(--cb-text); line-height: 1.65; }
.cb-review-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; color: #16a34a; font-weight: 600; margin-top: 12px;
}

/* -- STAPPEN ----------------------------------------------- */
.cb-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: #ddd; }
.cb-step-card {
  text-align: center; padding: 36px 24px;
  background: var(--cb-black-light); transition: all .2s;
}
.cb-step-card:hover { background: #1a1a1a; }
.cb-step-nr {
  width: 56px; height: 56px; border-radius: 1px;
  background: var(--cb-red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(220,38,38,.4);
}
.cb-step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -.2px; font-style: italic; }
.cb-step-text  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* -- GARANTIES --------------------------------------------- */
.cb-garantie-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--cb-border); }
.cb-garantie-card {
  background: #fff; padding: 32px 24px; transition: all .2s; position: relative;
}
.cb-garantie-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--cb-red); transform: scaleX(0); transition: transform .25s;
  box-shadow: 0 0 10px rgba(220,38,38,.4);
}
.cb-garantie-card:hover::after { transform: scaleX(1); }
.cb-garantie-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  color: var(--cb-red);
}
.cb-garantie-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 900; color: var(--cb-black); margin-bottom: 10px; text-transform: uppercase; letter-spacing: -.2px; font-style: italic; }
.cb-garantie-text  { font-size: .875rem; color: var(--cb-text); line-height: 1.7; }

/* -- FAQ --------------------------------------------------- */
.cb-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cb-faq-item {
  border: 1px solid var(--cb-border); border-radius: 0; overflow: hidden; cursor: pointer; transition: border-color .2s;
}
.cb-faq-item:hover, .cb-faq-item.open { border-color: var(--cb-red); }
.cb-faq-q {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .9rem; color: var(--cb-black); gap: 16px;
}
.cb-faq-item.open .cb-faq-q { color: var(--cb-red); }
.cb-faq-q i { color: var(--cb-red); font-size: .8rem; transition: transform .2s; flex-shrink: 0; }
.cb-faq-item.open .cb-faq-q i { transform: rotate(180deg); }
.cb-faq-a { padding: 0 20px 18px; font-size: .875rem; color: var(--cb-text); line-height: 1.7; display: none; }
.cb-faq-item.open .cb-faq-a { display: block; }

/* -- EIND CTA ---------------------------------------------- */
.cb-eindcta {
  background: var(--cb-black); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cb-eindcta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(220,38,38,.1) 0%, transparent 65%);
}
.cb-eindcta::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--cb-red); box-shadow: 0 0 20px rgba(220,38,38,.6);
}
.cb-eindcta-inner {
  max-width: 700px; margin: 0 auto; padding: 0 24px;
  text-align: center; position: relative; z-index: 2;
}
.cb-eindcta-eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--cb-red); margin-bottom: 14px; }
.cb-eindcta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem,5vw,4.5rem); font-weight: 900;
  text-transform: uppercase; color: #fff;
  line-height: .9; letter-spacing: -1.5px; margin-bottom: 20px; font-style: italic;
}
.cb-eindcta-title em { color: var(--cb-red); font-style: italic; text-shadow: 0 0 30px rgba(220,38,38,.4); }
.cb-eindcta-text { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; margin-bottom: 36px; }
.cb-eindcta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cb-eindcta-pijlers { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cb-eindcta-pijler { font-size: .78rem; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 8px; }
.cb-eindcta-pijler i { color: var(--cb-red); }

/* -- RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .cb-hero-inner { grid-template-columns: 1fr 400px; gap: 40px; }
  .cb-brands-grid{ grid-template-columns: repeat(3,1fr); }
  .cb-maten-grid { grid-template-columns: repeat(3,1fr); }
  .cb-prod-grid  { grid-template-columns: 1fr 1fr; }
  .cb-cat-grid   { grid-template-columns: 1fr; }
  .cb-cat-card.featured { grid-row: auto; }
}
@media (max-width: 768px) {
  .cb-hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .cb-usp-inner  { grid-template-columns: repeat(2,1fr); }
  .cb-brands-grid{ grid-template-columns: repeat(2,1fr); }
  .cb-maten-grid { grid-template-columns: repeat(2,1fr); }
  .cb-prod-grid  { grid-template-columns: 1fr; }
  .cb-faq-grid   { grid-template-columns: 1fr; }
  .cb-reviews-grid { grid-template-columns: 1fr; }
  .cb-garantie-grid { grid-template-columns: 1fr; }
  .cb-steps-grid { grid-template-columns: 1fr; }
  .cb-reviews-top { flex-direction: column; gap: 20px; }
}