/* ============================================================================
   Rustmoment in de klas — Webshop
   Shoppagina, productpagina en winkelwagen.
   Gebaseerd op het redesign van 28-08-2026.
   ========================================================================= */

/* ---------------------------------------------------------------------------
   1. GEDEELDE SHOP-ONDERDELEN
   ------------------------------------------------------------------------ */

.ridk-shop-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.ridk-eyebrow-shop .elementor-heading-title,
.ridk-shop-eyebrow {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ridk-coral-700) !important;
  margin: 0 0 14px !important;
}

/* Intro op de shoppagina — Work Sans wint van de p-regel in tokens.css */
.ridk-shop-intro p {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ridk-fg-2);
  margin: 0;
}
.ridk-shop-intro a {
  color: var(--ridk-blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ridk-shop-intro a:hover { color: var(--ridk-blue-700); }

/* Gele checkregels */
.ridk-checkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin: 26px 0 0;
}
.ridk-checkrow span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-text);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ridk-fg-2);
}
.ridk-checkrow span::before {
  content: "✓";
  color: var(--ridk-yellow);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  flex: none;
}

/* Check-bullets onder elkaar */
.ridk-checks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.ridk-checks li {
  position: relative;
  padding: 0 0 0 26px;
  margin: 0 0 9px;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ridk-fg);
}
.ridk-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ridk-yellow);
  font-weight: 700;
}

/* Trustregel */
.ridk-trustrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 18px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--ridk-line);
  font-family: var(--font-text);
  font-size: 13.5px;
  color: var(--ridk-fg-3);
}
.ridk-trustrow span { display: inline-flex; align-items: center; gap: 8px; }
.ridk-trustrow span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ridk-fg-3);
  display: inline-block;
  margin-right: 14px;
  opacity: 0.7;
}

/* Presale-hoeklint (corner ribbon) over het hero-beeld */
.ridk-shop-heroR { position: relative; }
.ridk-hero-ribbon {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transform: rotate(1.5deg);
  pointer-events: none;
}
.ridk-hero-ribbon span {
  position: absolute;
  top: 30px;
  right: -66px;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 9px 0 10px;
  background: var(--ridk-coral);
  transform: rotate(45deg);
  box-shadow: 0 6px 18px rgba(216,69,40,0.30);
}
.ridk-hero-ribbon strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: #FFFFFF;
}
.ridk-hero-ribbon em {
  font-family: var(--font-text);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgba(255,255,255,0.92);
}

/* Hero-afbeelding op de shoppagina */
.ridk-shop-heroimg img {
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(58,100,118,0.14);
  transform: rotate(1.5deg);
}

/* ---------------------------------------------------------------------------
   2. PRODUCTGRID OP DE SHOPPAGINA
   ------------------------------------------------------------------------ */

.ridk-shopgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.ridk-pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ridk-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-soft),
              box-shadow var(--dur-base) var(--ease-soft);
}
.ridk-pcard:hover,
.ridk-pcard:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.ridk-pcard__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ridk-pcard__tile img {
  width: 78%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(58,100,118,0.16);
  transition: transform var(--dur-slow) var(--ease-soft);
}
.ridk-pcard:hover .ridk-pcard__tile img { transform: scale(1.03); }

.ridk-pcard__tile--paper { background: var(--ridk-paper); }
.ridk-pcard__tile--sage  { background: var(--ridk-sage-100); }
.ridk-pcard__tile--yellow{ background: var(--ridk-yellow-100); }
.ridk-pcard__tile--coral { background: var(--ridk-coral-100); }
.ridk-pcard__tile--blue  { background: var(--ridk-blue-100); }

.ridk-pcard__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  background: var(--ridk-yellow);
  color: var(--ridk-teal);
}
.ridk-pcard__badge--coral { background: var(--ridk-coral); color: #fff; }
.ridk-pcard__badge--sage  { background: var(--ridk-sage); color: var(--ridk-teal-700); }

.ridk-pcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.ridk-pcard__type {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ridk-blue);
  margin: 0 0 8px;
}
.ridk-pcard__type--digital { color: var(--ridk-coral-700); }

