/* =========================================================
   LangoLearn — Single product page
   =========================================================
   Bouwt voort op de sitebrede "Sections stylesheet" (WPCode):
   tokens (--ll-blue, --ll-blue-50, --ll-r-lg, --ll-shadow-md …)
   en componenten (.ll-section, .ll-wrap, .ll-eyebrow, .ll-h2,
   .ll-accent, .ll-lede, .ll-btn). Hier staan géén eigen hex-codes.

   Let op: de globale stylesheet zet binnen .ll-section veel met
   !important (h1-h6 margin 0, sectie-padding, lijsten). Daarom
   staan alle regels hier onder .ll-pdp, zodat ze op specificiteit
   winnen zonder de globale regels te hoeven aanpassen.
   ========================================================= */


/* ---------- 0. Ritme ---------- */

.ll-pdp { display: block; }

/* Compacter sectieritme dan de homepage-landing (die heeft grote
   hero-vlakken); productpagina blijft zo strak en gelijkmatig. */
.ll-pdp .ll-section { padding: clamp(56px, 6vw, 96px) 0 !important; }
.ll-pdp .ll-pdp-hero { padding-top: clamp(20px, 3vw, 44px) !important; }

/* Kopblok: eyebrow + h2 + lede, zoals .ll-heading-block op de homepage */
.ll-pdp .ll-pdp-head { max-width: 640px; margin-bottom: clamp(28px, 3.5vw, 48px); }
.ll-pdp .ll-pdp-head .ll-h2 { margin-bottom: 16px !important; }
.ll-pdp .ll-pdp-head .ll-lede { margin: 0 !important; }
.ll-pdp .ll-pdp-head--center { margin-inline: auto; text-align: center; }
.ll-pdp .ll-pdp-head--center .ll-lede { margin-inline: auto !important; }

/* Alle h2's in de secties: geen <br>, kernwoord in merkblauw via .ll-accent */
.ll-pdp .ll-h2 .ll-accent { display: inline; }


/* Knoppen op de productpagina: vlak, zonder schaduw of lift */
.ll-pdp .ll-btn,
.ll-pdp .ll-btn:hover,
.ll-pdp .ll-btn:focus-visible { box-shadow: none !important; transform: none !important; }

/* Kruimelpad — klein, op de linkerlijn van de content, boven de hero */
.ll-pdp .ll-pdp-crumbs { margin: 0 0 clamp(20px, 2.6vw, 32px); }
.ll-pdp .ll-pdp-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-family: var(--ll-font-body);
  font-size: .82rem;
  line-height: 1.4;
  color: var(--ll-ink-40);
}
.ll-pdp .ll-pdp-crumbs li {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.ll-pdp .ll-pdp-crumbs li::before { content: none !important; }
.ll-pdp .ll-pdp-crumbs li + li::before {
  content: "" !important;
  display: inline-block !important;
  width: 5px; height: 5px;
  margin: 0 10px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .6;
}
.ll-pdp .ll-pdp-crumbs a { color: var(--ll-ink-40) !important; text-decoration: none !important; transition: color .2s; }
.ll-pdp .ll-pdp-crumbs a:hover { color: var(--ll-blue) !important; }
.ll-pdp .ll-pdp-crumbs li:last-child { color: var(--ll-ink); font-weight: 500; }


/* ---------- 1. Hero ---------- */

.ll-pdp .ll-pdp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Galerij — lavendel paneel met afgeronde hoeken, zoals .ll-hero__panel */
.ll-pdp .ll-pdp-gallery { position: sticky; top: 110px; }

.ll-pdp .ll-pdp-gallery__stage {
  position: relative;
  display: grid;
  place-items: center;
}

.ll-pdp .ll-pdp-gallery__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: 16px 8px 8px 16px;   /* zelfde boekrand als .ll-flipbook__cover */
  box-shadow: var(--ll-shadow-md);
  transition: opacity .25s ease;
}

.ll-pdp .ll-pdp-gallery__flash {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-family: var(--ll-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ll-white);
  background: var(--ll-blue);
  padding: 10px 18px;
  border-radius: 16px 16px 16px 4px;  /* zelfde vorm als .ll-eyebrow */
  line-height: 1;
}

.ll-pdp .ll-pdp-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px !important;
  flex-wrap: wrap;
}

.ll-pdp .ll-pdp-gallery__thumb {
  width: 68px; height: 68px;
  padding: 6px;
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-r-sm);
  background: var(--ll-white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .25s ease, transform .3s var(--ll-ease);
}
.ll-pdp .ll-pdp-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ll-pdp .ll-pdp-gallery__thumb:hover { transform: translateY(-2px); }
.ll-pdp .ll-pdp-gallery__thumb.is-current { border-color: var(--ll-blue); }


/* Koopblok */
.ll-pdp .ll-pdp-buy { padding-top: clamp(4px, 1vw, 16px); }

.ll-pdp .ll-pdp-buy__title { margin: 0 0 14px !important; }

.ll-pdp .ll-pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ll-pdp .ll-pdp-rating__stars { display: inline-flex; gap: 2px; font-size: 18px; line-height: 1; }
.ll-pdp .ll-pdp-rating__stars span { color: var(--ll-line); }
.ll-pdp .ll-pdp-rating__stars span.is-on { color: var(--ll-blue); }
.ll-pdp .ll-pdp-rating__text { font-size: .9rem; color: var(--ll-ink-40); }
.ll-pdp .ll-pdp-rating__text strong { color: var(--ll-ink); }
.ll-pdp .ll-pdp-rating__text a { color: var(--ll-blue); }
.ll-pdp .ll-pdp-rating__text a:hover { text-decoration: underline !important; }

/* Prijs: duidelijk ondergeschikt aan de titel, netjes op de linkerlijn */
.ll-pdp .ll-pdp-buy__price {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--ll-line);
}
.ll-pdp .ll-pdp-buy__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin: 0 0 6px !important;
  font-family: var(--ll-font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em;
  color: var(--ll-ink) !important;
}
.ll-pdp .ll-pdp-buy__amount .woocommerce-Price-amount,
.ll-pdp .ll-pdp-buy__amount bdi {
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit;
}
.ll-pdp .ll-pdp-buy__amount del { order: 2; font-size: 1rem; font-weight: 500; color: var(--ll-ink-40) !important; opacity: 1; }
.ll-pdp .ll-pdp-buy__amount ins { text-decoration: none; }
.ll-pdp .ll-pdp-buy__vat {
  margin: 0 !important;
  font-family: var(--ll-font-body);
  font-size: .85rem !important;
  line-height: 1.5;
  color: var(--ll-ink-40) !important;
}

