/* =============================================================
   3B Bedrijfswageninrichting — Hoofd stylesheet
   ============================================================= */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --primary:    #45283b;
  --dark:       #2b1b25;
  --accent:     #ea5b0c;
  --light-bg:   #f5f2f4;
  --border:     #e0dade;
  --text:       #252525;
  --grey:       #8d8d8d;
  --radius:     10px;
  --font:       'Open Sans', sans-serif;

  /* Override plugin CSS vars (plugin injects --3b-* with !important rules) */
  --3b-p: #45283b;
  --3b-d: #2b1b25;
  --3b-a: #ea5b0c;
  --3b-t: #252525;
  --3b-l: #f5f2f4;
  --3b-b: #e0dade;
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.thrb-body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.thrb-body a { color: inherit; text-decoration: none; }
.thrb-body img { display: block; max-width: 100%; }
.thrb-body ul, .thrb-body ol { list-style: none; }
.thrb-body button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Layout helpers ─────────────────────────────────────────── */
.thrb-container {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 50px;
}
.thrb-section {
  max-width: 1820px;
  margin: 0 auto;
  padding: 64px 50px;
}
.section-title {
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary,
.thrb-body .btn-primary,
.thrb-body a.btn-primary,
button.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background .15s, opacity .15s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary:hover { background: #d44f09 !important; color: #fff !important; }

.btn-outline,
.thrb-body .btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,.6) !important;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none !important;
}
.btn-outline:hover { border-color: #fff !important; background: rgba(255,255,255,.1) !important; }

/* ── HEADER ─────────────────────────────────────────────────── */
.thrb-body #masthead,
.thrb-body .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
  margin-bottom: 0 !important;
  outline: none;
}

/* Hide B3 vehicle selector popup — this becomes a standalone page */
body.home #b3-hero-overlay,
body.home #b3-hero-modal,
body.home .b3-hero-wrap,
body.home [id^="b3-hero"] { display: none !important; }

.thrb-header-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.thrb-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.thrb-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.thrb-nav a {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: .9;
  transition: opacity .2s;
  text-decoration: none !important;
}
.thrb-nav a:hover,
.thrb-nav a.current-menu-item { opacity: 1; }

.thrb-header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.thrb-header-icons a {
  color: #fff !important;
  opacity: .85;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.thrb-header-icons a:hover { opacity: 1; }

/* Mobile hamburger */
.thrb-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.thrb-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO (exact homepage.html) ─────────────────────────────── */
.thrb-hero {
  position: relative;
  height: 724px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}
/* Layer 1: base photo full background */
.thrb-hero-layer-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-home-bg.webp');
  background-size: cover;
  background-position: center;
}
.thrb-hero-layer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
/* Layer 2: photo on right side via mask */
.thrb-hero-layer-top {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-home-top.webp');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: url('../img/hero-home-mask.svg');
  mask-image: url('../img/hero-home-mask.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.thrb-hero-layer-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.thrb-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 1236px;
  background: rgba(0,0,0,0.27);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thrb-hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.thrb-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff !important;
  opacity: 0.85;
  margin-bottom: 48px;
  max-width: 900px;
}
.thrb-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CATEGORY GRID ──────────────────────────────────────────── */
.thrb-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.thrb-cat-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none !important;
  border-radius: var(--radius);
  overflow: hidden;
}
.thrb-cat-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 348 / 430;
  border-radius: var(--radius);
  overflow: hidden;
}
.thrb-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.thrb-cat-card:hover .thrb-cat-card-img img { transform: scale(1.04); }
.thrb-cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.44);
  border-radius: var(--radius);
  pointer-events: none;
}
.thrb-cat-card-label {
  display: block;
  padding: 10px 4px 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary) !important;
  line-height: 1.137;
}
.thrb-cat-card-accent {
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .25s;
  margin-top: 6px;
}
.thrb-cat-card:hover .thrb-cat-card-accent { width: 100%; }

/* ── PRODUCT CARDS ──────────────────────────────────────────── */
.thrb-products-bg { background: #fff; }

/* Slides even hoog: Swiper geeft slides standaard hun eigen hoogte */
.thrb-bestseller-swiper .swiper-wrapper { align-items: stretch; }
.thrb-bestseller-swiper .swiper-slide {
  height: auto !important;
  display: flex;
}
.thrb-bestseller-swiper .swiper-slide > .thrb-pcard { width: 100%; }

/* Bestseller card — exact homepage.html .product-card */
.thrb-pcard {
  border: 1px solid #dbdbdb;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.thrb-pcard:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.thrb-pcard-img {
  display: block;
  height: 340px;            /* 300px beeld + 40px padding, gelijk aan de shopkaarten */
  overflow: hidden;
  padding: 40px 40px 0;
  box-sizing: border-box;
}
.thrb-pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
  border-radius: 10px;
}
.thrb-pcard-img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  border-radius: 10px;
}
.thrb-pcard:hover .thrb-pcard-img img { transform: scale(1.04); }
.thrb-pcard-info {
  /* Zijkanten op 40px zodat tekst en knop uitlijnen met de afbeelding */
  padding: 20px 40px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.thrb-pcard-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary) !important;
  margin-bottom: 10px;
  line-height: 1.137;
}
.thrb-pcard-price-block { margin-bottom: 16px; }
.thrb-price-label {
  font-size: 16px;
  color: var(--accent) !important;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.thrb-price-main-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent) !important;
  line-height: 1.137;
  margin-bottom: 2px;
}
.thrb-price-main-row .amount { color: var(--accent) !important; }
.thrb-price-incl-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--accent) !important;
}
.thrb-price-excl-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--grey) !important;
}
.thrb-price-excl-row strong { font-weight: 700; }
.thrb-price-excl-row .amount { color: var(--grey) !important; }
.btn-cart {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary) !important;
  background: #fff !important;
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background .15s, color .15s;
  text-decoration: none !important;
  margin-top: auto;
}
.btn-cart:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

.thrb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* WooCommerce overrides – product loop */
.thrb-body ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thrb-body ul.products li.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
  margin: 0;
  float: none;
  width: auto;
}
.thrb-body ul.products li.product:hover { box-shadow: 0 8px 24px rgba(69,40,59,.12); }

.thrb-body ul.products li.product a.woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}
.thrb-body ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  transition: transform .3s;
}
.thrb-body ul.products li.product:hover img { transform: scale(1.04); }

.thrb-body ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  padding: 16px 20px 4px;
  margin: 0;
}
.thrb-body ul.products li.product .price {
  padding: 4px 20px;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}
.thrb-body ul.products li.product .price del {
  color: var(--grey);
  font-weight: 400;
  font-size: 13px;
}
.thrb-body ul.products li.product .button,
.thrb-body ul.products li.product a.add_to_cart_button {
  display: block;
  margin: 12px 20px 20px;
  padding: 12px;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
  transition: background .15s, color .15s;
  text-decoration: none;
  cursor: pointer;
}
.thrb-body ul.products li.product .button:hover,
.thrb-body ul.products li.product a.add_to_cart_button:hover {
  background: var(--primary);
  color: #fff;
}
.thrb-body ul.products li.product .button.loading::after {
  border-top-color: var(--primary);
}

/* Carousel nav buttons */
.thrb-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.thrb-carousel-btn,
.thrb-body button.thrb-carousel-btn {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.thrb-carousel-btn:hover,
.thrb-body button.thrb-carousel-btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

/* ── WHY US ─────────────────────────────────────────────────── */
.thrb-why-bg { background: var(--light-bg); }
.thrb-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.thrb-why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  text-align: center;
}
.thrb-why-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.thrb-why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.thrb-why-text { font-size: 16px; color: var(--primary); line-height: 1.65; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.thrb-cta-banner {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 80px 50px;
  text-align: center;
}
.thrb-cta-watermark {
  position: absolute;
  left: 19%;
  top: 0;
  width: 691px;
  height: 100%;
  pointer-events: none;
}
.thrb-cta-watermark img { height: 100%; object-fit: cover; }
.thrb-cta-banner h2 {
  position: relative;
  color: #fff !important;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  margin-bottom: 8px;
}
.thrb-cta-banner p {
  position: relative;
  color: rgba(255,255,255,.75) !important;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
}
.thrb-cta-banner .btn-primary { position: relative; font-size: 16px; padding: 16px 36px; }

.thrb-accent-bar { height: 5px; background: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.thrb-body #colophon,
.thrb-footer {
  background: var(--dark) !important;
  color: #fff;
  padding: 60px 50px 32px;
}
.thrb-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 160px 260px;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.thrb-footer-logo img { height: 44px; margin-bottom: 24px; }
.thrb-footer-social { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 12px; }
.thrb-footer-social-icons { display: flex; gap: 12px; margin-top: 10px; }
.thrb-footer-social-icons a { color: rgba(255,255,255,.6); transition: color .15s; }
.thrb-footer-social-icons a:hover { color: #fff; }

/* NB: de B3-plugin zet h1–h6 op var(--3b-p) met !important —
   vandaar de hoge specificiteit hieronder. */
.thrb-footer-col h4,
body.thrb-body .thrb-footer .thrb-footer-col h4,
body.thrb-body #colophon .thrb-footer-col h4,
body.thrb-body .thrb-footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff !important;
}
.thrb-footer-col ul { list-style: none; padding: 0; margin: 0; }
.thrb-footer-col ul li { margin-bottom: 4px; }
.thrb-footer-col ul li a {
  font-size: 14px;
  color: var(--accent) !important;
  font-weight: 600;
  line-height: 1.9;
  transition: opacity .15s;
  text-decoration: none !important;
}
.thrb-footer-col ul li a:hover { opacity: .75; }
.thrb-footer-col p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.8); }
.thrb-footer-col a.accent { color: var(--accent); font-size: 14px; text-decoration: none; }