.ridk-pcard__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ridk-teal);
  margin: 0 0 8px;
}

.ridk-pcard__desc {
  font-family: var(--font-text);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ridk-fg-2);
  margin: 0 0 18px;
}

.ridk-pcard__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  white-space: nowrap;
}
.ridk-pcard__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--ridk-teal);
}
.ridk-pcard__price del {
  font-weight: 500;
  font-size: 14px;
  color: var(--ridk-fg-3);
  margin-left: 6px;
}
.ridk-pcard__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ridk-blue);
}
.ridk-pcard:hover .ridk-pcard__link { color: var(--ridk-blue-700); }

/* Platformband */
.ridk-platformband {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ridk-blue-100);
  border-radius: var(--radius-xl);
  padding: 30px 36px;
}
.ridk-platformband h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ridk-teal);
  margin: 0 0 6px;
}
.ridk-platformband p {
  font-family: var(--font-text);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ridk-fg-2);
  margin: 0;
  max-width: 620px;
}
.ridk-bandbtn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ridk-blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.ridk-bandbtn:hover { background: var(--ridk-blue-700); color: #fff; transform: translateY(-1px); }
.ridk-bandbtn:active { transform: scale(0.98); }

.ridk-readmore {
  margin: 22px 0 0;
  font-family: var(--font-text);
  font-size: 14.5px;
  color: var(--ridk-fg-2);
  text-align: center;
}
.ridk-readmore a { color: var(--ridk-blue); font-weight: 600; text-decoration: none; }
.ridk-readmore a:hover { color: var(--ridk-blue-700); text-decoration: underline; }

@media (max-width: 1024px) {
  .ridk-shopgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .ridk-platformband { flex-direction: column; align-items: flex-start; padding: 26px 26px; }
}
@media (max-width: 767px) {
  .ridk-shopgrid { grid-template-columns: 1fr; }
  .ridk-hero-ribbon { transform: none; }
  .ridk-hero-ribbon span { top: 24px; right: -70px; width: 220px; }
  .ridk-shop-heroimg img { transform: none; }
  .ridk-checkrow { gap: 10px 20px; }
}

/* ---------------------------------------------------------------------------
   3. PRODUCTPAGINA
   ---------------------------------------------------------------------------
   Eén vaste opbouw voor alle producten (herzien 01-09-2026).

   LET OP — specificiteit. WooCommerce zet in woocommerce-layout.css
   `.woocommerce div.product div.images { float:left; width:48% }` en hetzelfde
   voor `div.summary` (0,3,2). Een selector als `.single-product div.product
   .summary` (0,3,1) verliest daarvan, waardoor beide kolommen tot 48% van hun
   rasterbaan krimpen. Daarom staat overal waar we met WooCommerce concurreren
   het zwaardere voorvoegsel `.woocommerce.single-product div.product`.
   ------------------------------------------------------------------------ */

.single-product .site-main,
.woocommerce-cart .site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 28px 96px;
}

/* --- Kruimelpad --------------------------------------------------------- */

.ridk-crumbs {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--ridk-fg-3);
  margin: 0 0 26px;
}
.ridk-crumbs a { color: var(--ridk-fg-2); text-decoration: none; }
.ridk-crumbs a:hover { color: var(--ridk-blue); }
.ridk-crumbs .sep { margin: 0 8px; opacity: 0.6; }
.ridk-crumbs__here { color: var(--ridk-teal); font-weight: 600; }

/* --- Hero: twee kolommen ------------------------------------------------ */
/* WooCommerce hangt het kruimelpad en alle blokken eronder óók in div.product,
   dus die moeten expliciet over de volle breedte. */

.woocommerce.single-product div.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: 48px;
  row-gap: 0;
  align-items: start;
}
.woocommerce.single-product div.product > .ridk-crumbs,
.woocommerce.single-product div.product > .ridk-staffelband,
.woocommerce.single-product div.product > .ridk-usage,
.woocommerce.single-product div.product > .woocommerce-notices-wrapper,
.woocommerce.single-product div.product > .woocommerce-tabs,
.woocommerce.single-product div.product > .related,
.woocommerce.single-product div.product > .upsells {
  grid-column: 1 / -1;
}

