/**
 * WooCommerce Single Product — Wooh Outdoor
 * Bestand: inc/woocommerce-single-product.css
 */

/* ══════════════════════════════════════════════════════════
   Design tokens (gespiegeld aan Fira-Standing.html)
   ══════════════════════════════════════════════════════════ */
:root {
  --wooh-bg:      #fafaf8;
  --wooh-paper:   #ffffff;
  --wooh-ink:     #0b0b0b;
  --wooh-ink-2:   #1a1a1a;
  --wooh-muted:   #6b6b68;
  --wooh-line:    #e7e5df;
  --wooh-line-2:  #d9d6cf;
  --wooh-fire-y:  #f5c34a;
  --wooh-fire-o:  #e8651e;
  --wooh-fire-r:  #b01818;
  --wooh-fire-d:  #1a0a10;
}

/* ══════════════════════════════════════════════════════════
   Paginaomgeving
   ══════════════════════════════════════════════════════════ */
#wooh-single-product {
  background: var(--wooh-bg);
  color: var(--wooh-ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.55;
  padding-top: 93px;
}

.wooh-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ══════════════════════════════════════════════════════════
   Breadcrumb
   ══════════════════════════════════════════════════════════ */
.wooh-pd-crumb {
  padding: 24px 0;
  font-size: 12px;
  color: var(--wooh-muted);
  letter-spacing: .04em;
}

.wooh-pd-crumb .woocommerce-breadcrumb {
  font-size: inherit;
  color: inherit;
}

.wooh-pd-crumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--wooh-line-2);
  padding-bottom: 1px;
  transition: color .2s;
}

.wooh-pd-crumb a:hover {
  color: var(--wooh-ink);
}

/* ══════════════════════════════════════════════════════════
   Product 2-kolom raster
   ══════════════════════════════════════════════════════════ */
.wooh-pd {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--wooh-line);
}

/* ══════════════════════════════════════════════════════════
   Galerij
   ══════════════════════════════════════════════════════════ */
.wooh-pd-gallery {
  position: relative;
}

.wooh-pd-main {
  position: relative;
  height: clamp(380px, 58vh, 620px);
  background: #efece6;
  overflow: hidden;
  cursor: zoom-in;
}

/* Alle slides liggen gestapeld; de actieve is zichtbaar */
.wooh-pd-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  user-select: none;
}

.wooh-pd-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════
   Lightbox
   ══════════════════════════════════════════════════════════ */
.wooh-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.wooh-lb.wooh-lb--open {
  opacity: 1;
  visibility: visible;
}

.wooh-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 3, 7, .92);
  cursor: zoom-out;
}

/* Afbeelding */
.wooh-lb-stage {
  position: relative;
  z-index: 1;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wooh-lb-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity .25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.wooh-lb-img.wooh-lb-img--fade {
  opacity: 0;
}

/* Sluiten */
.wooh-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  font-family: inherit;
}

.wooh-lb-close:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* Pijlknoppen */
.wooh-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 52px;
  height: 52px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  font-family: inherit;
}

.wooh-lb-nav:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

.wooh-lb-prev { left: 24px; }
.wooh-lb-next { right: 24px; }

/* Teller */
.wooh-lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Thumbnails in lightbox */
.wooh-lb-thumbs {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  max-width: calc(100vw - 160px);
  overflow-x: auto;
  padding: 0 4px 4px;
}

.wooh-lb-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.25);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  padding: 0;
  transition: border-color .2s;
  opacity: .65;
  transition: opacity .2s, border-color .2s;
}

.wooh-lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.wooh-lb-thumb.on,
.wooh-lb-thumb:hover {
  border-color: #fff;
  opacity: 1;
}

.wooh-pd-gallery-count {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--wooh-paper);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wooh-muted);
}

.wooh-pd-gallery-ctrl {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  background: var(--wooh-paper);
}

.wooh-pd-gallery-ctrl button {
  background: transparent;
  border: 0;
  padding: 10px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--wooh-ink);
  transition: background .15s;
}

.wooh-pd-gallery-ctrl button + button {
  border-left: 1px solid var(--wooh-line);
}