.ll-pdp .ll-pdp-buy__lede { margin-bottom: 26px; max-width: 46ch; }
.ll-pdp .ll-pdp-buy__lede p { margin: 0 0 .6em !important; }
.ll-pdp .ll-pdp-buy__lede p:last-child { margin-bottom: 0 !important; }


/* Add to cart — WooCommerce/Blocksy-form, in de stijl van .ll-btn--primary */
.ll-pdp .ll-pdp-buy__cart .stock {
  font-family: var(--ll-font-display);
  font-size: .88rem;
  font-weight: 500;
  margin: 0 0 14px !important;
}
.ll-pdp .ll-pdp-buy__cart .stock.in-stock { color: var(--ll-blue); }
.ll-pdp .ll-pdp-buy__cart .stock.out-of-stock { color: var(--ll-ink-40); }

.ll-pdp .ll-pdp-buy__cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin: 0 0 26px !important;
}

/* Blocksy wikkelt aantal + knop in .ct-cart-actions: altijd één rij */
.ll-pdp .ll-pdp-buy__cart .ct-cart-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  margin: 0 !important;
  position: relative;
}
.ll-pdp .ll-pdp-buy__cart .ct-cart-actions .quantity { flex: none; }

/* De losse "View cart"-link van WooCommerce/Blocksy liet de knoppen verspringen;
   de bevestiging komt nu als toast (.ll-toast). */
.ll-pdp a.added_to_cart,
.ll-pdp .wc-forward.added_to_cart { display: none !important; }

/* Tweede knop: direct naar de checkout (volle breedte, onder de rij) */
.ll-pdp .ll-pdp-buynow {
  flex: 1 1 100%;
  order: 10;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 28px !important;
  font-family: var(--ll-font-display) !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--ll-blue) !important;
  background: var(--ll-white) !important;
  border: 1.5px solid var(--ll-blue) !important;
  border-radius: var(--ll-r-pill) !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.ll-pdp .ll-pdp-buynow:hover,
.ll-pdp .ll-pdp-buynow:focus-visible { background: var(--ll-blue-50) !important; }
.ll-pdp .ll-pdp-buynow.is-busy { opacity: .6; pointer-events: none; }

/* Variabele producten: tabel bovenaan over de volle breedte */
.ll-pdp .ll-pdp-buy__cart form.cart .variations,
.ll-pdp .ll-pdp-buy__cart form.cart .single_variation_wrap { flex-basis: 100%; }

/* Hoeveelheid: zelfde hoogte en radius als de knop; Blocksy's +/- blijven werken */
.ll-pdp .ll-pdp-buy__cart .quantity {
  position: relative;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  width: 140px !important;
  height: 56px;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ll-white);
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-r-pill);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ll-pdp .ll-pdp-buy__cart .quantity:focus-within {
  border-color: var(--ll-blue);
  box-shadow: 0 0 0 4px var(--ll-blue-50);
}
.ll-pdp .ll-pdp-buy__cart .quantity input[type="number"],
.ll-pdp .ll-pdp-buy__cart .quantity input.qty {
  grid-column: 2;
  grid-row: 1;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-family: var(--ll-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ll-ink);
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  -moz-appearance: textfield;
}
.ll-pdp .ll-pdp-buy__cart .quantity input::-webkit-outer-spin-button,
.ll-pdp .ll-pdp-buy__cart .quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ll-pdp .ll-pdp-buy__cart .quantity .ct-increase,
.ll-pdp .ll-pdp-buy__cart .quantity .ct-decrease {
  position: static !important;
  grid-row: 1;
  display: grid !important;
  place-items: center;
  width: 44px !important;
  height: 100% !important;
  margin: 0 !important;
  inset: auto !important;
  transform: none !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ll-ink-40);
  cursor: pointer;
}
.ll-pdp .ll-pdp-buy__cart .quantity .ct-decrease { grid-column: 1; }
.ll-pdp .ll-pdp-buy__cart .quantity .ct-increase { grid-column: 3; }
.ll-pdp .ll-pdp-buy__cart .quantity .ct-increase:hover,
.ll-pdp .ll-pdp-buy__cart .quantity .ct-decrease:hover { color: var(--ll-blue); }

.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button {
  flex: 1 1 0;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ll-font-display) !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: var(--ll-white) !important;
  background: var(--ll-blue) !important;
  border: 1.5px solid transparent !important;
  border-radius: var(--ll-r-pill) !important;
  padding: 17px 32px !important;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  transition: background-color .25s ease;
}
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button:hover,
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button:focus-visible {
  background: var(--ll-blue-700) !important;
  color: var(--ll-white) !important;
}
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button { margin: 0 !important; white-space: nowrap; }
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button::after,
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button::before { display: none !important; content: none !important; }
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button.loading { opacity: .7; }
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button .ct-ajax-loader,
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button svg { display: none !important; }
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button.disabled,
.ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button:disabled {
  opacity: .5;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}


/* Bundle-keuze — radio-kaarten in de stijl van het koopblok */
.ll-pdp .ll-pdp-bundle {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
}
.ll-pdp .ll-pdp-bundle__legend {
  float: left; /* legend in een grid-fieldset netjes als gewone regel */
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font-family: var(--ll-font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ll-ink);
}

.ll-pdp .ll-pdp-bundle__opt {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 14px;
  margin: 0 !important;
  padding: 12px 18px 12px 16px;
  background: var(--ll-white);
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-r-sm);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.ll-pdp .ll-pdp-bundle__opt:hover { border-color: var(--ll-blue-200); }
.ll-pdp .ll-pdp-bundle__opt:has(input:checked) {
  border-color: var(--ll-blue);
  background: var(--ll-blue-25);
}
.ll-pdp .ll-pdp-bundle__opt:has(input:focus-visible) {
  outline: 2.5px solid var(--ll-blue);
  outline-offset: 3px;
}

/* Echte radio blijft voor toetsenbord/screenreader, visueel vervangen */
.ll-pdp .ll-pdp-bundle__opt input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
  pointer-events: none;
}
.ll-pdp .ll-pdp-bundle__radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--ll-blue-200);
  background: var(--ll-white);
  display: grid;
  place-items: center;
  transition: border-color .2s ease;
}
.ll-pdp .ll-pdp-bundle__radio::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ll-blue);
  transform: scale(0);
  transition: transform .2s var(--ll-ease);
}
.ll-pdp .ll-pdp-bundle__opt input:checked + .ll-pdp-bundle__radio { border-color: var(--ll-blue); }
.ll-pdp .ll-pdp-bundle__opt input:checked + .ll-pdp-bundle__radio::after { transform: scale(1); }