.woocommerce.single-product div.product div.summary {
  float: none;
  width: auto;
  clear: none;
  margin: 0;
}

/* --- Galerij ------------------------------------------------------------ */

.woocommerce.single-product div.product div.images {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  opacity: 1 !important;
  position: relative;
}

/* Hoofdbeeld in een crèmekleurig kader, vaste 4:3-verhouding. */
.woocommerce.single-product div.product div.images .flex-viewport,
.woocommerce.single-product div.product div.images .woocommerce-product-gallery__wrapper {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ridk-paper);
}
.woocommerce.single-product div.product div.images .flex-viewport {
  box-shadow: var(--shadow-card);
}
.woocommerce.single-product div.product div.images .woocommerce-product-gallery__image a {
  display: block;
}
.woocommerce.single-product div.product div.images .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* Zes vierkante thumbnails onder het hoofdbeeld. */
.woocommerce.single-product div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  overflow: visible;
}
.woocommerce.single-product div.product div.images .flex-control-thumbs li {
  width: auto;
  float: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce.single-product div.product div.images .flex-control-thumbs li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--ridk-paper);
  border: 2.5px solid transparent;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.woocommerce.single-product div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: var(--ridk-sage);
}
.woocommerce.single-product div.product div.images .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: var(--ridk-blue);
}

/* De vergrootknop en de aanbiedingsvlag passen niet in dit ontwerp. */
.woocommerce.single-product div.product .woocommerce-product-gallery__trigger { display: none; }
.woocommerce.single-product div.product span.onsale { display: none; }

/* --- Koopkolom: kop en tekst -------------------------------------------- */

.woocommerce.single-product div.product div.summary .ridk-ptype {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ridk-coral);
  margin: 0 0 10px;
}
.woocommerce.single-product div.product .product_title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ridk-teal);
  margin: 0 0 14px;
  padding: 0;
}

.woocommerce.single-product div.product .ridk-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--ridk-fg-2);
  margin: 0 0 18px;
}
.ridk-social-proof .ridk-stars { color: var(--ridk-yellow); font-size: 16px; letter-spacing: 2px; }
.ridk-social-proof .ridk-proof { font-weight: 600; }
.ridk-social-proof .ridk-proofquote {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  color: var(--ridk-teal);
}

.woocommerce.single-product div.product .woocommerce-product-details__short-description {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ridk-fg);
  margin: 0 0 18px;
}
.woocommerce.single-product div.product .woocommerce-product-details__short-description p { margin: 0 0 10px; }
.woocommerce.single-product div.product .woocommerce-product-details__short-description p:last-child { margin-bottom: 0; }

/* Vinklijst met gele vinkjes. */
.woocommerce.single-product div.product div.summary .ridk-checks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.woocommerce.single-product div.product div.summary .ridk-checks li {
  position: relative;
  margin: 0;
  padding: 0 0 0 29px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ridk-fg);
}
.woocommerce.single-product div.product div.summary .ridk-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ridk-yellow);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
}

/* --- Koopkaart ---------------------------------------------------------- */