.thrb-footer-bottom {
  max-width: 1400px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.thrb-footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.thrb-footer-bottom a:hover { color: #fff; }

/* Storefront default footer reset */
.thrb-body .site-footer { background: var(--dark) !important; }
.thrb-body .site-info { display: none; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.thrb-body .woocommerce-breadcrumb {
  padding: 24px 50px;
  max-width: 1820px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  background: none;
}
.thrb-body .woocommerce-breadcrumb a { color: var(--grey); text-decoration: none; }
.thrb-body .woocommerce-breadcrumb a:hover { color: var(--primary); }

/* ── SHOP PAGE ──────────────────────────────────────────────── */
.thrb-body .woocommerce-page .site-main,
.thrb-body .woocommerce .site-main {
  padding: 0 50px 60px;
  max-width: 1820px;
  margin: 0 auto;
  width: 100%;
}

.thrb-body .woocommerce-products-header h1 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Ordering / results count */
.thrb-body .woocommerce-ordering select,
.thrb-body .woocommerce-result-count {
  font-family: var(--font);
  font-size: 14px;
  color: var(--grey);
}
.thrb-body .woocommerce-ordering select {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 12px;
}

/* Pagination */
.thrb-body .woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.thrb-body .woocommerce-pagination ul li { display: block; }
.thrb-body .woocommerce-pagination ul li a,
.thrb-body .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: background .15s;
}
.thrb-body .woocommerce-pagination ul li a:hover { background: var(--light-bg); }
.thrb-body .woocommerce-pagination ul li span.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── CART ───────────────────────────────────────────────────── */
.thrb-body .woocommerce-cart .site-main,
.thrb-body .woocommerce-cart div.main {
  padding: 40px 50px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.thrb-body table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.thrb-body table.shop_table thead tr th {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  border: none;
}
.thrb-body table.shop_table tbody tr td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 15px;
  color: var(--primary);
}
.thrb-body table.shop_table .product-name a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.thrb-body table.shop_table .product-name a:hover { color: var(--accent); }
.thrb-body table.shop_table .product-price,
.thrb-body table.shop_table .product-subtotal { font-weight: 700; color: var(--accent); }
.thrb-body table.shop_table .product-remove a {
  color: var(--grey) !important;
  font-size: 20px;
  font-weight: 400;
}
.thrb-body table.shop_table .product-remove a:hover { color: #c00 !important; }
.thrb-body table.shop_table .product-quantity input {
  width: 70px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--primary);
}

/* Cart totals */
.thrb-body .cart-collaterals { margin-top: 40px; display: flex; justify-content: flex-end; }
.thrb-body .cart_totals {
  width: 100%;
  max-width: 420px;
}
.thrb-body .cart_totals h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.thrb-body .cart_totals table { width: 100%; border-collapse: collapse; }
.thrb-body .cart_totals table th,
.thrb-body .cart_totals table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--primary);
}
.thrb-body .cart_totals table th { font-weight: 700; text-align: left; }
.thrb-body .cart_totals table .order-total th,
.thrb-body .cart_totals table .order-total td { font-size: 18px; font-weight: 700; }
.thrb-body .cart_totals table .order-total td { color: var(--accent); }

.thrb-body .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  margin-top: 20px;
  transition: background .15s;
  text-decoration: none;
}
.thrb-body .wc-proceed-to-checkout .checkout-button:hover { background: #d44f09; }

/* Update cart button */
.thrb-body .actions .button[name="update_cart"] {
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: 5px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
.thrb-body .actions .button[name="update_cart"]:hover {
  background: var(--primary);
  color: #fff;
}

/* ── CHECKOUT ───────────────────────────────────────────────── */
.thrb-body .woocommerce-checkout .site-main {
  padding: 40px 50px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.thrb-body .woocommerce-checkout h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Form fields */
.thrb-body .woocommerce-Input,
.thrb-body .woocommerce input[type="text"],
.thrb-body .woocommerce input[type="email"],
.thrb-body .woocommerce input[type="tel"],
.thrb-body .woocommerce input[type="password"],
.thrb-body .woocommerce textarea,
.thrb-body .woocommerce select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--primary);
  width: 100%;
  transition: border-color .2s;
}
.thrb-body .woocommerce input:focus,
.thrb-body .woocommerce textarea:focus,
.thrb-body .woocommerce select:focus {
  outline: none;
  border-color: var(--primary);
}
.thrb-body .woocommerce label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.thrb-body .woocommerce .form-row { margin-bottom: 16px; }
.thrb-body .woocommerce .form-row-first,
.thrb-body .woocommerce .form-row-last { width: calc(50% - 8px); display: inline-block; }
.thrb-body .woocommerce .form-row-first { margin-right: 16px; }

/* Order review */
.thrb-body #order_review_heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.thrb-body table#order_review { width: 100%; border-collapse: collapse; }
.thrb-body table#order_review thead tr th {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}
.thrb-body table#order_review tbody tr td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.thrb-body table#order_review tfoot tr th { font-weight: 600; padding: 14px 20px; text-align: left; }
.thrb-body table#order_review tfoot tr td { padding: 14px 20px; font-weight: 700; color: var(--accent); }
.thrb-body table#order_review tfoot .order-total th,
.thrb-body table#order_review tfoot .order-total td { font-size: 18px; }

/* Payment methods */
.thrb-body #payment .payment_methods { margin: 0; padding: 0; list-style: none; }
.thrb-body #payment .payment_methods li { padding: 16px 0; border-bottom: 1px solid var(--border); }
.thrb-body #payment .payment_methods li label {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
}
.thrb-body #payment .payment_box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--grey);
}
.thrb-body #place_order {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .15s;
  margin-top: 24px;
  font-family: var(--font);
}
.thrb-body #place_order:hover { background: #d44f09; }

/* Checkout layout */
.thrb-body #customer_details { grid-column: 1; }
.thrb-body #order_review_wrapper { grid-column: 2; }
.thrb-body .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* ── MY ACCOUNT ─────────────────────────────────────────────── */
.thrb-body .woocommerce-account .site-main {
  padding: 40px 50px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.thrb-body .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thrb-body .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: background .15s;
  text-decoration: none;
}
.thrb-body .woocommerce-MyAccount-navigation ul li a:hover,
.thrb-body .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--primary);
  color: #fff;
}

.thrb-body .woocommerce-MyAccount-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.thrb-body .woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; }
.thrb-body .woocommerce-MyAccount-content table thead tr th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}
.thrb-body .woocommerce-MyAccount-content table tbody tr td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.thrb-body .woocommerce-MyAccount-content .button {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.thrb-body .woocommerce-MyAccount-content .button:hover { background: var(--dark); }

/* ── NOTICES / MESSAGES ─────────────────────────────────────── */
.thrb-body .woocommerce-message,
.thrb-body .woocommerce-error,
.thrb-body .woocommerce-info {
  border-radius: var(--radius);
  border-top: none;
  margin-bottom: 24px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
}
.thrb-body .woocommerce-message {
  background: #f0fae8;
  border-left: 4px solid #5dc935;
  color: var(--primary);
}
.thrb-body .woocommerce-error {
  background: #fdf0f0;
  border-left: 4px solid #c00;
  color: #c00;
}
.thrb-body .woocommerce-info {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  color: var(--primary);
}
.thrb-body .woocommerce-message a.button,
.thrb-body .woocommerce-info a.button {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 12px;
  transition: background .15s;
}
.thrb-body .woocommerce-message a.button:hover { background: var(--dark); }

/* Cart count badge */
.thrb-cart-icon { position: relative; }
.thrb-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.thrb-cart-count.is-leeg { display: none; }
.thrb-cart-count.thrb-bump { animation: thrb-cart-bump .45s ease; }
@keyframes thrb-cart-bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* ------------------------------------------------------------------ */
/*  AJAX toevoegen aan winkelwagen — standaard "Bekijk winkelwagen"-
/*  link verbergen; de knop zelf geeft de bevestiging.
/* ------------------------------------------------------------------ */
.thrb-body a.added_to_cart,
.thrb-body .thrb-card a.added_to_cart,
.thrb-body li.product a.added_to_cart { display: none !important; }

.thrb-body .thrb-card__btn.loading,
.thrb-body .thrb-card__btn.added { position: relative; }

.thrb-body .thrb-card__btn.loading { opacity: .65; pointer-events: none; }
.thrb-body .thrb-card__btn.loading::after { display: none; }

.thrb-body .thrb-card__btn.thrb-toegevoegd {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* Qty +/- buttons */
.thrb-body .quantity { display: flex; align-items: center; gap: 8px; }
.thrb-qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.thrb-qty-btn:hover { background: var(--light-bg); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .thrb-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .thrb-product-grid { grid-template-columns: repeat(2, 1fr); }
  .thrb-body ul.products { grid-template-columns: repeat(3, 1fr); }
  .thrb-why-grid { grid-template-columns: repeat(2, 1fr); }
  .thrb-footer-grid { grid-template-columns: 1fr 1fr; }
  .thrb-body .woocommerce-page.single-product div.product { grid-template-columns: 1fr; gap: 32px; }
  .thrb-body .woocommerce-account .site-main { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .thrb-body ul.products { grid-template-columns: repeat(2, 1fr); }
  .thrb-body .col2-set { grid-template-columns: 1fr; }
  .thrb-body .form-row-first,
  .thrb-body .form-row-last { width: 100%; display: block; }
  .thrb-body .form-row-first { margin-right: 0; }
  .thrb-cart-collaterals { justify-content: stretch; }
  .thrb-body .cart_totals { max-width: 100%; }
}

@media (max-width: 768px) {
  .thrb-header-inner { padding: 0 20px; }
  .thrb-nav { display: none; }
  .thrb-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--primary); padding: 20px; gap: 16px; z-index: 100; }
  .thrb-nav-toggle { display: flex; }

  .thrb-hero-content { padding: 40px 24px; }
  .thrb-hero-content h1 { font-size: 32px; }
  .thrb-section { padding: 48px 20px; }
  .thrb-container { padding: 0 20px; }
  .thrb-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .thrb-product-grid { grid-template-columns: 1fr; }
  .thrb-body ul.products { grid-template-columns: 1fr; }
  .thrb-why-grid { grid-template-columns: 1fr; }
  .thrb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .thrb-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .thrb-cta-banner h2 { font-size: 36px; }
  .thrb-cta-banner p { font-size: 20px; }
  .thrb-body .woocommerce-cart .site-main,
  .thrb-body .woocommerce-checkout .site-main,
  .thrb-body .woocommerce-account .site-main { padding: 24px 20px 60px; }
  .thrb-body .woocommerce-breadcrumb { padding: 16px 20px; }
  .thrb-body .woocommerce-page .site-main { padding: 0 20px 60px; }
  .thrb-body .single-product .site-main { padding: 0 20px 60px; }
}

/* =============================================================
   VEHICLE SELECTOR PAGE (page-vehicle-selector.php)
   ============================================================= */

/* ── Hero ───────────────────────────────────────────────────── */
.vs-hero {
  position: relative;
  min-height: 724px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vs-hero-bg > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}
.vs-hero-bg-top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 107.33%;
  object-fit: cover;
  top: 1.91%;
}
.vs-hero-bg-overlay--dark {
  background: rgba(0,0,0,.48);
}

