/* =====================================================
   PSILO DROPS — WooCommerce Single Product CSS
   Geladen op: individuele productpagina's (is_product())

   Structuur:
   §A  Pagina-layout & achtergrond
   §B  Breadcrumb (hero-section)
   §C  Product hero — gallery (linker kolom)
   §D  Product hero — summary (rechter kolom)
   §E  Variaties & add-to-cart
   §F  Betaalmethoden
   §G  WooCommerce tabs
   §H  .pd-* prototype klassen (rijke content secties)
   §I  USP pills & staffel (via PHP hooks)
   §J  Responsive
   ===================================================== */

/* ═══════════════════════════════════════════════════
   §A  PAGINA-LAYOUT & ACHTERGROND
   ═══════════════════════════════════════════════════ */
body.single-product #main,
body.single-product .ct-container-full,
body.single-product article.type-product {
  background: var(--off-white);
}

/* Blokkeer horizontale overflow door prototype-secties */
body.single-product { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════
   §B  BREADCRUMB (Blocksy .hero-section wrapper)
   ═══════════════════════════════════════════════════ */
.single-product .hero-section {
  background: var(--off-white);
  padding: 0;
}
.single-product .hero-section .entry-header {
  padding: 16px 64px 0;
}
.single-product nav.ct-breadcrumbs {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.single-product nav.ct-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.single-product nav.ct-breadcrumbs a:hover { color: var(--blue); }
.single-product nav.ct-breadcrumbs .current-item { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   §C  PRODUCT HERO — GALLERY (linker kolom)
   Blocksy structuur: .product-entry-wrapper (flex)
     → .woocommerce-product-gallery
       → .ct-product-gallery-container
         → figure.ct-media-container > img
   ═══════════════════════════════════════════════════ */

/* De flex-wrapper: padding en gap */
.single-product .product-entry-wrapper.is-width-constrained {
  padding: 48px 64px 64px;
  gap: 64px;
  align-items: flex-start;
}

/* Gallery kolom: sticky */
.single-product .woocommerce-product-gallery {
  position: sticky;
  top: 90px;
  flex-shrink: 0;
}

/* Gallery kaart: wit kaartje met schaduw */
.single-product .ct-product-gallery-container {
  background: white;
  border-radius: 28px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(17, 17, 34, 0.08);
}

/* Afbeelding binnen de kaart */
.single-product figure.ct-media-container {
  display: block;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.single-product figure.ct-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Verberg WooCommerce gallery nav (pijltjes) indien aanwezig */
.single-product .woocommerce-product-gallery__trigger,
.single-product .flex-control-nav { display: none; }

/* Product badge (via ::before pseudo op de gallery-wrapper) */
.single-product .woocommerce-product-gallery::before {
  content: attr(data-badge);
  display: none; /* Activeer via JS als data-badge attribuut aanwezig is */
  position: absolute;
  top: 16px; left: 16px;
  z-index: 5;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════════════
   §D  PRODUCT HERO — SUMMARY (rechter kolom)
   Blocksy structuur: .summary.entry-summary.entry-summary-items
   ═══════════════════════════════════════════════════ */
.single-product .summary.entry-summary {
  padding: 0;
  min-width: 0;
}

/* Product titel */
.single-product h1.product_title.entry-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 8px;
}

/* Prijs (range: €39 – €135) */
.single-product p.price,
.single-product .woocommerce-variation-price .price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.single-product p.price ins,
.single-product .woocommerce-variation-price .price ins {
  text-decoration: none;
  color: var(--blue);
}
.single-product p.price del,
.single-product .woocommerce-variation-price .price del {
  color: var(--muted);
  font-size: 1rem;
}

/* Korte omschrijving */
.single-product .woocommerce-product-details__short-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Blocksy dividers */
.single-product span.ct-product-divider {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ═══════════════════════════════════════════════════
   §E  VARIATIES & ADD-TO-CART
   Blocksy structuur:
     .ct-product-add-to-cart
       → form.variations_form.cart
         → table.variations (label + select)
         → .single_variation_wrap
           → .woocommerce-variation-price
           → div.cart.quantities
             → .quantity[data-type="type-2"]
               → span.ct-increase / span.ct-decrease / input
             → button.single_add_to_cart_button.button.alt
   ═══════════════════════════════════════════════════ */

/* Variaties tabel */
.single-product table.variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.single-product table.variations td,
.single-product table.variations th {
  padding: 4px 0;
  vertical-align: middle;
}

/* Label (bijv. "content") */
.single-product .variations_form label {
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Dropdown */
.single-product .variations_form select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111122' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.single-product .variations_form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32, 32, 204, 0.10);
}

/* Reset variaties link */
.single-product .reset_variations {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  display: block;
  margin-top: 4px;
}

/* Quantity wrapper (Blocksy type-2)
   Minimale overrides — laat Blocksy's layout en JS intact */
.single-product .quantity[data-type="type-2"] {
  border: 2px solid var(--border) !important;
  border-radius: 50px !important;
  background: white !important;
  overflow: hidden;
}
.single-product .quantity[data-type="type-2"] input[type="number"] {
  font-family: 'Fredoka One', cursive;
  font-size: 16px !important;
  color: var(--ink) !important;
}
.single-product .quantity .ct-increase:hover,
.single-product .quantity .ct-decrease:hover {
  background: var(--warm) !important;
  color: var(--blue) !important;
}

/* Cart row (quantity + button naast elkaar) */
.single-product div.cart.quantities {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

/* Add-to-cart knop */
.single-product button.single_add_to_cart_button.button.alt {
  flex: 1;
  background: var(--ink) !important;
  color: white !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 1.1rem !important;
  border-radius: 50px !important;
  padding: 0.9rem 2rem !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 4px 20px rgba(17, 17, 34, 0.20) !important;
  width: auto;
}
.single-product button.single_add_to_cart_button.button.alt:hover {
  background: var(--blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(32, 32, 204, 0.28) !important;
}

/* ═══════════════════════════════════════════════════
   §F  BETAALMETHODEN
   Blocksy: fieldset.ct-payment-methods
   ═══════════════════════════════════════════════════ */
.single-product fieldset.ct-payment-methods {
  border: none;
  padding: 0;
  margin: 4px 0 0;
  opacity: 0.55;
}
.single-product fieldset.ct-payment-methods legend {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.single-product fieldset.ct-payment-methods .ct-icon-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   §G  WOOCOMMERCE TABS
   Blocksy structuur:
     .woocommerce-tabs.wc-tabs-wrapper
       → ul.tabs.wc-tabs.is-width-constrained
         → li.description_tab / li.reviews_tab / etc.
       → article (panel wrapper, geen ID)
         → #tab-description.woocommerce-Tabs-panel
         → #tab-reviews.woocommerce-Tabs-panel
   ═══════════════════════════════════════════════════ */

/* Tab-balk container */
.single-product .woocommerce-tabs.wc-tabs-wrapper {
  background: white;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 50;
  margin: 0;
}

/* Tab-lijst */
.single-product ul.tabs.wc-tabs {
  display: flex;
  list-style: none;
  padding: 0 64px;
  margin: 0;
  gap: 0;
  border-bottom: none;
}
.single-product ul.tabs.wc-tabs::before,
.single-product ul.tabs.wc-tabs::after { display: none; }

/* Tab items */
.single-product ul.tabs.wc-tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0;
  padding: 0;
}
.single-product ul.tabs.wc-tabs li::before,
.single-product ul.tabs.wc-tabs li::after { display: none; }

/* Tab links */
.single-product ul.tabs.wc-tabs li a {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--muted);
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}

/* Actief + hover */
.single-product ul.tabs.wc-tabs li.active > a,
.single-product ul.tabs.wc-tabs li > a:hover {
  color: var(--blue);
  border-bottom-color: var(--lime);
}

/* Tab panel artikel wrapper */
.single-product .woocommerce-tabs.wc-tabs-wrapper > article {
  background: var(--off-white);
  padding: 0;
  border: none;
  margin: 0;
}

/* Tab panel */
.single-product .woocommerce-Tabs-panel.panel {
  background: var(--off-white);
  padding: 48px 64px;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
}

/* Verberg de standaard tab-panel h2 */
.single-product .woocommerce-Tabs-panel.panel > h2:first-child {
  display: none;
}

/* Titels in tab-panel (bijv. "Aanvullende informatie") */
.single-product .woocommerce-Tabs-panel.panel h2,
.single-product .woocommerce-Tabs-panel.panel h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.single-product .woocommerce-Tabs-panel.panel p,
.single-product .woocommerce-Tabs-panel.panel ul li {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* Aanvullende informatie tabel */
.single-product .woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  max-width: 600px;
}
.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
}
.single-product .woocommerce-product-attributes th {
  font-weight: 700;
  color: var(--muted);
  width: 35%;
}

/* Reviews sectie */
.single-product #tab-reviews #comments { margin-bottom: 32px; }
.single-product #tab-reviews .comment-text {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.single-product #tab-reviews .woocommerce-Reviews-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--ink);
}
.single-product #tab-reviews #reply-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--ink);
}
.single-product #tab-reviews .star-rating { color: var(--amber); }
.single-product #tab-reviews .stars a { color: var(--amber); }
.single-product #tab-reviews .stars a:hover { color: var(--amber); }


/* ═══════════════════════════════════════════════════
   §H  PROTOTYPE KLASSEN (.pd-*)
   Worden gebruikt in de WC product beschrijving (HTML)
   en via PHP hooks toegevoegd aan de pagina
   ═══════════════════════════════════════════════════ */

/* Algemene sectie wrapper */
.pd-section {
  padding: 64px;
  max-width: 960px;
  margin: 0 auto;
}
.pd-section + .pd-section {
  padding-top: 0;
}

/* Sectietitel met lime-streep */
.pd-s-title,
.pd-section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--lime);
  display: inline-block;
}

/* ── Feature pills (korte kenmerken) ── */
.pd-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 12px 0 20px;
}
.pd-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(17, 17, 34, 0.06);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