.woocommerce.single-product div.product .ridk-buycard {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  background: var(--ridk-paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.woocommerce.single-product div.product .ridk-buycard > * { flex: 0 0 100%; }

.woocommerce.single-product div.product div.summary p.price {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  color: var(--ridk-teal);
  margin: 0 12px 0 0;
}
.woocommerce.single-product div.product div.summary p.price del {
  font-size: 19px;
  font-weight: 600;
  color: var(--ridk-fg-3);
  opacity: 1;
  margin-right: 8px;
  text-decoration-thickness: 2px;
}
.woocommerce.single-product div.product div.summary p.price ins {
  text-decoration: none;
  background: none;
  font-weight: 700;
  color: var(--ridk-teal);
}
.woocommerce.single-product div.product div.summary p.price .woocommerce-price-suffix { display: none; }
.woocommerce .screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.woocommerce.single-product div.product .ridk-priceunit {
  flex: 0 0 auto;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: var(--ridk-fg-2);
  margin: 0;
}
.woocommerce.single-product div.product .ridk-pricenote {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--ridk-fg-2);
  margin: 4px 0 16px;
}

/* Voorraadstip. */
.woocommerce.single-product div.product div.summary p.stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 14px;
  color: var(--ridk-teal);
  margin: 0 0 16px;
}
.woocommerce.single-product div.product div.summary p.stock::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ridk-sage);
  flex-shrink: 0;
}
.woocommerce.single-product div.product div.summary p.stock.available-on-backorder::before { background: var(--ridk-yellow); }
.woocommerce.single-product div.product div.summary p.stock.out-of-stock::before { background: var(--ridk-coral); }

/* Aantal en bestelknop naast elkaar. */
.woocommerce.single-product div.product form.cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
.woocommerce.single-product div.product form.cart::before,
.woocommerce.single-product div.product form.cart::after { content: none; }
.woocommerce.single-product div.product .shopengine-wishlist,
.woocommerce.single-product div.product .shopengine-comparison,
.woocommerce.single-product div.product .product_meta { display: none; }

.woocommerce.single-product div.product form.cart div.quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--ridk-line-warm);
  border-radius: var(--radius-pill);
  background: #fff;
  overflow: hidden;
  float: none;
  margin: 0;
  flex-shrink: 0;
}
.woocommerce.single-product div.product form.cart div.quantity button {
  border: 0;
  background: none;
  width: 42px;
  height: 48px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ridk-teal);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft);
}
.woocommerce.single-product div.product form.cart div.quantity button:hover {
  background: var(--ridk-sage-100);
  color: var(--ridk-teal);
}
.woocommerce.single-product div.product form.cart div.quantity input.qty {
  width: 42px;
  min-width: 32px;
  height: 48px;
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 17px;
  color: var(--ridk-fg);
  -moz-appearance: textfield;
  appearance: textfield;
}
.woocommerce.single-product div.product form.cart div.quantity input.qty::-webkit-outer-spin-button,
.woocommerce.single-product div.product form.cart div.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce.single-product div.product form.cart button.single_add_to_cart_button,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button.alt {
  flex: 1;
  float: none;
  background: var(--ridk-coral);
  background-color: var(--ridk-coral);
  color: #fff;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(252, 96, 72, 0.32);
  transition: background-color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:hover,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button.alt:hover {
  background: var(--ridk-coral-700);
  background-color: var(--ridk-coral-700);
  color: #fff;
}
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:active {
  transform: scale(0.98);
}

.woocommerce.single-product div.product .ridk-deliverypromise {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  color: var(--ridk-fg-2);
  margin: 14px 0 0;
}

.woocommerce.single-product div.product .ridk-buycard .ridk-trustrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 6px 0 0;
  padding: 0;
  border-top: 0;
}
.woocommerce.single-product div.product .ridk-buycard .ridk-trustrow span {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  color: var(--ridk-fg-2);
}
.woocommerce.single-product div.product .ridk-buycard .ridk-trustrow span + span::before {
  margin-right: 8px;
}

/* --- Staffelband -------------------------------------------------------- */

.ridk-staffelband {
  margin: 40px 0 0;
  background: var(--ridk-blue-100);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: center;
}
.ridk-staffelband__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: var(--ridk-teal);
  margin: 0 0 10px;
}
.ridk-staffelband__intro p {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ridk-fg-2);
  margin: 0;
}
.ridk-staffelband__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
}
.ridk-staffel__list { list-style: none; margin: 0; padding: 0; }
.ridk-staffel__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  margin: 0;
  border-bottom: 1px solid var(--ridk-line);
  font-family: var(--font-text);
  font-size: 15.5px;
  color: var(--ridk-fg-2);
}
.ridk-staffel__list li:last-child { border-bottom: 0; }
.ridk-staffel__list li strong {
  font-weight: 700;
  color: var(--ridk-teal);
  white-space: nowrap;
}
.ridk-staffel__note {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--ridk-fg-3);
  margin: 14px 0 0;
}