/* Glass panel */
.vs-hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4.4px);
  -webkit-backdrop-filter: blur(4.4px);
  border-radius: 10px;
  padding: 60px 50px 50px;
  width: min(1518px, calc(100% - 100px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.vs-hero-title {
  color: #fff !important;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* Cascade dropdowns */
.vs-selector-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.vs-selector-dropdown {
  position: relative;
}
.vs-selector-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 68px;
  background: #f6f6f6;
  border: none;
  border-radius: 5px;
  padding: 0 48px 0 22px;
  font-size: 16px;
  color: #666;
  font-family: var(--font);
  font-weight: 400;
  outline: none;
  transition: box-shadow .2s;
  cursor: pointer;
}
.vs-selector-dropdown select:focus {
  box-shadow: 0 0 0 2px var(--accent);
}
.vs-selector-dropdown select:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.vs-selector-caret {
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}

/* Hero buttons */
.vs-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.btn-outline-white,
.thrb-body button.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid #fff !important;
  border-radius: 5px;
  height: 57px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ── Results section ─────────────────────────────────────── */
.vs-results-section {
  background: #f8f8f8;
  padding: 60px 0 80px;
}
.vs-container {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 50px;
}
.vs-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.vs-results-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary) !important;
}
.vs-btn-change {
  flex-shrink: 0;
  background: #fbf6fa;
  color: var(--primary);
  border: 0.5px solid var(--primary);
  border-radius: 10px;
  height: 57px;
  padding: 0 28px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
}
.vs-btn-change:hover { background: var(--light-bg); }

/* Product grid (4 cols) */
.vs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vs-product-card {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.vs-product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.vs-product-card-img-wrap {
  display: block;
  height: 280px;
  overflow: hidden;
}
.vs-product-card-img-wrap img,
.vs-product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.vs-product-card:hover .vs-product-card-img { transform: scale(1.04); }
.vs-product-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-bg);
}
.vs-product-card-body {
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vs-product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary) !important;
}
.vs-product-price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent) !important;
  margin-top: 6px;
}
.vs-product-price-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent) !important;
}
.vs-price-incl-note {
  font-size: 13px;
  font-weight: 400;
}
.vs-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.vs-price-excl {
  font-size: 14px;
  font-weight: 700;
  color: var(--grey) !important;
}
.vs-price-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey) !important;
}
.vs-product-card-footer {
  padding: 0 22px 22px;
}
.vs-btn-add-cart {
  display: block;
  width: 100%;
  height: 57px;
  line-height: 57px;
  text-align: center;
  background: #fff !important;
  border: 1px solid var(--primary) !important;
  border-radius: 5px !important;
  color: var(--primary) !important;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none !important;
}
.vs-btn-add-cart:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* =============================================================
   SHOP / CATEGORY ARCHIVE — match category.html design
   (overrides B3 plugin inline styling)
   ============================================================= */

/* Container (category.html .container: max 1820, pad 50) */
.thrb-cat-container {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ── Hero banner (413px) ───────────────────────────────────── */
.thrb-cat-hero {
  position: relative;
  height: 413px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.thrb-cat-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.thrb-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
}
.thrb-cat-hero .thrb-cat-container {
  position: relative;
  z-index: 2;
}
.thrb-cat-hero__content {
  max-width: 900px;
  margin-right: auto;
  background: rgba(0,0,0,0.27);
  backdrop-filter: blur(4.4px);
  -webkit-backdrop-filter: blur(4.4px);
  border-radius: 10px;
  padding: 36px 48px;
  color: #fff;
  text-align: left;
}
.thrb-cat-hero__title {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff !important;
}
.thrb-cat-hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 806px;
  color: #fff !important;
  margin: 0;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.thrb-breadcrumb {
  padding: 40px 0; /* gelijk aan de breadcrumb op productdetail */
  font-size: 16px;
  font-weight: 600;
}
.thrb-breadcrumb__home,
.thrb-breadcrumb__home a { color: #919191 !important; text-decoration: none !important; }
.thrb-breadcrumb__home a:hover { text-decoration: underline !important; }
.thrb-breadcrumb__current { color: #1a1a1a !important; }

/* Verberg dubbele titel/breadcrumb van Storefront + plugin cat-tiles */
.thrb-body.woocommerce-shop .woocommerce-products-header,
.thrb-body.tax-product_cat .woocommerce-products-header,
.thrb-body.woocommerce-shop .site-main > h1.page-title,
.thrb-body.tax-product_cat .site-main > h1.page-title,
.thrb-body .b3-cat-tiles { display: none !important; }

/* ── Subcategory tabs (oranje pills, boven productkolom) ───── */
.thrb-products-topbar {
  display: grid;
  grid-template-columns: 413px 1fr;
  gap: 32px;
  padding-top: 28px;
}
.thrb-subcategory-tabs {
  padding: 12px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.thrb-subcategory-tabs a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background .2s, color .2s;
  background: rgba(234, 91, 12, 0.06);
  color: var(--primary) !important;
}
.thrb-subcategory-tabs a:hover { background: rgba(234, 91, 12, 0.15); }
.thrb-subcategory-tabs a.active {
  background: var(--accent);
  color: #fff !important;
}

/* ── FILTERS + sort row ────────────────────────────────────── */
.thrb-filters-sort-row {
  display: grid;
  grid-template-columns: 413px 1fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0 16px;
}
.thrb-filters-sort-row__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.thrb-filters-sort-row__right {
  display: flex;
  justify-content: flex-end;
}
.thrb-products-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fbf6fa;
  border: 0.5px solid var(--primary);
  height: 57px;
  border-radius: 10px;
  padding: 0 20px;
  width: 427px;
  max-width: 100%;
}
.thrb-products-sort__icon { flex-shrink: 0; }
.thrb-products-sort__label {
  font-size: 20px;
  font-weight: 600;
  color: #8d6e82;
  white-space: nowrap;
}
.thrb-products-sort__select {
  flex: 1;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary) !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.thrb-products-sort__caret { font-size: 16px; color: var(--primary); pointer-events: none; }

/* Archive page title binnen container (design) */
.thrb-body.woocommerce-shop .woocommerce-products-header,
.thrb-body.tax-product_cat .woocommerce-products-header,
.thrb-body.post-type-archive-product .woocommerce-products-header {
  max-width: 1820px;
  margin: 0 auto;
  padding: 28px 50px 0;
}
.thrb-body.woocommerce-shop h1.page-title,
.thrb-body.tax-product_cat h1.page-title,
.thrb-body.post-type-archive-product h1.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary) !important;
  margin: 0;
}
/* h1 die direct in .site-main staat (B3 plugin rendering) */
.thrb-body.tax-product_cat .site-main > h1.page-title,
.thrb-body.woocommerce-shop .site-main > h1.page-title,
.thrb-body.post-type-archive-product .site-main > h1.page-title {
  max-width: 1820px;
  margin: 0 auto;
  padding: 28px 50px 8px;
}

/* 404 pagina */
.thrb-body.error404 .site-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 50px 80px;
}
.thrb-body.error404 .page-title,
.thrb-body.error404 h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary) !important;
}
.thrb-body.error404 .page-content,
.thrb-body.error404 p { color: var(--text) !important; }

/* Layout: 413px sidebar + products (category.html .category-layout) */
.thrb-category-layout {
  display: grid;
  grid-template-columns: 413px 1fr;
  gap: 32px;
  padding: 16px 0 48px;
  align-items: start;
}
.thrb-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thrb-filter-toggle-btn { display: none; }