.wooh-pd-gallery-ctrl button:hover {
  background: var(--wooh-line);
}

/* Thumbnails */
.wooh-pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.wooh-pd-thumb {
  width: 78px;
  aspect-ratio: 1;
  background: #efece6;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s;
  flex-shrink: 0;
}

.wooh-pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.wooh-pd-thumb.on {
  border-color: var(--wooh-ink);
}

.wooh-pd-thumb:hover {
  border-color: var(--wooh-ink);
}

/* ══════════════════════════════════════════════════════════
   Product-info kolom
   ══════════════════════════════════════════════════════════ */
.wooh-pd-info {
  padding-top: 8px;
  position: sticky;
  top: 96px;
  align-self: start;
}

.wooh-pd-eyebrow {
  margin-bottom: 16px;
}

.mono {
  font-family: 'JetBrains Mono', 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wooh-muted);
}

.wooh-pd-h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--wooh-ink);
}

.wooh-pd-sub {
  font-size: 14px;
  color: var(--wooh-muted);
  margin-bottom: 20px;
  letter-spacing: .02em;
}

/* Sterrenbeoordeling */
.wooh-pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--wooh-muted);
  letter-spacing: .02em;
}

.wooh-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--wooh-fire-o);
}

/* Lede tekst */
.wooh-pd-lede {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a28;
  margin-bottom: 28px;
  max-width: 52ch;
}

/* ── Prijs ── */
.wooh-pd-price {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--wooh-ink);
  letter-spacing: -.01em;
}

.wooh-pd-price del,
.wooh-pd-price .woocommerce-Price-amount.amount:first-child:not(:last-child) {
  color: var(--wooh-muted);
  font-weight: 300;
  font-size: .8em;
  margin-right: 8px;
}

.wooh-pd-price ins {
  text-decoration: none;
}

/* ── Add-to-cart (WooCommerce defaults overschrijven) ── */
.wooh-atc-wrap .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--wooh-ink);
  height: 56px;
  margin-right: 10px;
}

.wooh-atc-wrap .quantity input[type="number"] {
  background: transparent;
  border: 0;
  width: 56px;
  height: 100%;
  text-align: center;
  font-size: 14px;
  font-family: inherit;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}

.wooh-atc-wrap .quantity input::-webkit-inner-spin-button,
.wooh-atc-wrap .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Qty knoppen (sommige plugins voegen - / + toe) */
.wooh-atc-wrap .quantity .qty-btn,
.wooh-atc-wrap .quantity button {
  background: transparent;
  border: 0;
  width: 44px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  font-family: inherit;
  color: var(--wooh-ink);
  padding: 0;
  flex-shrink: 0;
}

.wooh-atc-wrap form.cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.wooh-atc-wrap .single_add_to_cart_button,
.wooh-atc-wrap button[type="submit"].button {
  flex: 1;
  min-width: 160px;
  height: 56px;
  background: var(--wooh-ink);
  color: #fff;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s;
  border-radius: 0;
  padding: 0 24px;
}

.wooh-atc-wrap .single_add_to_cart_button:hover,
.wooh-atc-wrap button[type="submit"].button:hover {
  background: var(--wooh-fire-r);
}

/* Variaties */
.wooh-atc-wrap table.variations {
  width: 100%;
  border: 0;
  margin-bottom: 20px;
  font-size: 13px;
}

.wooh-atc-wrap table.variations td,
.wooh-atc-wrap table.variations th {
  padding: 6px 0;
  border: 0;
  background: transparent;
}

.wooh-atc-wrap table.variations .label {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--wooh-muted);
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 16px;
}

.wooh-atc-wrap table.variations select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--wooh-line-2);
  background: var(--wooh-paper);
  font-family: inherit;
  font-size: 13px;
  color: var(--wooh-ink);
  cursor: pointer;
  border-radius: 0;
  appearance: auto;
}

.wooh-atc-wrap .reset_variations {
  font-size: 11px;
  color: var(--wooh-muted);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--wooh-line-2);
}