/* --- Omschrijving in één kolom ------------------------------------------ */

.ridk-usage {
  max-width: 760px;
  margin: 64px auto 0;
}
.ridk-usage h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ridk-teal);
  margin: 0 0 16px;
}
.ridk-usage h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ridk-teal);
  margin: 30px 0 12px;
}
.ridk-usage p {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ridk-fg-2);
  margin: 0 0 14px;
}
.ridk-usage a { color: var(--ridk-blue); font-weight: 600; }
.ridk-usage ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ridk-usage ul li {
  position: relative;
  margin: 0;
  padding: 0 0 0 29px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ridk-fg);
}
.ridk-usage ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ridk-yellow);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
}

/* Quotekaart onderaan. */
.ridk-quotecard {
  background: var(--ridk-sage-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 34px 0 0;
}
.ridk-quotecard blockquote {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ridk-teal);
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  quotes: none;
}
.ridk-quotecard figcaption {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  color: var(--ridk-fg-3);
  margin: 8px 0 0;
}

/* --- Schermbreedtes ----------------------------------------------------- */

@media (max-width: 1000px) {
  .woocommerce.single-product div.product .product_title { font-size: 34px; }
  .ridk-staffelband { grid-template-columns: 1fr; gap: 22px; padding: 28px; }
}

@media (max-width: 900px) {
  .woocommerce.single-product div.product { grid-template-columns: 1fr; row-gap: 32px; }
  .ridk-usage { margin-top: 48px; }
}

@media (max-width: 600px) {
  .single-product .site-main,
  .woocommerce-cart .site-main { padding: 22px 18px 72px; }
  .woocommerce.single-product div.product .product_title { font-size: 28px; }
  .woocommerce.single-product div.product div.summary .ridk-checks li,
  .ridk-usage ul li { font-size: 15.5px; }
  .woocommerce.single-product div.product .ridk-buycard { padding: 20px; }
  .woocommerce.single-product div.product div.summary p.price { font-size: 30px; }
  .woocommerce.single-product div.product form.cart { flex-wrap: wrap; }
  .woocommerce.single-product div.product form.cart button.single_add_to_cart_button { flex: 1 0 100%; }
  .woocommerce.single-product div.product div.images .flex-control-thumbs { gap: 7px; }
  .ridk-staffelband { padding: 24px 20px; }
  .ridk-staffel__list li { flex-direction: column; gap: 2px; }
  .ridk-usage h2 { font-size: 26px; }
  .ridk-quotecard blockquote { font-size: 21px; }
}

/* ---------------------------------------------------------------------------
   4. WINKELWAGEN
   ------------------------------------------------------------------------ */

.ridk-cart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.ridk-cart-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--ridk-teal);
  margin: 0;
}
.ridk-cart-head a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ridk-blue);
  text-decoration: none;
}
.ridk-cart-head a:hover { color: var(--ridk-blue-700); text-decoration: underline; }

.woocommerce-cart .woocommerce { display: block; }
.woocommerce-cart .woocommerce-cart-form {
  float: none;
  width: auto;
}

@media (min-width: 901px) {
  .woocommerce-cart .ridk-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
  }
}

.woocommerce-cart .ridk-cart-layout > .woocommerce-notices-wrapper { grid-column: 1 / -1; }