/* ── Filter blocks (exact category.html .filter-block) ─────── */
.filter-block {
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}
.filter-block__header {
  background: var(--primary);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.filter-block__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.filter-block__arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .25s;
  flex-shrink: 0;
}
.filter-block.collapsed .filter-block__arrow { transform: rotate(-135deg); }
.filter-block__body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-block.collapsed .filter-block__body { display: none; }

/* Checkboxes */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  cursor: pointer;
  margin: 0;
}
.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

/* Selects */
.filter-group { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2345283b'/%3E%3C/svg%3E") no-repeat right 14px center !important;
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 10px 36px 10px 16px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  width: 100%;
  cursor: pointer;
}
.filter-select:focus { outline: 2px solid var(--accent); }
.filter-select:disabled { opacity: .55; cursor: not-allowed; }

.filter-reset {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary) !important;
  text-decoration: underline !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  text-align: left;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}
.filter-reset:focus,
.filter-reset:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.filter-reset:hover { color: var(--accent) !important; }
.filter-reset--all { padding: 4px 0 0 4px !important; }

/* ── Prijs slider (exact category.html, dual handle) ───────── */
.price-range { display: flex; flex-direction: column; gap: 4px; }
.price-slider-wrap {
  position: relative;
  height: 20px;
  margin: 14px 0 4px;
}
.price-slider-track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 3px;
  background: #d9d9d9;
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}
.price-slider__input {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  border: none !important;
  margin: 0;
  padding: 0 !important;
  z-index: 1;
  outline: none !important;
  box-shadow: none !important;
}
.price-slider__input:focus,
.price-slider__input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.price-slider__input:focus::-webkit-slider-thumb { box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.price-slider__input:focus::-moz-range-thumb { box-shadow: none; }
.price-slider__input::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #c0c0c0;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.price-slider__input::-moz-range-thumb {
  pointer-events: auto;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #c0c0c0;
  border: none;
  cursor: pointer;
}
.price-slider__input::-webkit-slider-runnable-track { background: transparent; }
.price-slider__input::-moz-range-track { background: transparent; }
.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

/* Products area */
.thrb-products-area { min-width: 0; }

/* Verouderde plugin-sidebar (wordt niet meer gerenderd) */
.thrb-body .b3-main-area { gap: 32px !important; align-items: flex-start; padding: 0 0 48px; width: 100%; }
.thrb-body #b3-sidebar { width: 413px !important; min-width: 413px !important; flex-shrink: 0; }

/* Filter blocks: purple headers, light body (design .filter-block) */
.thrb-body #b3-sidebar .fb-section {
  border-radius: 10px !important;
  overflow: hidden;
  background: #fafafa !important;
  border: none !important;
  margin: 0 0 16px !important;
}
.thrb-body #b3-sidebar .fb-title {
  background: var(--primary) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 18px 24px !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 0 !important;
}
.thrb-body #b3-sidebar .fb-title img.emoji { display: none !important; }
.thrb-body #b3-sidebar .fb-arrow { color: #fff !important; }
.thrb-body #b3-sidebar .fb-body {
  padding: 16px 24px 24px !important;
  background: #fafafa !important;
}
.thrb-body #b3-sidebar label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
}
.thrb-body #b3-sidebar input[type="checkbox"] { accent-color: var(--accent); width: 18px; height: 18px; }
.thrb-body #b3-sidebar select {
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  background-color: #fff !important;
  width: 100%;
}
.thrb-body #b3-sidebar button,
.thrb-body #b3-sidebar .button,
.thrb-body #b3-sidebar input[type="submit"] {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  width: 100%;
  cursor: pointer;
}

/* Results count */
.thrb-body .fb-result-count {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
}

/* Product grid: 3 kolommen naast de sidebar (design)
   NB: #b3-results selector nodig om plugin-inline-CSS te verslaan */
.thrb-body ul.products,
.thrb-body ul.products.b3-results-list,
body.thrb-body #b3-results ul.products,
body.thrb-body #b3-results ul.products.b3-results-list,
body.thrb-body #b3-results .b3-results-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.thrb-body ul.products li.product,
.thrb-body ul.products.b3-results-list li.product,
body.thrb-body #b3-results li.product,
body.thrb-body #b3-results ul.products li.product,
body.thrb-body #b3-results ul.products.b3-results-list li.product,
body.thrb-body #b3-results .b3-results-list li.product {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  float: none !important;
  margin: 0 !important;
}

/* Product card buttons: outline style (design .product-card__btn) */
.thrb-body ul.products li.product .button,
.thrb-body ul.products li.product a.add_to_cart_button,
.thrb-body ul.products li.product a.button.product_type_variable {
  background: #fff !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  text-align: center;
}
.thrb-body ul.products li.product .button:hover,
.thrb-body ul.products li.product a.add_to_cart_button:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* Product name + price in loop */
.thrb-body ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary) !important;
}
.thrb-body ul.products li.product .price {
  color: var(--accent) !important;
  font-weight: 700;
}

/* Category tiles bovenaan shop (B3): stijl als design subcategory tabs */
.thrb-body .b3-cat-tiles a { text-decoration: none !important; }

/* Pagination (design) */
.thrb-body .woocommerce-pagination ul.page-numbers {
  border: none !important;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.thrb-body .woocommerce-pagination ul.page-numbers li {
  border: none !important;
}
.thrb-body .woocommerce-pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  border-radius: 6px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary) !important;
  background: transparent !important;
}
.thrb-body .woocommerce-pagination .page-numbers.current {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ── Productkaart (exact category.html .product-card) ──────── */
.thrb-body li.product.thrb-card,
body.thrb-body #b3-results li.product.thrb-card,
body.thrb-body #b3-results .b3-results-list li.product.thrb-card {
  background: #fff;
  border: 1px solid #dbdbdb !important;
  border-radius: 10px !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  transition: box-shadow .25s, transform .2s;
}
.thrb-body li.product.thrb-card:hover {
  box-shadow: 0 8px 28px rgba(69,40,59,.12);
  transform: translateY(-2px);
}
.thrb-card__img-wrap {
  display: block;
  height: 340px;
  overflow: hidden;
  padding: 40px 40px 0;
  box-sizing: border-box;
}
.thrb-body li.product.thrb-card .thrb-card__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  aspect-ratio: auto !important;
  transition: transform .3s;
  margin: 0 !important;
  border-radius: 10px !important;
}
.thrb-body li.product.thrb-card:hover .thrb-card__img-wrap img { transform: scale(1.04); }
.thrb-card__img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  border-radius: 10px;
}

/* Plaatshouder "afbeelding volgt" — zelfde vorm als een echte productfoto */
.thrb-body img.thrb-placeholder,
.thrb-body img.woocommerce-placeholder {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 10px !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
}
.thrb-body .thrb-pd-gallery .thrb-gallery-main img.woocommerce-placeholder,
.thrb-body .thrb-gallery-main img.thrb-placeholder {
  border-radius: var(--radius) !important;
}
.thrb-card__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.thrb-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.137;
  margin: 0;
}
.thrb-card__name a {
  color: var(--primary) !important;
  text-decoration: none !important;
}
.thrb-card__price-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent) !important;
}
.thrb-card__price-main {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent) !important;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.thrb-card__price-main .amount { color: var(--accent) !important; }
.thrb-card__price-incl {
  font-size: 16px;
  font-weight: 400;
  color: var(--accent) !important;
}
.thrb-card__price-excl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.thrb-card__price-excl-num,
.thrb-card__price-excl-num .amount { font-weight: 700; color: var(--grey) !important; }
.thrb-card__price-excl-txt { font-weight: 400; color: var(--grey) !important; }
.thrb-body li.product.thrb-card .thrb-card__btn {
  margin: 12px 0 0 !important;
  width: 100%;
  padding: 16px !important;
  border-radius: 5px !important;
  border: 1.5px solid var(--primary) !important;
  background: #fff !important;
  color: var(--primary) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none !important;
  transition: background .2s, color .2s;
  cursor: pointer;
  margin-top: auto !important;
}
.thrb-body li.product.thrb-card .thrb-card__btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

#b3-results.fb-loading { opacity: .4; pointer-events: none; }