.ll-pdp .ll-pdp-bundle__thumb {
  width: 34px !important;
  height: 46px !important;
  object-fit: cover;
  border-radius: 5px 3px 3px 5px;
  box-shadow: var(--ll-shadow-sm);
}

.ll-pdp .ll-pdp-bundle__text { display: grid; gap: 2px; min-width: 0; }
.ll-pdp .ll-pdp-bundle__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-family: var(--ll-font-display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ll-ink);
}
.ll-pdp .ll-pdp-bundle__badge {
  padding: 4px 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  color: var(--ll-white);
  background: var(--ll-blue);
  border-radius: 999px;
}
.ll-pdp .ll-pdp-bundle__note {
  font-family: var(--ll-font-body);
  font-size: .8rem;
  line-height: 1.4;
  color: var(--ll-ink-40);
}
.ll-pdp .ll-pdp-bundle__price,
.ll-pdp .ll-pdp-bundle__price .woocommerce-Price-amount {
  font-family: var(--ll-font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ll-ink);
  white-space: nowrap;
  text-align: right;
}
.ll-pdp .ll-pdp-bundle__price { display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 2px; line-height: 1.2; }
.ll-pdp .ll-pdp-bundle__price del,
.ll-pdp .ll-pdp-bundle__price del .woocommerce-Price-amount { font-size: .78rem !important; font-weight: 500; color: var(--ll-ink-40); }
.ll-pdp .ll-pdp-bundle__price ins { text-decoration: none; }

/* Tijdens het wisselen: korte, rustige fade van de wisselende blokken */
.ll-pdp [data-ll-swap] { transition: opacity .2s ease; }
.ll-pdp.is-switching [data-ll-swap] { opacity: .45; }
.ll-pdp.is-switching .ll-pdp-bundle { cursor: progress; }

@media (max-width: 480px) {
  .ll-pdp .ll-pdp-bundle__opt { grid-template-columns: 20px minmax(0, 1fr) auto; padding: 12px 14px; }
  .ll-pdp .ll-pdp-bundle__thumb { display: none; }
}


/* USP's — vinkjes in een lavendel rondje */
.ll-pdp .ll-pdp-usps {
  display: grid;
  gap: 12px;
  margin: 0 0 28px !important;
}
.ll-pdp .ll-pdp-usps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ll-font-body);
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ll-ink-60);
}
.ll-pdp .ll-pdp-usps__ic {
  width: 22px; height: 22px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ll-blue-50);
  color: var(--ll-blue);
  margin-top: 1px;
}
.ll-pdp .ll-pdp-usps__ic svg { width: 12px; height: 12px; }


/* Specs — vier kleine kaarten, zoals de taalkaarten op de homepage */
.ll-pdp .ll-pdp-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
}
.ll-pdp .ll-pdp-specs__item {
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-r-sm);
  padding: 14px 12px;
  text-align: center;
}
.ll-pdp .ll-pdp-specs dt {
  font-family: var(--ll-font-body);
  font-size: .76rem;
  font-weight: 500;
  color: var(--ll-ink-40);
  margin: 0 0 6px;
  letter-spacing: .02em;
}
.ll-pdp .ll-pdp-specs dd {
  font-family: var(--ll-font-display);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ll-ink);
  margin: 0;
  line-height: 1.2;
}


/* ---------- 2. Inkijkexemplaar ---------- */

.ll-pdp .ll-pdp-preview { background: var(--ll-blue-25); }

.ll-pdp .ll-pdp-reader {
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-r-lg);
  padding: clamp(18px, 2.5vw, 32px);
  box-shadow: var(--ll-shadow-sm);
}

.ll-pdp .ll-pdp-reader--button { display: flex; justify-content: center; }

.ll-pdp .ll-pdp-reader--notice {
  font-family: var(--ll-font-body);
  font-size: .93rem;
  line-height: 1.7;
  color: var(--ll-ink-60);
  border-style: dashed;
  border-color: var(--ll-blue-200);
}
.ll-pdp .ll-pdp-reader--notice strong { color: var(--ll-ink); }
.ll-pdp .ll-pdp-reader--notice code {
  font-size: .85em;
  background: var(--ll-blue-50);
  color: var(--ll-blue);
  padding: 2px 6px;
  border-radius: 6px;
}

.ll-pdp .ll-pdp-reader__viewport {
  position: relative;
  min-height: clamp(340px, 46vw, 560px);
  display: grid;
  place-items: center;
}

.ll-pdp .ll-pdp-reader__page,
.ll-pdp .ll-pdp-reader__gate {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  margin: 0 !important;
}
.ll-pdp .ll-pdp-reader__page.is-current,
.ll-pdp .ll-pdp-reader__gate.is-current { opacity: 1; visibility: visible; }

/* Het "vel": de scan zelf, met een subtiele kaartrand */
.ll-pdp .ll-pdp-reader__sheet {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
}
.ll-pdp .ll-pdp-reader__sheet img {
  display: block;
  width: 100%;
  max-height: clamp(300px, 42vw, 500px);
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--ll-line);
  background: var(--ll-white);
  box-shadow: var(--ll-shadow-md);
}

/* Fallback als de browser de scan niet kan laden (JS zet .is-missing):
   geen kale alt-tekst maar een nette "pagina"-kaart. */
.ll-pdp .ll-pdp-reader__missing { display: none; }
.ll-pdp .ll-pdp-reader__page.is-missing img { visibility: hidden; position: absolute; inset: 0; }
.ll-pdp .ll-pdp-reader__page.is-missing .ll-pdp-reader__missing {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  aspect-ratio: 3 / 4;
  max-height: clamp(300px, 42vw, 500px);
  width: 100%;
  border-radius: 10px;
  border: 1px dashed var(--ll-blue-200);
  background: var(--ll-blue-25);
  text-align: center;
}
.ll-pdp .ll-pdp-reader__missing strong {
  font-family: var(--ll-font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ll-blue-200);
}
.ll-pdp .ll-pdp-reader__missing span { font-size: .85rem; color: var(--ll-ink-40); }

.ll-pdp .ll-pdp-reader__page figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--ll-font-body);
  font-size: .88rem;
  color: var(--ll-ink-40);
}

/* Slotkaart */
.ll-pdp .ll-pdp-reader__gate {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(30px, 5vw, 60px) 20px;
  background: var(--ll-blue-50);
  border-radius: var(--ll-r-md);
}
.ll-pdp .ll-pdp-reader__gate-n {
  font-family: var(--ll-font-display) !important;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--ll-blue) !important;
  margin: 0 0 6px !important;
}
.ll-pdp .ll-pdp-reader__gate-t {
  font-family: var(--ll-font-display) !important;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ll-ink) !important;
  margin: 0 0 8px !important;
}
.ll-pdp .ll-pdp-reader__gate-s { font-size: .95rem; max-width: 38ch; margin: 0 auto 26px !important; }
.ll-pdp .ll-pdp-reader__gate-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Balk onderaan */
.ll-pdp .ll-pdp-reader__bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--ll-line);
}