/* ── Staffel / kortingsblok ── */
.pd-staffel {
  background: rgba(200, 240, 37, 0.12);
  border: 1px solid rgba(200, 240, 37, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 16px 0;
  font-family: 'Nunito', sans-serif;
}
.pd-staffel-title {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.pd-staffel-rows { display: flex; flex-direction: column; gap: 6px; }
.pd-staffel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding: 6px 10px;
  border-radius: 8px;
}
.pd-staffel-row.is-recommended {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(200, 240, 37, 0.5);
}
.pd-staffel-qty { font-weight: 700; min-width: 80px; }
.pd-staffel-discount {
  font-family: 'Fredoka One', cursive;
  color: var(--blue);
  font-size: 0.88rem;
}

/* ── Aanbevolen badge ── */
.pd-badge-aanbevolen {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Fredoka One', cursive;
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  vertical-align: middle;
}

/* ── Doseertabel ── */
.pd-dose-table,
.pd-doseer-tabel {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.pd-dose-table thead th,
.pd-doseer-tabel thead th {
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  background: var(--ink);
  padding: 0.75rem 1rem;
  text-align: left;
}
.pd-dose-table tbody td,
.pd-doseer-tabel tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  background: white;
  vertical-align: middle;
}
.pd-dose-table tbody tr:last-child td,
.pd-doseer-tabel tbody tr:last-child td {
  border-bottom: none;
}
.pd-dose-table tbody tr:hover td,
.pd-doseer-tabel tbody tr:hover td {
  background: var(--warm);
}

/* ── Veiligheidslijst ── */
.pd-safety-list,
.pd-veiligheid-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  font-family: 'Nunito', sans-serif;
}
.pd-safety-list li,
.pd-veiligheid-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.5;
  padding: 8px 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.pd-safety-list li::before,