@media (max-width: 1100px) {
  .thrb-category-layout { grid-template-columns: 1fr; }
  .thrb-sidebar { display: none; }
  .thrb-sidebar.open { display: flex; }
  .thrb-filter-toggle-btn {
    display: inline-block;
    margin: 8px 0 4px;
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
  .thrb-body .b3-main-area { flex-direction: column !important; }
  .thrb-body #b3-sidebar { width: 100% !important; min-width: 0 !important; }
  .thrb-products-topbar,
  .thrb-filters-sort-row { grid-template-columns: 1fr; }
  .thrb-products-topbar__spacer { display: none; }
  .thrb-body ul.products,
  .thrb-body ul.products.b3-results-list { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .thrb-cat-container { padding: 0 20px; }
  .thrb-cat-hero__content { padding: 24px; }
  .thrb-products-sort { width: 100%; }
  .thrb-products-sort__label, .thrb-products-sort__select { font-size: 16px; }
  .thrb-body ul.products,
  .thrb-body ul.products.b3-results-list { grid-template-columns: 1fr !important; }
}


/* =============================================================
   SINGLE PRODUCT — exact product-details.html
   ============================================================= */

.thrb-pd-container {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ── Breadcrumb (exact design: padding 40px 0, 14px, '›') ───── */
.thrb-pd-breadcrumb { padding: 40px 0; }
.thrb-pd-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6d6d6d;
}
.thrb-pd-breadcrumb ol li { color: #6d6d6d; }
.thrb-pd-breadcrumb ol li a { color: #6d6d6d !important; text-decoration: none !important; }
.thrb-pd-breadcrumb ol li a:hover { text-decoration: underline !important; }
.thrb-pd-breadcrumb ol li + li::before { content: '\203A'; margin-right: 4px; color: #6d6d6d; }
.thrb-pd-breadcrumb ol li:last-child { color: var(--primary); }

/* ── Product section: gallery | info ────────────────────────── */
.thrb-pd-section { padding: 0 0 60px; }
.thrb-pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery (design .gallery) */
.thrb-pd-gallery { display: flex; flex-direction: column; gap: 16px; }
.thrb-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light-bg);
}
.thrb-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.thrb-gallery-thumbs { display: flex; gap: 12px; flex-wrap: wrap; }
.thrb-thumb {
  width: 198px;
  height: 171px;
  max-width: calc(25% - 9px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.thrb-thumb.active { border: 1px solid #C3C3C3; padding: 7px; }
.thrb-thumb:hover { border-color: var(--accent); }
.thrb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Info-kolom (design .product-info) */
.thrb-pd-info { display: flex; flex-direction: column; gap: 20px; }

.thrb-pd-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6d6d6d;
}
.thrb-badge-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #5dc935;
  flex-shrink: 0;
}
.thrb-pd-badge--out .thrb-badge-dot { background: #d9534f; }

.thrb-pd-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary) !important;
  margin: 0;
}

.thrb-pd-price-block { display: flex; flex-direction: column; gap: 6px; }
.thrb-pd-price-label {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent) !important;
}
.thrb-pd-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.thrb-pd-price-main,
.thrb-pd-price-main .amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent) !important;
}
.thrb-pd-price-tax {
  font-size: 14px;
  color: #8d8d8d;
  font-weight: 400;
}
.thrb-pd-price-note {
  font-size: 14px;
  font-weight: 600;
  color: #6d6d6d;
  font-style: italic;
  margin: 0;
}
.thrb-pd-short { font-size: 16px; line-height: 1.7; color: var(--text); }
.thrb-pd-short p { margin: 0 0 10px; }

/* ── Configurator: WC variations als design .config-item ────── */
.thrb-pd-cart form.cart { margin: 0 !important; }
.thrb-pd-cart table.variations {
  border: none !important;
  margin: 0 !important;
  width: 100%;
  counter-reset: thrb-config;
}
.thrb-pd-cart table.variations tr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  background: none !important;
}
.thrb-pd-cart table.variations th,
.thrb-pd-cart table.variations td {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  text-align: left;
}
.thrb-pd-cart table.variations th.label label {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary) !important;
  margin: 0;
}
.thrb-pd-cart table.variations th.label label::before {
  counter-increment: thrb-config;
  content: counter(thrb-config) '. ';
}
.thrb-pd-cart table.variations td.value { position: relative; }
.thrb-pd-cart table.variations select {
  width: 100%;
  height: 56px;
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 0 44px 0 16px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2345283b'/%3E%3C/svg%3E") no-repeat right 16px center !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.thrb-pd-cart table.variations select:focus { outline: none; border-color: var(--primary) !important; }
.thrb-pd-cart .reset_variations { font-size: 14px; color: var(--grey) !important; }

/* Variation prijsweergave verbergen (prijsblok staat al bovenaan) */
.thrb-pd-cart .woocommerce-variation-price { display: none; }

/* Qty verbergen (design heeft geen aantal-veld) */
.thrb-pd-cart .quantity,
.thrb-pd-cart .thrb-qty-btn { display: none !important; }

/* Add to cart knop (design .btn-cart) */
.thrb-pd-cart .single_add_to_cart_button,
body.thrb-body.woocommerce .thrb-pd-cart form.cart .single_add_to_cart_button.button,
body.thrb-body.woocommerce .thrb-pd-cart .button.alt {
  width: 100%;
  max-width: 371px;
  height: 57px;
  border: 2px solid var(--primary) !important;
  border-radius: 5px !important;
  background: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  text-align: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin: 0 !important;
  padding: 0 24px !important;
}
.thrb-pd-cart .single_add_to_cart_button:hover:not(.disabled),
body.thrb-body.woocommerce .thrb-pd-cart form.cart .single_add_to_cart_button.button:hover:not(.disabled) {
  background: var(--primary) !important;
  color: #fff !important;
}
.thrb-pd-cart .single_add_to_cart_button.disabled { opacity: .45; }
/* Kolom: compositie → samengestelde prijs → knop (volle breedte) */
.thrb-pd-cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* ── Uw compositie (design .composition) ────────────────────── */
.thrb-composition {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}
.thrb-composition-header {
  background: var(--primary);
  color: #fff;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.thrb-composition-header .thrb-chevron {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transition: transform .3s;
}
.thrb-composition-header.open .thrb-chevron { transform: rotate(-135deg); }
.thrb-composition-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height .3s ease, padding .3s;
}
.thrb-composition-body.open { max-height: 300px; padding: 12px 0; }
.thrb-composition-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 16px;
}
.thrb-composition-row .comp-label { color: #6d6d6d; font-weight: 400; }
.thrb-composition-row .comp-value { color: var(--primary); font-weight: 700; }

/* ── Samengestelde prijs (boven de Toevoegen-knop) ──────────── */
.thrb-composed-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.thrb-composed-price__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.thrb-composed-price__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.thrb-composed-price__main {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.thrb-composed-price__tax {
  font-size: 14px;
  color: #8d8d8d;
  font-weight: 400;
}

/* Prijsblok: excl-regel iets ingetogener */
.thrb-pd-price-row--excl .thrb-pd-price-main,
.thrb-pd-price-row--excl .thrb-pd-price-main .amount {
  font-size: 18px;
  color: var(--grey) !important;
}

/* ── Tabs (design .tabs-section) ────────────────────────────── */
.thrb-pd-tabs { padding: 40px 0 60px; background: #fff; }
.thrb-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
}
.thrb-tab-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary) !important;
  background: none !important;
  border: none !important;
  border-bottom: 6px solid transparent !important;
  margin-bottom: -2px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  border-radius: 10px 10px 0 0 !important;
  font-family: var(--font);
}
.thrb-tab-btn:first-child { margin-left: 12px; }
.thrb-tab-btn.active {
  background: #f3f3f3 !important;
  border-bottom-color: var(--primary) !important;
}
.thrb-tab-btn:hover:not(.active) { background: var(--light-bg) !important; }
.thrb-tab-panel {
  display: none;
  padding: 40px 32px;
  background: #fff;
  border-radius: 0 10px 10px 10px;
}
.thrb-tab-panel.active { display: block; }
.thrb-tab-panel p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--primary);
  margin: 0 0 16px;
}
.thrb-tab-panel p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/*  Paginering productoverzicht (exact category.html)
/* ------------------------------------------------------------------ */
.thrb-body .pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 16px 0 24px;
  border: none;
  margin: 0;
}
.thrb-body .pagination__item {
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  cursor: pointer;
  padding: 0 4px;
  transition: background .2s, color .2s;
}
.thrb-body .pagination__item:hover {
  background: rgba(69, 40, 59, .08);
}
.thrb-body .pagination__item.active,
.thrb-body .pagination__item[aria-current="page"] {
  background: var(--primary);
  color: #fff !important;
}
.thrb-body .pagination__gap {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--grey);
}

/* Downloads-lijst */
.thrb-downloads-list { list-style: none; margin: 0; padding: 0; }
.thrb-downloads-list li {
  border-bottom: 1px solid var(--border);
  padding: 14px 4px;
}
.thrb-downloads-list li:last-child { border-bottom: none; }
.thrb-downloads-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none !important;
}
.thrb-downloads-list a::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
}
.thrb-downloads-list a:hover { color: var(--accent) !important; }

/* Specs table (design .specs-table) */
.thrb-specs-table { width: 100%; border-collapse: collapse; }
.thrb-specs-table tr:nth-child(odd) td { background: var(--light-bg) !important; }
.thrb-specs-table tr:nth-child(even) td { background: #fff !important; }
.thrb-specs-table td {
  padding: 14px 20px !important;
  font-size: 16px;
  color: var(--primary) !important;
  border: 1px solid var(--border) !important;
}
.thrb-specs-table td:first-child { font-weight: 600; width: 40%; }
.thrb-specs-table td:last-child { font-weight: 700; }

/* ── Related products (design .related-section) ─────────────── */
.thrb-related-section {
  padding: 40px 0 60px;
  background: #f8f8f8;
  width: 100%;
}
.thrb-related-section .section-title { margin-bottom: 32px; }
.thrb-body ul.products.thrb-related-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.thrb-body ul.products.thrb-related-grid li.product.thrb-card { background: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .thrb-pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .thrb-body ul.products.thrb-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .thrb-pd-container { padding: 0 20px; }
  .thrb-thumb { width: calc(25% - 9px); height: auto; aspect-ratio: 198 / 171; }
  .thrb-body ul.products.thrb-related-grid { grid-template-columns: 1fr !important; }
  .thrb-tab-btn { padding: 12px 16px; font-size: 14px; }
  .thrb-tab-panel { padding: 24px 16px; }
}

/* =============================================================
   WOOCOMMERCE NOTICES — huisstijl
   ============================================================= */

.thrb-body .woocommerce-notices-wrapper {
  max-width: 1820px;
  margin: 20px auto 0;
  padding: 0 50px;
}
@media (max-width: 600px) {
  .thrb-body .woocommerce-notices-wrapper { padding: 0 20px; }
}

.thrb-body .woocommerce-message,
.thrb-body .woocommerce-info,
.thrb-body .woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-top: none !important;
  border-left: 4px solid var(--accent) !important;
  border-radius: 10px !important;
  padding: 18px 24px !important;
  margin: 0 0 24px !important;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  box-shadow: 0 2px 12px rgba(69,40,59,.08);
  list-style: none;
}
.thrb-body .woocommerce-message::before,
.thrb-body .woocommerce-info::before,
.thrb-body .woocommerce-error::before { display: none !important; }