/* Ronde pijlknoppen, identiek aan .rev-nav op de homepage */
.ll-pdp .ll-pdp-reader__nav {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ll-line);
  background: var(--ll-white);
  color: var(--ll-ink);
  cursor: pointer;
  padding: 0;
  transition: border-color .3s, color .3s;
}
.ll-pdp .ll-pdp-reader__nav svg { width: 19px; height: 19px; }
.ll-pdp .ll-pdp-reader__nav:hover:not(:disabled) { border-color: var(--ll-blue); color: var(--ll-blue); }
.ll-pdp .ll-pdp-reader__nav:disabled { opacity: .3; cursor: default; }

.ll-pdp .ll-pdp-reader__progress { flex: 1; }
.ll-pdp .ll-pdp-reader__count {
  display: block;
  font-family: var(--ll-font-body);
  font-size: .85rem;
  color: var(--ll-ink-40);
  margin-bottom: 9px;
  text-align: center;
}
.ll-pdp .ll-pdp-reader__count strong { color: var(--ll-ink); font-weight: 600; }

/* Voortgangsbalk = .ll-bar__track / .ll-bar__fill van de homepage */
.ll-pdp .ll-pdp-reader__track {
  display: block;
  height: 8px;
  border-radius: var(--ll-r-pill);
  background: var(--ll-blue-50);
  overflow: hidden;
}
.ll-pdp .ll-pdp-reader__fill {
  display: block;
  height: 100%;
  width: 8%;
  border-radius: var(--ll-r-pill);
  background: var(--ll-blue);
  transition: width .4s var(--ll-ease);
}


/* PDF-modus: canvas per pagina, zelfde "vel" als de scans */
.ll-pdp .ll-pdp-reader[data-ll-pdf] .ll-pdp-reader__sheet {
  width: min(100%, 460px);
  aspect-ratio: var(--ll-page-ratio, 3 / 4);
  border-radius: 10px;
  border: 1px solid var(--ll-line);
  background: var(--ll-white);
  box-shadow: var(--ll-shadow-md);
  overflow: hidden;
}
.ll-pdp .ll-pdp-reader__sheet canvas { display: block; width: 100%; height: 100%; }
.ll-pdp .ll-pdp-reader__sheet.is-loading { background: var(--ll-blue-25); }
.ll-pdp .ll-pdp-reader__sheet.is-loading canvas { opacity: 0; }
.ll-pdp .ll-pdp-reader__sheet canvas { transition: opacity .3s ease; }

.ll-pdp .ll-pdp-reader__loading,
.ll-pdp .ll-pdp-reader__fallback {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  font-family: var(--ll-font-body);
  font-size: .9rem;
  color: var(--ll-ink-40);
}
.ll-pdp .ll-pdp-reader__fallback p { margin: 0 !important; }
.ll-pdp .ll-pdp-reader__spinner {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2.5px solid var(--ll-blue-100);
  border-top-color: var(--ll-blue);
  animation: ll-spin .8s linear infinite;
}
@keyframes ll-spin { to { transform: rotate(360deg); } }

/* Tot PDF.js klaar is: geen slotkaart en een uitgeschakelde balk */
.ll-pdp .ll-pdp-reader[data-ll-pdf]:not(.is-ready) .ll-pdp-reader__gate { display: none; }
.ll-pdp .ll-pdp-reader.is-failed .ll-pdp-reader__bar { display: none; }


/* ---------- 3. Over het boek ---------- */

.ll-pdp .ll-pdp-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.ll-pdp .ll-pdp-about__intro .ll-h2 { margin-bottom: 20px !important; }
.ll-pdp .ll-pdp-about__intro .ll-lede { margin: 0 0 1em !important; max-width: 48ch; }
.ll-pdp .ll-pdp-about__intro .ll-lede:last-child { margin-bottom: 0 !important; }
.ll-pdp .ll-pdp-about__body { max-width: 48ch; }
.ll-pdp .ll-pdp-about__body p { margin: 0 0 1em !important; font: inherit; color: inherit; }
.ll-pdp .ll-pdp-about__body p:last-child { margin-bottom: 0 !important; }

/* Genummerde kaarten ("Over dit boek" + "Het audiosysteem")
   De globale stylesheet zet lijst-padding/bullets met !important,
   daarom hier expliciet resetten. Nummer = vaste cirkel, verticaal
   gecentreerd op het tekstblok ernaast. */
.ll-pdp .ll-pdp-about__points,
.ll-pdp .ll-pdp-audio__steps {
  display: grid;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.ll-pdp .ll-pdp-about__points > li,
.ll-pdp .ll-pdp-audio__steps > li {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
  margin: 0 !important;
  padding: 22px 26px !important;
  list-style: none !important;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-r-md);
}
.ll-pdp .ll-pdp-about__points > li::before,
.ll-pdp .ll-pdp-about__points > li::marker,
.ll-pdp .ll-pdp-audio__steps > li::before,
.ll-pdp .ll-pdp-audio__steps > li::marker { content: none !important; display: none !important; }

.ll-pdp .ll-pdp-about__num,
.ll-pdp .ll-pdp-audio__num {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  font-family: var(--ll-font-display);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ll-pdp .ll-pdp-about__num { background: var(--ll-blue-50); color: var(--ll-blue); }
.ll-pdp .ll-pdp-audio__num { background: var(--ll-blue); color: var(--ll-white); }

.ll-pdp .ll-pdp-about__points h3,
.ll-pdp .ll-pdp-audio__steps h3 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  line-height: 1.35 !important;
  margin: 0 0 4px !important;
}
.ll-pdp .ll-pdp-about__points p,
.ll-pdp .ll-pdp-audio__steps p {
  font-size: .92rem !important;
  line-height: 1.55 !important;
  color: var(--ll-ink-60);
  margin: 0 !important;
}


/* ---------- 4. Audiosysteem — lavendel paneel (.ll-panel-stijl) ---------- */
.ll-pdp .ll-pdp-audio__panel {
  background: var(--ll-blue-50);
  border-radius: var(--ll-r-xl);
  padding: clamp(32px, 4.5vw, 68px);
  position: relative;
  overflow: hidden;
}