.woocommerce-cart table.cart {
  display: block;
  border: 0;
  width: 100%;
  margin: 0;
}
.woocommerce-cart table.cart thead { display: none; }
.woocommerce-cart table.cart tbody { display: block; }
.woocommerce-cart table.cart tbody > tr { display: block; }
.woocommerce-cart table.cart td { border: 0; padding: 0; display: block; }
.woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto auto auto;
  grid-template-areas: "thumb name qty sub remove";
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ridk-line);
}
.woocommerce-cart td.product-thumbnail { grid-area: thumb; }
.woocommerce-cart td.product-name { grid-area: name; }
.woocommerce-cart td.product-quantity { grid-area: qty; }
.woocommerce-cart td.product-subtotal { grid-area: sub; }
.woocommerce-cart td.product-remove { grid-area: remove; }
.woocommerce-cart table.shop_table td.product-thumbnail {
  background: var(--ridk-paper);
  border-radius: var(--radius-md);
  padding: 8px;
}
.woocommerce-cart td.product-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.woocommerce-cart td.product-name a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ridk-teal);
  text-decoration: none;
  display: block;
  margin: 0 0 3px;
}
.woocommerce-cart td.product-name a:hover { color: var(--ridk-blue); }
.ridk-cart-meta {
  font-family: var(--font-text);
  font-size: 13.5px;
  color: var(--ridk-fg-3);
}
.woocommerce-cart table.cart td.product-price { display: none !important; }
.woocommerce-cart td.product-subtotal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ridk-teal);
  white-space: nowrap;
}
.woocommerce-cart td.product-remove a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent !important;
  color: var(--ridk-fg-3) !important;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.woocommerce-cart td.product-remove a.remove:hover {
  background: var(--ridk-coral-100) !important;
  color: var(--ridk-coral-700) !important;
}

.woocommerce-cart table.cart td.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
}
.woocommerce-cart .coupon { display: flex; gap: 10px; flex: 1; }
.woocommerce-cart .coupon input#coupon_code {
  border: 1px solid var(--ridk-line);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  max-width: 220px;
}
.woocommerce-cart .coupon button,
.woocommerce-cart button[name="update_cart"] {
  background: #fff !important;
  color: var(--ridk-blue) !important;
  border: 2px solid var(--ridk-blue) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  padding: 10px 20px !important;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft);
}
.woocommerce-cart .coupon button:hover,
.woocommerce-cart button[name="update_cart"]:hover { background: var(--ridk-blue-100) !important; }
.woocommerce-cart button[name="update_cart"]:disabled { opacity: 0.45; cursor: default; }

/* Gele nudge */
.ridk-freeship {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ridk-yellow-100);
  border: 1px solid #F5DFAF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 22px 0 0;
  font-family: var(--font-text);
  font-size: 14.5px;
  color: var(--ridk-teal-700);
}
.ridk-freeship strong { font-family: var(--font-body); }

/* Samenvatting */
.woocommerce-cart .cart-collaterals { width: auto; float: none; }
.woocommerce-cart .cart-collaterals .cart_totals { width: auto; float: none; }
.woocommerce-cart .cart_totals > h2 { display: none; }
.woocommerce-cart .cart_totals {
  position: sticky;
  top: 120px;
  background: var(--ridk-paper);
  border: 1px solid var(--ridk-line-warm);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
}
.woocommerce-cart .cart_totals table.shop_table_responsive,
.woocommerce-cart .cart_totals table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  border: 0 !important;
  padding: 9px 0 !important;
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ridk-fg-2);
  background: transparent !important;
}
.woocommerce-cart .cart_totals table th {
  font-weight: 500;
  text-align: left;
  width: 55%;
}
.woocommerce-cart .cart_totals table td { text-align: right; color: var(--ridk-teal); font-weight: 600; }
.woocommerce-cart .cart_totals tr.order-total th,
.woocommerce-cart .cart_totals tr.order-total td {
  border-top: 1px solid var(--ridk-line-warm) !important;
  padding-top: 14px !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--ridk-teal);
}
.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
.woocommerce-cart .cart_totals .shipping-calculator-button { font-size: 13px; color: var(--ridk-fg-3); }
.woocommerce-cart .wc-proceed-to-checkout { padding: 0; }
.woocommerce-cart .checkout-button {
  display: block !important;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.ridk-paynote {
  margin: 14px 0 0;
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ridk-fg-3);
  text-align: center;
}