/* Succes: groen accent (zelfde groen als voorraadbadge) */
.thrb-body .woocommerce-message { border-left-color: #5dc935 !important; }
/* Fout: rood accent */
.thrb-body .woocommerce-error,
.thrb-body ul.woocommerce-error li { color: var(--primary) !important; }
.thrb-body .woocommerce-error { border-left-color: #d9534f !important; }

/* Knop in de notice (bijv. "Bekijk winkelwagen") — oranje btn-primary */
.thrb-body .woocommerce-message .button.wc-forward,
.thrb-body .woocommerce-info .button.wc-forward,
.thrb-body .woocommerce-message a.button,
body.thrb-body.woocommerce .woocommerce-message a.button {
  order: 2;
  margin-left: auto;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s;
}
.thrb-body .woocommerce-message .button.wc-forward:hover,
body.thrb-body.woocommerce .woocommerce-message a.button:hover {
  background: #c94d0a !important;
  color: #fff !important;
}

/* =============================================================
   CART & CHECKOUT (WooCommerce Blocks)
   ============================================================= */

.thrb-body .wp-block-woocommerce-cart,
.thrb-body .wp-block-woocommerce-checkout {
  max-width: none;
  margin: 0;
  padding: 0 0 24px;
}

/* Primary action buttons (oranje, design btn-primary) */
.thrb-body .wc-block-components-button:not(.is-link),
.thrb-body .wc-block-cart__submit-button,
.thrb-body .wc-block-components-checkout-place-order-button {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  transition: background .15s;
}
.thrb-body .wc-block-components-button:not(.is-link):hover,
.thrb-body .wc-block-cart__submit-button:hover,
.thrb-body .wc-block-components-checkout-place-order-button:hover {
  background: #c94d0a !important;
  color: #fff !important;
}
.thrb-body .wc-block-components-button .wc-block-components-button__text { color: #fff !important; }

/* Titels en links */
.thrb-body .wc-block-components-title,
.thrb-body .wc-block-components-checkout-step__title {
  color: var(--primary) !important;
  font-family: var(--font) !important;
}
.thrb-body .wc-block-components-product-name { color: var(--primary) !important; font-weight: 600; }
.thrb-body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value { color: var(--accent) !important; }

/* Form velden checkout */
.thrb-body .wc-block-components-text-input input,
.thrb-body .wc-block-components-combobox .components-combobox-control__suggestions-container input,
.thrb-body .wc-block-components-select .components-custom-select-control__button {
  border-radius: 8px !important;
  border-color: #c0c0c0 !important;
  font-family: var(--font) !important;
}
.thrb-body .wc-block-components-text-input input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px var(--primary) !important;
}

/* Classic checkout fallback (shortcode) */
.thrb-body.woocommerce-checkout form.checkout h3 { color: var(--primary) !important; }
.thrb-body.woocommerce-checkout .woocommerce-input-wrapper input,
.thrb-body.woocommerce-checkout .woocommerce-input-wrapper select,
.thrb-body.woocommerce-checkout .woocommerce-input-wrapper textarea {
  border: 1px solid #c0c0c0 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-family: var(--font) !important;
}
.thrb-body #place_order {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  padding: 16px 32px !important;
}
.thrb-body #place_order:hover { background: #c94d0a !important; }

/* ── DEFAULT PAGE TEMPLATE ─────────────────────────────────── */
.thrb-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 50px 80px;
}
/* WooCommerce-pagina's (winkelwagen/afrekenen/account): zelfde breedte als de rest van de site */
.thrb-body.woocommerce-cart .thrb-page-container,
.thrb-body.woocommerce-checkout .thrb-page-container,
.thrb-body.woocommerce-account .thrb-page-container {
  max-width: 1820px;
  padding: 40px 50px 80px;
}
@media (max-width: 600px) {
  .thrb-body.woocommerce-cart .thrb-page-container,
  .thrb-body.woocommerce-checkout .thrb-page-container,
  .thrb-body.woocommerce-account .thrb-page-container { padding: 24px 20px 60px; }
}
.thrb-page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary) !important;
  margin-bottom: 28px;
}
.thrb-page-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.thrb-page-content h2 { font-size: 28px; color: var(--primary); margin: 32px 0 14px; }
.thrb-page-content h3 { font-size: 22px; color: var(--primary); margin: 26px 0 12px; }
.thrb-page-content p { margin-bottom: 16px; }
.thrb-page-content ul, .thrb-page-content ol { margin: 0 0 16px 22px; }
.thrb-page-content a { color: var(--accent); }
@media (max-width: 768px) {
  .thrb-page-container { padding: 40px 20px 60px; }
  .thrb-page-title { font-size: 26px; }
}

/* =============================================================
   ZOEKRESULTATEN / 404 / MIJN ACCOUNT — huisstijl
   ============================================================= */

/* Brede container voor zoek/404 (zelfde als de rest van de site) */
.thrb-body.search .thrb-page-container,
.thrb-body.error404 .thrb-page-container {
  max-width: 1820px;
  padding: 40px 50px 80px;
}
@media (max-width: 600px) {
  .thrb-body.search .thrb-page-container,
  .thrb-body.error404 .thrb-page-container { padding: 24px 20px 60px; }
}

.thrb-search-term { color: var(--accent) !important; }
.thrb-search-count {
  font-size: 16px;
  color: var(--grey);
  margin: -12px 0 24px;
}
.thrb-search-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary) !important;
  margin: 40px 0 20px;
}

/* Zoekformulier */
.thrb-search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  max-width: 720px;
}
.thrb-search-form input[type="search"] {
  flex: 1;
  min-width: 220px;
  height: 57px;
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 0 18px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: var(--primary) !important;
  background: #fff !important;
}
.thrb-search-form input[type="search"]:focus { outline: none; border-color: var(--primary) !important; }
.thrb-search-form .btn-primary {
  height: 57px;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

/* Resultaten: producten in designgrid */
.thrb-body ul.products.thrb-search-products {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Resultaten: pagina's/artikelen */
.thrb-search-list { list-style: none; margin: 0; padding: 0; }
.thrb-search-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.thrb-search-item:hover { box-shadow: 0 4px 18px rgba(69,40,59,.1); }
.thrb-search-item__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary) !important;
  text-decoration: none !important;
}
.thrb-search-item__title:hover { color: var(--accent) !important; }
.thrb-search-item__excerpt { margin: 6px 0 0; color: var(--text); font-size: 15px; }

/* Paginering */
.thrb-search-pagination { margin-top: 32px; }
.thrb-body .thrb-search-pagination .nav-links {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.thrb-body .thrb-search-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--primary) !important;
  text-decoration: none !important;
  font-weight: 600;
  background: #fff;
}
.thrb-body .thrb-search-pagination .page-numbers.current,
.thrb-body .thrb-search-pagination .page-numbers:hover {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}

/* Lege staat */
.thrb-empty-state {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 24px;
}
.thrb-empty-state p { margin-bottom: 16px; color: var(--text); }

/* ── 404 ────────────────────────────────────────────────────── */
.thrb-404-inner { text-align: center; }
.thrb-404-inner .thrb-search-form { margin: 0 auto 24px; justify-content: center; }
.thrb-404-code {
  display: block;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: var(--light-bg);
  letter-spacing: -2px;
}
.thrb-404-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 28px;
}
.thrb-404-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.thrb-404-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: underline !important;
}
.thrb-404-link:hover { color: var(--accent) !important; }
.thrb-404-cats { margin-top: 40px; }
.thrb-404-cats .thrb-subcategory-tabs { justify-content: center; }

/* ── MIJN ACCOUNT ───────────────────────────────────────────── */
/* Floats netjes afsluiten zodat de CTA-banner eronder komt */
.thrb-body.woocommerce-account .woocommerce::after,
.thrb-body.woocommerce-account .thrb-page-container::after {
  content: '';
  display: table;
  clear: both;
}
.thrb-body .woocommerce-MyAccount-navigation {
  width: 24% !important;
  float: left;
}
.thrb-body .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.thrb-body .woocommerce-MyAccount-navigation li {
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.thrb-body .woocommerce-MyAccount-navigation li:last-child { border-bottom: none; }
.thrb-body .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none !important;
  background: #fff;
  transition: background .15s, color .15s;
}
.thrb-body .woocommerce-MyAccount-navigation li a:hover,
.thrb-body .woocommerce-MyAccount-navigation li.is-active a,
.thrb-body .woocommerce-MyAccount-navigation li.is-active a:hover {
  background: var(--primary);
  color: #fff !important;
}
/* Icoon (Storefront gebruikt ::after met een webfont) meekleuren */
.thrb-body .woocommerce-MyAccount-navigation li a::before,
.thrb-body .woocommerce-MyAccount-navigation li a::after {
  color: var(--primary);
  opacity: .55;
  transition: color .15s, opacity .15s;
}
.thrb-body .woocommerce-MyAccount-navigation li a:hover::before,
.thrb-body .woocommerce-MyAccount-navigation li a:hover::after,
.thrb-body .woocommerce-MyAccount-navigation li.is-active a::before,
.thrb-body .woocommerce-MyAccount-navigation li.is-active a::after {
  color: #fff !important;
  opacity: 1;
}
.thrb-body .woocommerce-MyAccount-content {
  width: 72% !important;
  float: right;
}
.thrb-body .woocommerce-MyAccount-content h2,
.thrb-body .woocommerce-MyAccount-content h3 { color: var(--primary) !important; }
.thrb-body .woocommerce-MyAccount-content p { color: var(--text); }
.thrb-body .woocommerce-MyAccount-content a:not(.button) { color: var(--accent) !important; }