/* Dezelfde cirkelaccenten als de hero-panel op de homepage */
.ll-pdp .ll-pdp-audio__panel::before,
.ll-pdp .ll-pdp-audio__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ll-pdp .ll-pdp-audio__panel::before {
  width: 320px; height: 320px;
  background: var(--ll-blue-100);
  top: -140px; right: 30%;
}
.ll-pdp .ll-pdp-audio__panel::after {
  width: 190px; height: 190px;
  background: var(--ll-blue);
  bottom: -90px; left: -60px;
  opacity: .12;
}

.ll-pdp .ll-pdp-audio__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.ll-pdp .ll-pdp-audio__intro .ll-h2 { margin-bottom: 18px !important; }
.ll-pdp .ll-pdp-audio__intro .ll-lede { margin: 0 !important; max-width: 44ch; }

/* Stat-rij: drie gelijke kolommen, cijfer boven, label eronder, gedeelde basislijn */
.ll-pdp .ll-pdp-audio__facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin: 36px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid var(--ll-blue-100);
}
.ll-pdp .ll-pdp-audio__fact {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 6px;
  padding: 0 20px;
  border-left: 1px solid var(--ll-blue-100);
}
.ll-pdp .ll-pdp-audio__fact:first-child { padding-left: 0; border-left: 0; }
.ll-pdp .ll-pdp-audio__fact dd {
  font-family: var(--ll-font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ll-blue);
  margin: 0 !important;
  padding: 0 !important;
}
.ll-pdp .ll-pdp-audio__fact dt {
  font-family: var(--ll-font-body);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ll-ink-60);
  margin: 0 !important;
  padding: 0 !important;
  overflow-wrap: normal;
  word-break: normal;
  max-width: 16ch;
}

/* Stappen: zelfde kaart als "Over dit boek", op het lavendel paneel zonder rand */
.ll-pdp .ll-pdp-audio__steps > li { border-color: transparent; }


/* ---------- 5. Tabs (beschrijving) ---------- */
.ll-pdp .ll-pdp-tabs .woocommerce-tabs { margin: 0; }

.ll-pdp .ll-pdp-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px !important;
  border: 0 !important;
}
.ll-pdp .ll-pdp-tabs ul.tabs::before,
.ll-pdp .ll-pdp-tabs ul.tabs::after { display: none !important; }
.ll-pdp .ll-pdp-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.ll-pdp .ll-pdp-tabs ul.tabs li::before,
.ll-pdp .ll-pdp-tabs ul.tabs li::after { display: none !important; }

/* Tabknoppen = .ll-btn--ghost / .ll-btn--primary */
.ll-pdp .ll-pdp-tabs ul.tabs li a {
  display: inline-block;
  font-family: var(--ll-font-display) !important;
  font-size: .93rem !important;
  font-weight: 600 !important;
  color: var(--ll-ink) !important;
  padding: 14px 26px !important;
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-r-pill);
  background: var(--ll-white);
  transition: border-color .3s, color .3s, background-color .3s;
}
.ll-pdp .ll-pdp-tabs ul.tabs li a:hover { color: var(--ll-blue) !important; border-color: var(--ll-blue); }
.ll-pdp .ll-pdp-tabs ul.tabs li.active a {
  color: var(--ll-white) !important;
  background: var(--ll-blue);
  border-color: var(--ll-blue);
}

/* Eén tab (alleen reviews): de tabbalk is dan overbodig, de kop zegt het al */
.ll-pdp .ll-pdp-tabs--single ul.tabs { display: none !important; }

.ll-pdp .ll-pdp-tabs .wc-tab { padding: 0 !important; }
.ll-pdp .ll-pdp-tabs .wc-tab > h2:first-child,
.ll-pdp .ll-pdp-tabs .woocommerce-Reviews-title { display: none !important; }

/* WooCommerce/Blocksy zetten reviews en formulier soms naast elkaar (floats) */
.ll-pdp .ll-pdp-tabs #reviews #comments,
.ll-pdp .ll-pdp-tabs #reviews #review_form_wrapper {
  float: none !important;
  width: 100% !important;
  margin-inline: 0 !important;
}
.ll-pdp .ll-pdp-tabs #reviews::after { content: ""; display: table; clear: both; }
.ll-pdp .ll-pdp-tabs .wc-tab p { font-size: 1rem; max-width: 68ch; }
.ll-pdp .ll-pdp-tabs .woocommerce-noreviews {
  text-align: center;
  max-width: none;
  font-size: .95rem;
  color: var(--ll-ink-40) !important;
  margin: 0 0 28px !important;
}

/* ---------- 6. Ook interessant — boekkaarten ---------- */

.ll-pdp .ll-pdp-related { background: var(--ll-blue-25); }

.ll-pdp .ll-rcards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.ll-pdp .ll-rcard {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-r-lg);
  overflow: hidden;
  transition: border-color .3s ease;
}
.ll-pdp .ll-rcard:hover { border-color: var(--ll-blue-200); }

/* Omslag: volledig zichtbaar (contain), het boek "staat" in een zacht vlak */
.ll-pdp .ll-rcard__media {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  aspect-ratio: 4 / 3;
  padding: 24px 24px 0;
  background: var(--ll-blue-50);
  overflow: hidden;
}
.ll-pdp .ll-rcard__img {
  display: block;
  width: auto !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 10px 6px 0 0 !important;
  box-shadow: var(--ll-shadow-md);
  transform: translateY(8px);
  transition: transform .5s var(--ll-ease);
}
.ll-pdp .ll-rcard:hover .ll-rcard__img { transform: translateY(2px); }

.ll-pdp .ll-rcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.ll-pdp .ll-rcard__level {
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 6px 10px;
  font-family: var(--ll-font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ll-blue);
  background: var(--ll-blue-50);
  border-radius: 999px;
}

.ll-pdp .ll-rcard__title {
  margin: 0 0 8px !important;
  font-family: var(--ll-font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
}
.ll-pdp .ll-rcard__title a { color: var(--ll-ink) !important; text-decoration: none !important; transition: color .2s; }
.ll-pdp .ll-rcard__title a::after { content: ""; position: absolute; inset: 0; } /* hele kaart klikbaar */
.ll-pdp .ll-rcard:hover .ll-rcard__title a { color: var(--ll-blue) !important; }

.ll-pdp .ll-rcard__pitch {
  margin: 0 0 16px !important;
  font-family: var(--ll-font-body);
  font-size: .9rem !important;
  line-height: 1.55 !important;
  color: var(--ll-ink-60) !important;
}

.ll-pdp .ll-rcard__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px !important;
  padding: 0 !important;
  list-style: none !important;
}
.ll-pdp .ll-rcard__facts li {
  margin: 0 !important;
  padding: 5px 10px !important;
  list-style: none !important;
  font-family: var(--ll-font-body);
  font-size: .78rem;
  line-height: 1.2;
  color: var(--ll-ink-60);
  border: 1px solid var(--ll-line);
  border-radius: 999px;
}
.ll-pdp .ll-rcard__facts li::before { content: none !important; }