/* ── Bekijk winkelwagen link (verschijnt na toevoegen) ── */
.wooh-atc-wrap a.added_to_cart,
.wooh-atc-wrap .added_to_cart.wc-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 10px;
  padding: 0 20px;
  background: transparent;
  color: var(--wooh-ink);
  border: 1px solid var(--wooh-line-2);
  font-family: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
  animation: wooh-fade-in .3s ease both;
}

.wooh-atc-wrap a.added_to_cart:hover,
.wooh-atc-wrap .added_to_cart.wc-forward:hover {
  border-color: var(--wooh-ink);
  color: var(--wooh-ink);
  background: transparent;
}

@keyframes wooh-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wooh-atc-wrap .woocommerce-variation-price .woocommerce-Price-amount {
  font-size: 20px;
  font-weight: 600;
}

/* ── Assurance strip ── */
.wooh-pd-assure {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--wooh-line);
  font-size: 13px;
  color: var(--wooh-ink);
}

.wooh-pd-assure > div {
  padding: 0 12px 0 0;
}

.wooh-pd-assure > div:not(:first-child) {
  padding-left: 16px;
  border-left: 1px solid var(--wooh-line);
}

.wooh-assure-lbl {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wooh-muted);
  margin-bottom: 4px;
}

.wooh-assure-val {
  font-weight: 500;
}

/* ── Accordion ── */
.wooh-acc {
  margin-top: 28px;
  border-top: 1px solid var(--wooh-line);
}

.wooh-acc-item {
  border-bottom: 1px solid var(--wooh-line);
}

.wooh-acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  width: 100%;
  color: var(--wooh-ink);
  text-align: left;
  font-family: inherit;
  transition: opacity .2s;
}

.wooh-acc-head:hover,
.wooh-acc-head:focus,
.wooh-acc-head:active {
  opacity: .75;
  background: transparent !important;
  color: var(--wooh-ink) !important;
  outline: none;
}

.wooh-pm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
}

.wooh-acc-item.open .wooh-pm {
  transform: rotate(45deg);
}

.wooh-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.wooh-acc-item.open .wooh-acc-body {
  max-height: 9999px;
}

.wooh-acc-inner {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a28;
}

/* WooCommerce attribuuttabel in accordion */
.wooh-acc-inner .woocommerce-product-attributes {
  width: 100%;
  border: 0;
}

.wooh-acc-inner .woocommerce-product-attributes td,
.wooh-acc-inner .woocommerce-product-attributes th {
  border: 0;
  border-bottom: 1px solid var(--wooh-line);
  padding: 10px 0;
  font-size: 13px;
  background: transparent;
}

.wooh-acc-inner .woocommerce-product-attributes th {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wooh-muted);
  font-weight: 400;
  width: 40%;
}

/* ══════════════════════════════════════════════════════════
   Specificatiestabel
   ══════════════════════════════════════════════════════════ */
.wooh-specs-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--wooh-line);
}

.wooh-specs-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}

.wooh-specs-head h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: 64px;
  margin: 0;
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--wooh-ink);
}

.wooh-specs-head p {
  font-size: 14px;
  color: #2a2a28;
  line-height: 1.7;
  max-width: 44ch;
  margin: 0;
}

.wooh-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  border-top: 1px solid var(--wooh-ink);
}

.wooh-spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--wooh-line);
  font-size: 13px;
  align-items: baseline;
  gap: 16px;
}

.wooh-spec-k {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--wooh-muted);
}

.wooh-spec-v {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════════════════
   Gerelateerde producten
   ══════════════════════════════════════════════════════════ */
.wooh-pairs {
  padding: 80px 0 96px;
  border-top: 1px solid var(--wooh-line);
}

.wooh-pairs-head {
  text-align: center;
  margin-bottom: 48px;
}

.wooh-pairs-head .mono {
  display: block;
  margin-bottom: 8px;
}

.wooh-pairs-head h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: 52px;
  margin: 0;
  letter-spacing: -.015em;
  color: var(--wooh-ink);
}

/* Gerelateerde producten — WooCommerce product-loop grid */
.wooh-pairs .products.wooh-related-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Zorg dat de knoppen in de gerelateerde rij niet te breed worden */
.wooh-pairs .products.wooh-related-products li.product {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}