/* Lege winkelwagen */
.ridk-cart-empty {
  text-align: center;
  padding: 56px 24px 70px;
}
.ridk-cart-empty h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ridk-teal);
  margin: 0 0 10px;
}
.ridk-cart-empty p {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--ridk-fg-2);
  margin: 0 0 24px;
}
.ridk-cart-empty .ridk-bandbtn { background: var(--ridk-coral); }
.ridk-cart-empty .ridk-bandbtn:hover { background: var(--ridk-coral-700); }
.woocommerce-cart .cart-empty,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop { display: none !important; }
.woocommerce-cart .page-header,
.single-product .page-header { display: none; }

@media (max-width: 900px) {
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 66px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb name remove"
      "thumb qty  sub";
    align-items: start;
    row-gap: 12px;
    column-gap: 14px;
  }
  .woocommerce-cart td.product-thumbnail { align-self: start; }
  .woocommerce-cart td.product-quantity,
  .woocommerce-cart td.product-subtotal { align-self: center; }
  .woocommerce-cart td.product-subtotal { text-align: right; }
  .woocommerce-cart td.product-remove { text-align: right; }
  .woocommerce-cart .cart_totals { position: static; margin-top: 28px; }
  .woocommerce-cart .coupon input#coupon_code { max-width: 100%; }
}

/* ---------------------------------------------------------------------------
   5. AFREKENEN
   ------------------------------------------------------------------------ */

.woocommerce-checkout .site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 90px;
}
.woocommerce-checkout .page-header { display: none; }
.woocommerce-checkout h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ridk-teal);
  margin: 0 0 18px;
}
.woocommerce-checkout .woocommerce form .form-row label,
.woocommerce-checkout label {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--ridk-fg-2);
}
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout .select2-selection {
  font-family: var(--font-text) !important;
  font-size: 15px !important;
  border: 1px solid var(--ridk-line) !important;
  border-radius: var(--radius-md) !important;
  padding: 12px 16px !important;
  min-height: 48px;
}
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading + #order_review {
  background: var(--ridk-paper);
  border: 1px solid var(--ridk-line-warm);
  border-radius: var(--radius-lg);
  padding: 24px 26px 26px;
}
.woocommerce-checkout #place_order {
  background: var(--ridk-coral) !important;
  color: #fff !important;
  font-family: var(--font-text) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: 0 !important;
  border-radius: var(--radius-pill) !important;
  padding: 15px 30px !important;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(252,96,72,0.32);
  transition: background var(--dur-base) var(--ease-soft);
}
.woocommerce-checkout #place_order:hover { background: var(--ridk-coral-700) !important; }

/* De algemene voorwaarden mogen de knop niet wegdrukken. */
.woocommerce-terms-and-conditions {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--ridk-line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 16px 18px;
  margin: 0 0 18px;
  font-family: var(--font-text);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ridk-fg-2);
}
.woocommerce-terms-and-conditions h1,
.woocommerce-terms-and-conditions h2,
.woocommerce-terms-and-conditions h3 { font-size: 15px; margin: 14px 0 6px; }
.woocommerce-privacy-policy-text p {
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ridk-fg-3);
}

/* WooCommerce-meldingen in huisstijl */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 0 !important;
  border-left: 4px solid var(--ridk-sage) !important;
  background: var(--ridk-sage-100) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-text) !important;
  font-size: 15px !important;
  color: var(--ridk-teal-700) !important;
  padding: 16px 20px 16px 22px !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { display: none !important; }
.woocommerce-error { border-left-color: var(--ridk-coral) !important; background: var(--ridk-coral-100) !important; }
.woocommerce-message .button,
.woocommerce-info .button {
  background: #fff !important;
  color: var(--ridk-blue) !important;
  border: 2px solid var(--ridk-blue) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 8px 18px !important;
}


/* ============================================================================
   Twee producten in de shop: uitgelicht product + laatste voorraad (30-08-2026)
   ========================================================================= */
.ridk-shopgrid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin-inline: auto;
}
.ridk-pcard--featured {
  border-color: var(--ridk-coral-300);
  box-shadow: var(--shadow-card);
}
/* Beeld altijd volledig in de tegel, ook bij vierkante of staande mockups */
.ridk-pcard__tile img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 84%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .ridk-shopgrid--duo { grid-template-columns: 1fr; }
}