.ll-pdp .ll-rcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ll-line);
}
.ll-pdp .ll-rcard__price,
.ll-pdp .ll-rcard__price .woocommerce-Price-amount {
  font-family: var(--ll-font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--ll-ink) !important;
}
.ll-pdp .ll-rcard__price del { font-size: .85rem; color: var(--ll-ink-40); margin-right: 6px; }
.ll-pdp .ll-rcard__price ins { text-decoration: none; }

.ll-pdp .ll-rcard__cart {
  position: relative;
  z-index: 1; /* boven de klikbare kaart-overlay */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px !important;
  margin: 0 !important;
  font-family: var(--ll-font-display) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap;
  color: var(--ll-white) !important;
  background: var(--ll-blue) !important;
  border: 0 !important;
  border-radius: var(--ll-r-pill) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background-color .25s ease;
}
.ll-pdp .ll-rcard__cart:hover { background: var(--ll-blue-700) !important; }
.ll-pdp .ll-rcard__cart svg { width: 16px; height: 16px; flex: none; }
.ll-pdp .ll-rcard__cart.loading { opacity: .6; pointer-events: none; }
.ll-pdp .ll-rcard__cart::after { display: none !important; }


/* ---------- 6b. Zwevende koopbalk ---------- */

.ll-pdp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px var(--ll-gutter, 20px) calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ll-line);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform .35s var(--ll-ease), visibility 0s linear .35s;
}
.ll-pdp-sticky.is-visible {
  transform: none;
  visibility: visible;
  transition: transform .35s var(--ll-ease), visibility 0s;
}
.ll-pdp-sticky__inner {
  max-width: var(--ll-shell, 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ll-pdp-sticky__product { display: flex; align-items: center; gap: 14px; min-width: 0; }
.ll-pdp-sticky__img {
  width: 44px !important; height: 56px !important;
  object-fit: cover;
  border-radius: 6px 3px 3px 6px;
  box-shadow: var(--ll-shadow-sm);
  flex: none;
}
.ll-pdp-sticky__text { min-width: 0; }
.ll-pdp-sticky__title {
  margin: 0 !important;
  font-family: var(--ll-font-display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ll-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ll-pdp-sticky__price,
.ll-pdp-sticky__price .woocommerce-Price-amount {
  margin: 2px 0 0 !important;
  font-family: var(--ll-font-body);
  font-size: .88rem;
  color: var(--ll-ink-60);
}
.ll-pdp-sticky__price del { margin-right: 6px; opacity: .6; }
.ll-pdp-sticky__price ins { text-decoration: none; }

.ll-pdp-sticky__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.ll-pdp-sticky__qty {
  display: grid;
  grid-template-columns: 34px 40px 34px;
  align-items: center;
  height: 46px;
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-r-pill);
  background: var(--ll-white);
  overflow: hidden;
}
.ll-pdp-sticky__qty button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ll-ink-40);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.ll-pdp-sticky__qty button:hover { color: var(--ll-blue); }
.ll-pdp-sticky__qty input {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none !important;
  text-align: center;
  font-family: var(--ll-font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ll-ink);
  -moz-appearance: textfield;
}
.ll-pdp-sticky__qty input::-webkit-outer-spin-button,
.ll-pdp-sticky__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.ll-pdp-sticky__add,
.ll-pdp-sticky__buy {
  height: 46px;
  padding: 0 22px;
  font-family: var(--ll-font-display);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--ll-r-pill);
  cursor: pointer;
  box-shadow: none;
  transition: background-color .25s ease;
}
.ll-pdp-sticky__add { color: var(--ll-white); background: var(--ll-blue); border: 1.5px solid var(--ll-blue); }
.ll-pdp-sticky__add:hover { background: var(--ll-blue-700); border-color: var(--ll-blue-700); }
.ll-pdp-sticky__buy { color: var(--ll-blue); background: var(--ll-white); border: 1.5px solid var(--ll-blue); }
.ll-pdp-sticky__buy:hover { background: var(--ll-blue-50); }


/* ---------- 6c. Toast na toevoegen ---------- */

.ll-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 32px);
  padding: 14px 14px 14px 16px;
  background: var(--ll-ink);
  color: var(--ll-white);
  border-radius: var(--ll-r-sm);
  box-shadow: var(--ll-shadow-lg);
  font-family: var(--ll-font-body);
  font-size: .9rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .3s var(--ll-ease), bottom .35s var(--ll-ease);
}
.ll-toast.is-visible { opacity: 1; transform: none; }
.ll-has-sticky .ll-toast { bottom: 96px; }
.ll-toast__ic {
  width: 24px; height: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ll-blue);
}
.ll-toast__ic svg { width: 13px; height: 13px; }
.ll-toast__link {
  color: var(--ll-white) !important;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.ll-toast__close {
  width: 28px; height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .6);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.ll-toast__close:hover { color: var(--ll-white); background: rgba(255, 255, 255, .1); }


/* ---------- 7. Responsive ---------- */

@media (max-width: 1080px) {
  .ll-pdp .ll-rcards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .ll-pdp-sticky__buy { display: none; }
}

@media (max-width: 980px) {
  .ll-pdp .ll-pdp-hero__grid,
  .ll-pdp .ll-pdp-about__grid,
  .ll-pdp .ll-pdp-audio__grid { grid-template-columns: minmax(0, 1fr); }

  .ll-pdp .ll-pdp-gallery { position: static; max-width: 520px; margin-inline: auto; width: 100%; }
  .ll-pdp .ll-pdp-gallery__img { max-width: 300px; }
  .ll-pdp .ll-pdp-buy { padding-top: 0; }
}

@media (max-width: 720px) {
  .ll-pdp .ll-section { padding: clamp(44px, 9vw, 64px) 0 !important; }

  .ll-pdp .ll-pdp-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-pdp .ll-rcards { grid-template-columns: minmax(0, 1fr); }

  .ll-pdp .ll-pdp-buy__cart .quantity { width: 124px !important; }
  .ll-pdp .ll-pdp-buy__cart .single_add_to_cart_button { flex: 1 1 0; min-width: 0; padding: 17px 18px !important; }

  .ll-pdp-sticky__product { display: none; }
  .ll-pdp-sticky__actions { flex: 1; }
  .ll-pdp-sticky__add { flex: 1; }
  .ll-toast { left: 16px; right: 16px; bottom: 16px; }
  .ll-has-sticky .ll-toast { bottom: 84px; }

  .ll-pdp .ll-pdp-audio__fact { padding: 0 12px; }
  .ll-pdp .ll-pdp-audio__panel { border-radius: var(--ll-r-lg); }

  .ll-pdp .ll-pdp-reader__bar { flex-wrap: wrap; }
  .ll-pdp .ll-pdp-reader__progress { order: -1; flex-basis: 100%; margin-bottom: 6px; }
  .ll-pdp .ll-pdp-reader__nav:last-of-type { margin-left: auto; }
}

@media (max-width: 480px) {
  .ll-pdp .ll-pdp-gallery__img { max-width: 240px; }
  .ll-pdp .ll-pdp-about__points > li,
  .ll-pdp .ll-pdp-audio__steps > li { padding: 18px 18px !important; column-gap: 14px; }
}


/* ---------- 8. Toegankelijkheid ---------- */

.ll-pdp :focus-visible {
  outline: 2.5px solid var(--ll-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.ll-pdp .ll-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ll-pdp *,
  .ll-pdp *::before,
  .ll-pdp *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- 2b. Inkijkexemplaar als opengeslagen boek (PDF-modus) ----------
   JS zet --ll-pw / --ll-ph (paginabreedte/-hoogte) op de stage.
   .is-closed = alleen de omslag, gecentreerd; .is-single = mobiel, één pagina. */

.ll-pdp .ll-flipbook {
  grid-area: 1 / 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0 14px;
  perspective: 2600px;
  transition: opacity .4s ease, visibility 0s linear 0s;
}
.ll-pdp .ll-flipbook.is-away { opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility 0s linear .4s; }

.ll-pdp .ll-flipbook__stage {
  position: relative;
  width: calc(var(--ll-pw, 400px) * 2);
  height: var(--ll-ph, 560px);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .76s cubic-bezier(.45, .05, .2, 1);
}
/* Dicht boek: de omslag (rechtervak) staat in het midden */
.ll-pdp .ll-flipbook.is-closed .ll-flipbook__stage { transform: translateX(calc(var(--ll-pw, 400px) * -.5)); }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__stage { width: var(--ll-pw, 400px); transform: none; }

.ll-pdp .ll-flipbook__slot {
  position: absolute;
  top: 0;
  width: var(--ll-pw, 400px);
  height: 100%;
  background: var(--ll-white);
  box-shadow: 0 18px 40px rgba(0, 0, 60, .12), 0 2px 6px rgba(0, 0, 60, .06);
  overflow: hidden;
}
.ll-pdp .ll-flipbook__slot--left { left: 0; border-radius: 12px 2px 2px 12px; }
.ll-pdp .ll-flipbook__slot--right { left: var(--ll-pw, 400px); border-radius: 2px 12px 12px 2px; }
.ll-pdp .ll-flipbook.is-closed .ll-flipbook__slot--right { border-radius: 4px 12px 12px 4px; box-shadow: 0 26px 60px rgba(0, 0, 70, .18), 0 2px 6px rgba(0, 0, 60, .08); }
.ll-pdp .ll-flipbook__slot.is-empty { background: transparent; box-shadow: none; }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__slot--left { display: none; }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__slot--right { left: 0; border-radius: 10px; }

/* Rugschaduw: de pagina's lopen de vouw in */
.ll-pdp .ll-flipbook__slot::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  pointer-events: none;
}
.ll-pdp .ll-flipbook__slot--left::after { right: 0; background: linear-gradient(to left, rgba(0, 0, 40, .14), rgba(0, 0, 40, 0)); }
.ll-pdp .ll-flipbook__slot--right::after { left: 0; background: linear-gradient(to right, rgba(0, 0, 40, .14), rgba(0, 0, 40, 0)); }
.ll-pdp .ll-flipbook__slot.is-empty::after,
.ll-pdp .ll-flipbook.is-closed .ll-flipbook__slot::after,
.ll-pdp .ll-flipbook.is-single .ll-flipbook__slot::after { display: none; }

.ll-pdp .ll-flipbook__spine {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(var(--ll-pw, 400px) - 1px);
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 0, 40, .06), rgba(0, 0, 40, .22), rgba(0, 0, 40, .06));
  z-index: 3;
  pointer-events: none;
  transition: opacity .3s ease;
}
.ll-pdp .ll-flipbook.is-closed .ll-flipbook__spine,
.ll-pdp .ll-flipbook.is-single .ll-flipbook__spine { opacity: 0; }