.pd-veiligheid-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Gekleurde safety dots (voor risico-indicator) */
.pd-safety-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 5px;
}
.pd-safety-dot.green  { background: #2E9E4A; }
.pd-safety-dot.amber  { background: var(--amber); }
.pd-safety-dot.red    { background: var(--magenta); }

/* ── FAQ ── */
.pd-faq-item,
.pd-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.pd-faq-item:last-child { border-bottom: none; }

.pd-faq-vraag,
.pd-faq-q {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pd-faq-vraag::after,
.pd-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pd-faq-item.is-open .pd-faq-vraag::after,
.pd-faq-item.is-open .pd-faq-q::after {
  transform: rotate(45deg);
}

.pd-faq-antwoord,
.pd-faq-a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA Banner ── */
.pd-cta-banner {
  background: var(--blue);
  border-radius: 24px;
  padding: 48px 64px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.pd-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.pd-cta-banner h3 {
  font-family: 'Fredoka One', cursive !important;
  font-size: 1.75rem !important;
  color: var(--lime) !important;
  margin: 0 0 0.5rem !important;
  position: relative;
}
.pd-cta-banner p {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 0 1.5rem !important;
  position: relative;
}
.pd-cta-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
}
.pd-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: var(--ink);
  text-decoration: none;
}

/* ── Disclaimer ── */
.pd-disclaimer {
  background: var(--ink);
  padding: 32px 64px;
  margin: 0;
}
.pd-disclaimer-inner {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pd-disclaimer p {
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.65;
  margin: 0;
}
.pd-disclaimer strong {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ── Variant pill buttons (via JS gegenereerd) ── */
.pd-variant-pills-wrap {
  margin-bottom: 12px;
}
.pd-variant-label {
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.pd-variant-btn {
  display: inline-block;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 18px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.97rem;
  color: var(--ink);
  background: white;
  cursor: pointer;
  margin: 0 6px 6px 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.pd-variant-btn:hover {
  border-color: var(--blue);
  background: rgba(32, 32, 204, 0.05);
}
.pd-variant-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

/* ── Custom sticky tab navigatie (optioneel, via hook) ── */
.pd-tabs-wrap {
  background: white;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 40;
}
.pd-tabs-inner {
  display: flex;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 64px;
}
.pd-tab {
  font-family: 'Fredoka One', cursive;
  font-size: 0.97rem;
  color: var(--muted);
  padding: 1rem 1.5rem;
  display: block;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.pd-tab:hover,
.pd-tab.is-active {
  color: var(--blue);
  border-bottom-color: var(--lime);
}


/* ═══════════════════════════════════════════════════
   §I  USP PILLS & STAFFEL (PHP hooks §7 in functions.php)
   ═══════════════════════════════════════════════════ */
/* Stijlen staan al in §H hierboven (.pd-features, .pd-staffel) */


/* ═══════════════════════════════════════════════════
   §J  RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .single-product .product-entry-wrapper.is-width-constrained {
    padding: 32px 32px 48px;
    gap: 40px;
  }
  .single-product ul.tabs.wc-tabs { padding: 0 32px; }
  .single-product .woocommerce-Tabs-panel.panel { padding: 40px 32px; }
  .pd-section { padding: 48px 32px; }
  .pd-cta-banner { padding: 40px 32px; }
  .pd-disclaimer { padding: 24px 32px; }
  .pd-tabs-inner { padding: 0 32px; }
}

@media (max-width: 768px) {
  /* Product hero: stapel verticaal */
  .single-product .product-entry-wrapper.is-width-constrained {
    flex-direction: column;
    padding: 24px 20px 40px;
    gap: 32px;
  }
  .single-product .woocommerce-product-gallery {
    position: static;
    width: 100%;
  }
  .single-product figure.ct-media-container {
    aspect-ratio: 4 / 3;
  }
  .single-product .hero-section .entry-header {
    padding: 12px 20px 0;
  }

  /* Tabs */
  .single-product ul.tabs.wc-tabs { padding: 0 20px; overflow-x: auto; flex-wrap: nowrap; }
  .single-product .woocommerce-Tabs-panel.panel { padding: 32px 20px; }

  /* Prototype secties */
  .pd-section { padding: 40px 20px; }
  .pd-safety-list,
  .pd-veiligheid-list { grid-template-columns: 1fr; }
  .pd-cta-banner { padding: 32px 24px; }
  .pd-disclaimer { padding: 20px; }
  .pd-tabs-inner { padding: 0 20px; }
  .pd-tabs-wrap { top: 58px; }

  /* ATC knop full-width */
  .single-product div.cart.quantities {
    flex-direction: column;
    align-items: stretch;
  }
  .single-product .quantity[data-type="type-2"] {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .single-product h1.product_title.entry-title { font-size: 1.75rem; }
  .pd-dose-table thead th,
  .pd-doseer-tabel thead th { font-size: 0.72rem; }
}