/* ══════════════════════════════════════════════════════════
   WooCommerce meldingen
   ══════════════════════════════════════════════════════════ */

/* Verberg de "toegevoegd aan winkelwagen" banner volledig */
.woocommerce-notices-wrapper .woocommerce-message {
  display: none !important;
}

/* Foutmeldingen (bijv. "selecteer een optie") blijven zichtbaar */
#wooh-single-product .woocommerce-error,
#wooh-single-product .woocommerce-info {
  border-top: 3px solid var(--wooh-fire-o);
  background: var(--wooh-paper);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 13px;
  border-radius: 0;
  list-style: none;
}

/* ── Knop-succes staat ─────────────────────────────────── */
.wooh-atc-wrap .single_add_to_cart_button.wooh-atc--success,
.wooh-atc-wrap button[type="submit"].button.wooh-atc--success {
  background: #1c6b3a !important;
  pointer-events: none;
  animation: wooh-atc-pop .35s cubic-bezier(.2,.8,.3,1.2) both;
}

@keyframes wooh-atc-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1100px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wooh-container {
    padding: 0 32px;
  }

  .wooh-pd {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .wooh-pd-h1 {
    font-size: 40px;
  }

  .wooh-specs-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wooh-specs-head h2 {
    font-size: 48px;
  }

  .wooh-specs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wooh-pairs .products.wooh-related-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobiel (≤ 768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Geen horizontale overflow op mobiel */
  #wooh-single-product {
    overflow-x: hidden;
  }

  .wooh-container {
    padding: 0 20px;
  }

  /* Product: volledig gestapeld */
  .wooh-pd {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

  /* Galerij volledige breedte, kortere verhouding op mobiel */
  .wooh-pd-gallery {
    max-width: 100%;
    overflow: hidden;
  }

  .wooh-pd-main {
    height: auto;         /* override de desktop clamp() hoogte */
    aspect-ratio: 3 / 2;  /* tussenin 3/2.5 en 2/1 */
  }

  /* Thumbnails horizontaal scrollend — binnen gallerij breedte houden */
  .wooh-pd-thumbs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 4px;
  }

  .wooh-pd-thumb {
    width: 64px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Info: niet sticky op mobiel */
  .wooh-pd-info {
    position: static;
    padding-top: 0;
  }

  .wooh-pd-h1 {
    font-size: 28px;
  }

  .wooh-pd-sub {
    font-size: 13px;
  }

  .mono {
    font-size: 10px;
  }

  .wooh-pd-lede {
    max-width: 100%;
    font-size: 14px;
  }

  /* ATC knoppen volledig breed */
  .wooh-atc-wrap form.cart {
    flex-direction: column;
  }

  .wooh-atc-wrap .quantity {
    width: fit-content;
  }

  .wooh-atc-wrap .single_add_to_cart_button,
  .wooh-atc-wrap button[type="submit"].button {
    width: 100%;
    min-width: unset;
    height: 56px;
    min-height: 56px;
    font-size: 13px;
  }

  /* Assurance 3 kolommen op mobiel te krap → 2 rijen */
  .wooh-pd-assure {
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
  }

  .wooh-pd-assure > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .wooh-pd-assure > div:nth-child(2) {
    padding-left: 16px;
    border-left: 1px solid var(--wooh-line);
  }

  /* Specs */
  .wooh-specs-section {
    padding: 48px 0;
  }

  .wooh-specs-head h2 {
    font-size: 36px;
  }

  .wooh-specs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Gerelateerde producten */
  .wooh-pairs {
    padding: 48px 0 64px;
  }

  .wooh-pairs-head h2 {
    font-size: 36px;
  }

  .wooh-pairs .products.wooh-related-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Klein mobiel (≤ 480px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wooh-pd-h1 {
    font-size: 26px;
  }

  .wooh-pd-gallery-ctrl {
    display: none; /* Swipe is genoeg op klein scherm */
  }

  .wooh-pairs .products.wooh-related-products {
    grid-template-columns: 1fr 1fr;
  }
}