.ll-pdp .ll-flipbook__sheet { width: 100%; height: 100%; background: var(--ll-white); }
.ll-pdp .ll-flipbook__sheet canvas { display: block; width: 100%; height: 100%; transition: opacity .3s ease; }
.ll-pdp .ll-flipbook__sheet.is-loading { background: var(--ll-blue-25); }
.ll-pdp .ll-flipbook__sheet.is-loading canvas { opacity: 0; }

/* Het blad dat omslaat */
.ll-pdp .ll-flipbook__leaf {
  position: absolute;
  top: 0;
  width: var(--ll-pw, 400px);
  height: 100%;
  z-index: 5;
  transform-style: preserve-3d;
  transition: transform .76s cubic-bezier(.45, .05, .2, 1);
  pointer-events: none;
}
.ll-pdp .ll-flipbook__leaf.is-fwd { left: var(--ll-pw, 400px); transform-origin: left center; }
.ll-pdp .ll-flipbook__leaf.is-fwd.is-turning { transform: rotateY(-180deg); }
.ll-pdp .ll-flipbook__leaf.is-back { left: 0; transform-origin: right center; }
.ll-pdp .ll-flipbook__leaf.is-back.is-turning { transform: rotateY(180deg); }

/* Mobiel: het blad draait rond de linkerrand en verdwijnt / komt terug */
.ll-pdp .ll-flipbook.is-single .ll-flipbook__leaf { left: 0; transform-origin: left center; transition: transform .76s cubic-bezier(.45, .05, .2, 1), opacity .76s ease; }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__leaf.is-fwd.is-turning { transform: rotateY(-120deg); opacity: 0; }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__leaf.is-back { transform: rotateY(-120deg); opacity: 0; }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__leaf.is-back.is-turning { transform: none; opacity: 1; }