/* Account tabellen (bestellingen, adressen, downloads) */
.thrb-body .woocommerce-MyAccount-content table.woocommerce-orders-table,
.thrb-body .woocommerce-MyAccount-content table.shop_table {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}
.thrb-body .woocommerce-MyAccount-content table.shop_table th {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 16px !important;
  border: none !important;
}
.thrb-body .woocommerce-MyAccount-content table.shop_table td {
  padding: 14px 16px !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  background: #fff !important;
  color: var(--text) !important;
}

/* Login/registratie formulieren */
.thrb-body .woocommerce-form-login,
.thrb-body .woocommerce-form-register,
.thrb-body .woocommerce-EditAccountForm,
.thrb-body .woocommerce-address-fields {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 28px !important;
  background: #fff;
}
.thrb-body .woocommerce form .form-row label { font-weight: 700; color: var(--primary); }
.thrb-body .woocommerce form .form-row input.input-text,
.thrb-body .woocommerce form .form-row textarea,
.thrb-body .woocommerce form .form-row select {
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: var(--primary) !important;
  background: #fff !important;
}
.thrb-body .woocommerce form .form-row input.input-text:focus { outline: none; border-color: var(--primary) !important; }
.thrb-body .woocommerce-MyAccount-content .button,
.thrb-body .woocommerce-form-login .button,
.thrb-body .woocommerce-form-register .button {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  cursor: pointer;
}
.thrb-body .woocommerce-MyAccount-content .button:hover { background: #c94d0a !important; }

@media (max-width: 900px) {
  .thrb-body .woocommerce-MyAccount-navigation,
  .thrb-body .woocommerce-MyAccount-content { width: 100% !important; float: none; }
  .thrb-body .woocommerce-MyAccount-content { margin-top: 24px; }
  .thrb-body ul.products.thrb-search-products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .thrb-body ul.products.thrb-search-products { grid-template-columns: 1fr !important; }
}

/* =============================================================
   CAMPERINBOUW — eigen groene huisstijl (3b-camperinbouw.nl)
   Hoofdkleur #23A455, accent #2BAB65
   ============================================================= */

body.thrb-camper {
  --primary: #1b7d41;   /* donkergroen: koppen, headers */
  --dark:    #145032;   /* diepgroen: footer */
  --accent:  #23A455;   /* hoofdgroen: knoppen, prijzen, accenten */
  --light-bg:#eef7f1;   /* zachte groene tint i.p.v. licht paars */
  --border:  #d5e8dc;

  /* Plugin-variabelen meenemen zodat die niet terugvallen op paars/oranje */
  --3b-p: #1b7d41;
  --3b-d: #145032;
  --3b-a: #23A455;
  --3b-l: #eef7f1;
  --3b-b: #d5e8dc;
}

/* Header + footer meekleuren */
body.thrb-camper #masthead,
body.thrb-camper .site-header { background: var(--primary) !important; }
body.thrb-camper .thrb-accent-bar { background: var(--accent); }
body.thrb-camper .thrb-footer,
body.thrb-camper.thrb-body #colophon { background: var(--dark) !important; }

/* Accentkleuren die hardcoded oranje waren */
body.thrb-camper .thrb-nav a:hover,
body.thrb-camper .thrb-header-icons a:hover { color: var(--accent) !important; }
body.thrb-camper .btn-primary,
body.thrb-camper .thrb-body .btn-primary,
body.thrb-camper a.btn-primary,
body.thrb-camper button.btn-primary { background: var(--accent) !important; }
body.thrb-camper .btn-primary:hover { background: #1b8546 !important; }

/* Intro-tekst op de camperpagina */
.thrb-camper-intro {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  padding: 28px 0 8px;
}
.thrb-camper-intro h2 { color: var(--primary) !important; font-size: 28px; margin: 28px 0 12px; }
.thrb-camper-intro p { margin-bottom: 14px; }
.thrb-camper-intro a { color: var(--accent) !important; }

.thrb-camper-tabs { padding: 12px 0 24px; }
.thrb-camper-products { padding-bottom: 56px; }
.thrb-camper-products .section-title { margin: 32px 0 24px; }

/* Kaarten in de camperlijn */
body.thrb-camper li.product.thrb-card .thrb-card__name a { color: var(--primary) !important; }
body.thrb-camper .thrb-card__price-label,
body.thrb-camper .thrb-card__price-main,
body.thrb-camper .thrb-card__price-main .amount,
body.thrb-camper .thrb-card__price-incl { color: var(--accent) !important; }
body.thrb-camper li.product.thrb-card .thrb-card__btn {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
body.thrb-camper li.product.thrb-card .thrb-card__btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* Productdetail binnen de camperlijn */
body.thrb-camper .thrb-pd-title,
body.thrb-camper .thrb-cat-hero__title { color: #fff !important; }
body.thrb-camper.single-product .thrb-pd-title { color: var(--primary) !important; }
body.thrb-camper .thrb-pd-price-label,
body.thrb-camper .thrb-pd-price-main,
body.thrb-camper .thrb-pd-price-main .amount,
body.thrb-camper .thrb-composed-price__main { color: var(--accent) !important; }
body.thrb-camper .thrb-composition-header { background: var(--primary); }
body.thrb-camper .thrb-tab-btn.active { border-bottom-color: var(--primary) !important; }

/* CTA-banner in het groen */
.thrb-camper-cta { background: var(--primary) !important; }
.thrb-camper-cta .btn-primary { background: var(--accent) !important; }
.thrb-camper-cta .btn-primary:hover { background: #1b8546 !important; }

/* Subcategorie-pills groen */
body.thrb-camper .thrb-subcategory-tabs a {
  border-color: var(--accent);
  background: rgba(35, 164, 85, 0.07);
  color: var(--primary) !important;
}
body.thrb-camper .thrb-subcategory-tabs a:hover { background: rgba(35, 164, 85, 0.16); }
body.thrb-camper .thrb-subcategory-tabs a.active {
  background: var(--accent);
  color: #fff !important;
}

/* Filterblokken + notices binnen de camperlijn */
body.thrb-camper .filter-block__header { background: var(--primary); }
body.thrb-camper .woocommerce-message { border-left-color: var(--accent) !important; }

/* ── Zoekbalk in de header ─────────────────────────────────── */
.thrb-header-icons .thrb-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  cursor: pointer;
  transition: color .15s;
}
.thrb-header-icons .thrb-search-toggle:hover { color: var(--accent); }

.thrb-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 199;
}
.thrb-search-panel__form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1820px;
  margin: 0 auto;
  padding: 18px 50px;
}
.thrb-search-panel__input {
  flex: 1;
  height: 52px;
  border: none !important;
  border-radius: 8px !important;
  padding: 0 18px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: var(--primary) !important;
  background: #fff !important;
}
.thrb-search-panel__input:focus { outline: 2px solid var(--accent); }
.thrb-search-panel .btn-primary {
  height: 52px;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.thrb-search-panel__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.thrb-search-panel__close:hover { color: #fff; }

@media (max-width: 600px) {
  .thrb-search-panel__form { padding: 14px 20px; flex-wrap: wrap; }
  .thrb-search-panel__input { min-width: 0; }
}

/* ── Lege winkelwagen ──────────────────────────────────────── */

/* Emoji-icoon van WooCommerce weghalen */
.thrb-body .wc-block-cart__empty-cart__title.with-empty-cart-icon::before,
.thrb-body .with-empty-cart-icon::before { display: none !important; }

.thrb-body .wp-block-woocommerce-empty-cart-block {
  padding: 8px 0 64px;
}
.thrb-body .wc-block-cart__empty-cart__title {
  font-size: 28px !important;
  font-weight: 700;
  color: var(--primary) !important;
  text-align: center;
  margin: 0 0 12px !important;
  padding: 0 !important;
}
/* Stippellijn weg (indien nog aanwezig) */
.thrb-body .wp-block-woocommerce-empty-cart-block .wp-block-separator { display: none; }

.thrb-empty-cart-actions {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.thrb-empty-cart-actions p { color: var(--text); font-size: 16px; margin: 0 0 20px; }
.thrb-empty-cart-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.thrb-empty-cart-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: underline !important;
}
.thrb-empty-cart-link:hover { color: var(--accent) !important; }

/* "Nieuw in de webshop" kop */
.thrb-body .wp-block-woocommerce-empty-cart-block > h2:not(.wc-block-cart__empty-cart__title) {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary) !important;
  text-align: left;
  margin: 0 0 24px !important;
}

/* Productgrid in de lege winkelwagen → designkaarten */
.thrb-body .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.thrb-body li.wc-block-grid__product {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: box-shadow .25s, transform .2s;
}
.thrb-body li.wc-block-grid__product:hover {
  box-shadow: 0 8px 28px rgba(69,40,59,.12);
  transform: translateY(-2px);
}
.thrb-body .wc-block-grid__product-image {
  display: block;
  margin: 0 !important;
  padding: 24px 24px 0;
}
.thrb-body .wc-block-grid__product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 !important;
}
.thrb-body .wc-block-grid__product-title {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--primary) !important;
  padding: 20px 24px 4px;
  margin: 0 !important;
  text-align: left;
}
.thrb-body .wc-block-grid__product-price {
  display: block;
  padding: 0 24px;
  margin: 0 !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent) !important;
  text-align: left;
}
.thrb-body .wc-block-grid__product-price .wc-block-grid__product-price__value,
.thrb-body .wc-block-grid__product-price .woocommerce-Price-amount { color: var(--accent) !important; }
.thrb-body .wc-block-grid__product-add-to-cart { margin: auto 0 0 !important; padding: 16px 24px 24px; }
.thrb-body .wc-block-grid__product-add-to-cart .wp-block-button__link,
.thrb-body .wc-block-grid__product .add_to_cart_button {
  display: block;
  width: 100%;
  padding: 14px !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: var(--primary) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.thrb-body .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.thrb-body .wc-block-grid__product .add_to_cart_button:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

@media (max-width: 1100px) {
  .thrb-body .wc-block-grid__products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .thrb-body .wc-block-grid__products { grid-template-columns: 1fr !important; }
  .thrb-empty-cart-buttons { flex-direction: column; }
  .thrb-empty-cart-buttons .btn-primary { width: 100%; text-align: center; }
}

/* ── Camperinbouw-indicator in winkelwagen/checkout ─────────── */

/* Badge bóven de producttitel plaatsen.
   De metadata-wrapper wordt "doorzichtig" (display:contents) zodat de
   regelgegevens een directe flex-child worden en we met order kunnen sorteren. */
.thrb-body .wc-block-cart-item__wrap .wc-block-components-product-metadata { display: contents; }
.thrb-body .wc-block-cart-item__wrap .wc-block-components-product-details            { order: 1; margin: 0 0 4px; }
.thrb-body .wc-block-cart-item__wrap .wc-block-components-product-name               { order: 2; }
.thrb-body .wc-block-cart-item__wrap .wc-block-cart-item__prices                     { order: 3; }
.thrb-body .wc-block-cart-item__wrap .wc-block-components-product-metadata__description { order: 4; }
.thrb-body .wc-block-cart-item__wrap .wc-block-cart-item__quantity                    { order: 5; }

/* Checkout-overzicht: badge ook boven de naam */
.thrb-body .wc-block-components-order-summary-item__description { display: flex; flex-direction: column; }
.thrb-body .wc-block-components-order-summary-item__description .wc-block-components-product-metadata { display: contents; }
.thrb-body .wc-block-components-order-summary-item__description .wc-block-components-product-details { order: 1; margin: 0 0 4px; }
.thrb-body .wc-block-components-order-summary-item__description .wc-block-components-product-name    { order: 2; }
.thrb-body .wc-block-components-order-summary-item__description .wc-block-components-product-price   { order: 3; }
.thrb-body .wc-block-components-order-summary-item__description .wc-block-components-product-metadata__description { order: 4; }

/* Blocks: regelgegevens "Productlijn: Camperinbouw" → groene badge */
.thrb-body .wc-block-components-product-details__productlijn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  background: rgba(35, 164, 85, .1);
  border: 1px solid rgba(35, 164, 85, .35);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b7d41 !important;
}
.thrb-body .wc-block-components-product-details__productlijn::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23A455;
  flex-shrink: 0;
}
/* Label "Productlijn:" verbergen — de badge spreekt voor zich */
.thrb-body .wc-block-components-product-details__productlijn .wc-block-components-product-details__name { display: none; }
.thrb-body .wc-block-components-product-details__productlijn .wc-block-components-product-details__value {
  color: #1b7d41 !important;
  font-weight: 700;
}
/* Badge zelf blokvormig zodat 'ie links uitlijnt boven de titel */
.thrb-body .wc-block-components-product-details {
  align-self: flex-start;
  padding: 0 !important;
  border: none !important;
}
.thrb-body .wc-block-components-product-details li,
.thrb-body .wc-block-components-product-details__productlijn { list-style: none; }