.ll-pdp .ll-flipbook__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ll-white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ll-pdp .ll-flipbook__leaf.is-fwd .ll-flipbook__face--front { border-radius: 2px 12px 12px 2px; }
.ll-pdp .ll-flipbook__leaf.is-fwd .ll-flipbook__face--back { border-radius: 12px 2px 2px 12px; transform: rotateY(180deg); }
.ll-pdp .ll-flipbook__leaf.is-back .ll-flipbook__face--front { border-radius: 12px 2px 2px 12px; }
.ll-pdp .ll-flipbook__leaf.is-back .ll-flipbook__face--back { border-radius: 2px 12px 12px 2px; transform: rotateY(180deg); }
.ll-pdp .ll-flipbook.is-single .ll-flipbook__face { border-radius: 10px; }

/* Licht en schaduw tijdens het omslaan */
.ll-pdp .ll-flipbook__face::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.ll-pdp .ll-flipbook__leaf.is-fwd .ll-flipbook__face--front::after { background: linear-gradient(to left, rgba(0, 0, 40, .35), rgba(0, 0, 40, 0) 70%); }
.ll-pdp .ll-flipbook__leaf.is-fwd .ll-flipbook__face--back::after { background: linear-gradient(to left, rgba(0, 0, 40, .3), rgba(0, 0, 40, 0) 60%); }
.ll-pdp .ll-flipbook__leaf.is-back .ll-flipbook__face--front::after { background: linear-gradient(to right, rgba(0, 0, 40, .35), rgba(0, 0, 40, 0) 70%); }
.ll-pdp .ll-flipbook__leaf.is-back .ll-flipbook__face--back::after { background: linear-gradient(to right, rgba(0, 0, 40, .3), rgba(0, 0, 40, 0) 60%); }
.ll-pdp .ll-flipbook__leaf.is-turning .ll-flipbook__face--front::after { animation: ll-leaf-shade-in .76s ease-in forwards; }
.ll-pdp .ll-flipbook__leaf.is-turning .ll-flipbook__face--back::after { animation: ll-leaf-shade-out .76s ease-out forwards; }
@keyframes ll-leaf-shade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes ll-leaf-shade-out { 0%, 45% { opacity: 1; } 100% { opacity: 0; } }

.ll-pdp .ll-pdp-reader.is-book .ll-pdp-reader__viewport { min-height: 0; }
.ll-pdp .ll-pdp-reader.is-book .ll-pdp-reader__gate { min-height: 320px; }

@media (prefers-reduced-motion: reduce) {
  .ll-pdp .ll-flipbook__stage { transition: none; }
}
.ll-pdp .ll-pdp-reader__loading[hidden],
.ll-pdp .ll-pdp-reader__fallback[hidden] { display: none; }

/* ---------- 4b. Audio uit het inkijkexemplaar (gevuld door product.js) ---------- */

.ll-pdp .ll-pdp-tracks[hidden] { display: none; }
.ll-pdp .ll-pdp-tracks { padding-top: clamp(24px, 3vw, 48px) !important; }

.ll-pdp .ll-pdp-tracks__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 22px;
  font-family: var(--ll-font-body);
  font-size: .88rem;
  color: var(--ll-ink-40);
}
.ll-pdp .ll-pdp-tracks__status[hidden] { display: none; }
.ll-pdp .ll-pdp-tracks__spinner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--ll-blue-100);
  border-top-color: var(--ll-blue);
  animation: ll-spin .8s linear infinite;
}
.ll-pdp .ll-pdp-tracks__track {
  flex: 0 0 160px;
  height: 5px;
  border-radius: var(--ll-r-pill);
  background: var(--ll-blue-50);
  overflow: hidden;
}
.ll-pdp .ll-pdp-tracks__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ll-blue);
  border-radius: inherit;
  transition: width .3s ease;
}

.ll-pdp .ll-pdp-tracks__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.ll-pdp .ll-pdp-tracks__intro .ll-pdp-head { text-align: left; margin-bottom: 0; }
.ll-pdp .ll-pdp-tracks__intro .ll-lede { margin-inline: 0 !important; }
.ll-pdp .ll-pdp-tracks__intro .ll-pdp-tracks__status { margin: 22px 0 0; }

.ll-pdp .ll-pdp-tracks__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.ll-pdp .ll-pdp-tracks__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 !important;
  padding: 16px 18px !important;
  list-style: none !important;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-r-md);
  transition: box-shadow .3s ease, transform .3s var(--ll-ease);
  animation: ll-track-in .5s var(--ll-ease) both;
  animation-delay: calc(var(--i, 0) * 60ms);
}
.ll-pdp .ll-pdp-tracks__item::before,
.ll-pdp .ll-pdp-tracks__item::marker { content: none !important; display: none !important; }
.ll-pdp .ll-pdp-tracks__item:hover { box-shadow: var(--ll-shadow-sm); transform: translateY(-2px); }
@keyframes ll-track-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.ll-pdp .ll-pdp-tracks__ic {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 14px 4px;
  background: var(--ll-blue-50);
  color: var(--ll-blue);
}
.ll-pdp .ll-pdp-tracks__ic svg { width: 21px; height: 21px; }

.ll-pdp .ll-pdp-tracks__txt { flex: 1; min-width: 0; }
.ll-pdp .ll-pdp-tracks__txt strong {
  display: block;
  font-family: var(--ll-font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ll-ink);
  line-height: 1.3;
}
.ll-pdp .ll-pdp-tracks__txt small { display: block; font-size: .8rem; color: var(--ll-ink-40); line-height: 1.4; margin-top: 2px; }

.ll-pdp .ll-pdp-tracks__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.ll-pdp .ll-pdp-tracks__play,
.ll-pdp .ll-pdp-tracks__page {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  margin: 0;
  font-family: var(--ll-font-display) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--ll-r-pill);
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color .25s, color .25s, border-color .25s;
}
.ll-pdp .ll-pdp-tracks__play { color: var(--ll-white) !important; background: var(--ll-blue); border: 1.5px solid var(--ll-blue); }
.ll-pdp .ll-pdp-tracks__play:hover { background: var(--ll-blue-700); border-color: var(--ll-blue-700); }
.ll-pdp .ll-pdp-tracks__play svg { width: 13px; height: 13px; }
.ll-pdp .ll-pdp-tracks__page { color: var(--ll-ink); background: var(--ll-white); border: 1.5px solid var(--ll-line); }
.ll-pdp .ll-pdp-tracks__page:hover { color: var(--ll-blue); border-color: var(--ll-blue); }

@media (max-width: 900px) {
  .ll-pdp .ll-pdp-tracks__layout { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .ll-pdp .ll-pdp-tracks__item { flex-wrap: wrap; }
  .ll-pdp .ll-pdp-tracks__actions { width: 100%; padding-left: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .ll-pdp .ll-pdp-tracks__item { animation: none; }
}