/* Klassieke winkelwagen / order-overzicht */
.thrb-camper-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 2px 10px 2px 8px;
  border-radius: 20px;
  background: rgba(35, 164, 85, .1);
  border: 1px solid rgba(35, 164, 85, .35);
  font-size: 12px;
  font-weight: 700;
  color: #1b7d41 !important;
  white-space: nowrap;
  vertical-align: middle;
}
.thrb-camper-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23A455;
  flex-shrink: 0;
}

/* ── Dealers (B2B) ─────────────────────────────────────────── */
.thrb-dealer-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--light-bg);
  color: var(--primary) !important;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
}
.thrb-price-login {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent) !important;
  text-decoration: underline !important;
}
.thrb-dealer-pending {
  border-left: 4px solid var(--accent) !important;
}
/* Registratie: dealerblok */
.thrb-body .thrb-dealer-toggle label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}
.thrb-body .thrb-dealer-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin: 0;
}
.thrb-body .thrb-dealer-fields {
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 20px 24px 8px;
  margin-bottom: 20px;
}
.thrb-dealer-note {
  font-size: 14px;
  color: var(--grey);
  margin: 4px 0 12px;
}

/* ── Formulieren (Gravity Forms + fallback) in huisstijl ────── */
/* ------------------------------------------------------------------ */
/*  Eigen formulier (offerte / contact)
/* ------------------------------------------------------------------ */
.thrb-form { margin: 0 0 32px; }
.thrb-form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) {
  .thrb-form-rij { grid-template-columns: 1fr; }
}
.thrb-form-veld {
  display: block;
  margin-bottom: 16px;
}
.thrb-form-veld > span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary) !important;
  margin-bottom: 6px;
}
.thrb-form-veld abbr {
  color: var(--accent);
  text-decoration: none;
  border: none;
}
.thrb-body .thrb-form input[type="text"],
.thrb-body .thrb-form input[type="email"],
.thrb-body .thrb-form input[type="tel"],
.thrb-body .thrb-form input[type="number"],
.thrb-body .thrb-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  box-sizing: border-box;
}
.thrb-body .thrb-form input:focus,
.thrb-body .thrb-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 91, 12, .15);
}
.thrb-body .thrb-form textarea { resize: vertical; min-height: 140px; }
.thrb-body .thrb-form button.btn-primary { margin-top: 8px; }

/* Spamval — onzichtbaar maar bereikbaar voor bots */
.thrb-form-val {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thrb-form-privacy {
  font-size: 13px;
  color: var(--grey);
  margin-top: 14px;
}
.thrb-form-privacy a { color: var(--accent) !important; }

.thrb-form-melding {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 600;
}
.thrb-form-melding--ok {
  background: #eef7ef;
  border-left: 4px solid #2e7d32;
  color: #1b5e20 !important;
}
.thrb-form-melding--fout {
  background: #fdf0ea;
  border-left: 4px solid var(--accent);
  color: var(--primary) !important;
}

.thrb-form-fallback {
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 16px 0;
}
.thrb-form-fallback p { margin-bottom: 8px; }

.thrb-page-content .gform_wrapper label.gfield_label,
.thrb-page-content .gform_wrapper legend.gfield_label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.thrb-page-content .gform_wrapper input[type="text"],
.thrb-page-content .gform_wrapper input[type="email"],
.thrb-page-content .gform_wrapper input[type="tel"],
.thrb-page-content .gform_wrapper select,
.thrb-page-content .gform_wrapper textarea {
  width: 100%;
  border: 1px solid #c0c0c0 !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: var(--primary) !important;
  background: #fff !important;
}
.thrb-page-content .gform_wrapper input:focus,
.thrb-page-content .gform_wrapper select:focus,
.thrb-page-content .gform_wrapper textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
}
.thrb-page-content .gform_wrapper .gfield_checkbox label { font-weight: 600; color: var(--primary); }
.thrb-page-content .gform_wrapper .gfield_checkbox input[type="checkbox"] { accent-color: var(--accent); width: 18px; height: 18px; }
.thrb-page-content .gform_wrapper .gform_button,
.thrb-page-content .gform_wrapper input[type="submit"] {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  cursor: pointer;
  transition: background .15s;
}
.thrb-page-content .gform_wrapper .gform_button:hover { background: #c94d0a !important; }
.thrb-page-content iframe { max-width: 100%; }

.vs-no-results {
  grid-column: 1 / -1;
  font-size: 18px;
  font-weight: 600;
  color: var(--grey);
  padding: 40px 0;
  text-align: center;
}

/* Screen-reader only helper */
.vs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vs-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .vs-hero-content { padding: 40px 24px 36px; width: calc(100% - 40px); }
  .vs-hero-title { font-size: 24px; white-space: normal; }
  .vs-selector-row { grid-template-columns: 1fr; }
  .vs-hero-actions { width: 100%; }
  .vs-hero-actions .btn-primary,
  .vs-hero-actions .btn-outline-white { width: 100%; justify-content: center; }
  .vs-container { padding: 0 20px; }
  .vs-product-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-results-title { font-size: 24px; }
  .vs-btn-change { font-size: 16px; height: 48px; }
}
@media (max-width: 480px) {
  .vs-product-grid { grid-template-columns: 1fr; }
}
