/* Voorkomt dat het euroteken los van het bedrag komt te staan (regelafbreking
   in .woocommerce-Price-amount), o.a. in winkelwagen, checkout en sidecart. */
.woocommerce-Price-amount,
.woocommerce-Price-amount bdi {
  display: inline-flex !important;
  align-items: baseline;
  gap: .15em;
  white-space: nowrap !important;
  word-break: keep-all !important;
}
.woocommerce-Price-currencySymbol {
  white-space: nowrap !important;
}

.thisis-shop-hero {
  /* Minder padding op desktop: gaf een grote, lege witruimte onder de
     heading voordat de productgrid begint. */
  padding: 44px clamp(20px, 5vw, 72px) 32px;
  color: var(--thisis-ink);
  background: linear-gradient(180deg, #e9ecf3 0%, #f4f5f8 100%);
  text-align: center;
}
.thisis-shop-hero__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--thisis-ink);
  font-size: 15px;
}
.thisis-shop-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #050505;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.15;
}
.thisis-shop-hero__description {
  max-width: 1040px;
  margin: 20px auto 0;
  color: #171717;
  font-size: 17px;
  line-height: 1.7;
}
.thisis-shop-layout,
.thisis-cart-page,
.thisis-checkout-page {
  padding: 44px clamp(20px, 5vw, 72px);
  background: #f4f5f8;
}
.thisis-shop-layout {
  /* Minder ruimte boven de productgrid op de shop-pagina specifiek (cart/
     checkout ongemoeid laten). */
  padding-top: 28px;
}
.thisis-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1164px;
  margin: 0 auto 32px;
  font-size: 18px;
}
.woocommerce-result-count,
.woocommerce-ordering {
  margin: 0;
  color: var(--thisis-ink);
}
.woocommerce-ordering select {
  min-width: 220px;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(17,17,17,.45);
  background: transparent;
}
.thisis-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0 0 18px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.035);
  list-style: none;
}
.thisis-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px 10px 0 0;
}
.thisis-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: contain;
  padding: 14px;
  transition: transform .22s ease;
}
.thisis-product-card:hover .thisis-product-card__image img {
  transform: scale(1.035);
}
.thisis-product-card__body {
  display: grid;
  align-content: start;
  padding: 0 18px;
}
.thisis-product-card__badge {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: #ef0000;
  border-radius: 0 999px 999px 0;
  font-size: 15px;
  font-weight: 700;
}
.thisis-product-card__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.thisis-product-card__stars small {
  color: var(--thisis-muted);
}
.thisis-product-card h3 {
  min-height: 47px;
  margin: 8px 0;
  color: var(--thisis-deep);
  font-family: Questrial, sans-serif;
  font-size: 17px;
  line-height: 1.3;
}
.thisis-product-card__subtitle {
  color: var(--thisis-muted);
}
.thisis-product-card__price {
  align-self: end;
  margin-top: 8px;
  color: var(--thisis-deep);
  font-size: 19px;
  font-weight: 700;
}
.thisis-product-card__price del {
  color: #8f94a0;
  font-weight: 400;
}
.thisis-product-card__price ins {
  margin-left: 6px;
  color: var(--thisis-deep);
  text-decoration: none;
}
.thisis-product-card__actions {
  margin-top: 14px;
}
.thisis-product-card .button,
.single_add_to_cart_button,
.checkout-button,
.woocommerce-cart-form .button,
.woocommerce-checkout-payment .button,
.woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  border-radius: 999px;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-product-card .button {
  width: 100%;
  min-height: 42px;
  text-align: center;
}
.thisis-products-preview {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #fff;
}
.thisis-products-preview .thisis-section-title {
  max-width: 1180px;
  margin-right: auto;
  margin-bottom: 44px;
  margin-left: auto;
}
.thisis-products-preview .thisis-section-title h2 {
  color: #050505;
  font-size: clamp(30px, 3.2vw, 44px);
}
.thisis-products-preview .thisis-product-grid {
  gap: 34px;
  max-width: 1230px;
}
.thisis-products-preview .thisis-product-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.thisis-products-preview .thisis-product-card__image {
  border-radius: 0;
  background: #fff;
}
.thisis-products-preview .thisis-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  object-fit: contain;
}
.thisis-products-preview .thisis-product-card__body {
  padding: 18px 0 0;
}
.thisis-products-preview .thisis-product-card__stars,
.thisis-products-preview .thisis-product-card__subtitle,
.thisis-products-preview .thisis-product-card__actions {
  display: none;
}
.thisis-products-preview .thisis-product-card h3 {
  min-height: 0;
  margin: 0 0 8px;
  color: #050505;
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}
/* Geen aparte prijsstijl meer hier: de prijs op de homepage-preview
   gebruikt nu dezelfde stijl (kleur/grootte/gewicht) als op de shop-pagina,
   via de gedeelde .thisis-product-card__price regel hierboven. */
.thisis-single-product {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(360px, .72fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 72px) 54px;
  background: #fff;
}
.thisis-product-promo {
  max-width: 600px;
  margin: 76px auto 8px;
  padding: 14px 22px;
  color: #171717;
  background: #fff8d9;
  border: 1px solid #e0ca3e;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.thisis-single-product__gallery {
  position: sticky;
  top: 116px;
  min-height: 0;
  overflow: hidden;
}
.thisis-single-product__badge {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: 0;
  padding: 12px 18px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(17,24,39,.09);
  font-size: 13px;
}
.thisis-single-product__gallery .woocommerce-product-gallery,
.thisis-single-product__external-image {
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 8px;
  /* WooCommerce zet dit element via JS naar opacity:0 totdat de flexslider
     'init' event afgaat. Als dat niet gebeurt (JS-conflict/timing) blijft de
     hele gallery onzichtbaar. Forceer zichtbaarheid zodat de gewone
     WooCommerce-gallery altijd getoond wordt, ook als de slider niet init't. */
  opacity: 1 !important;
}
.thisis-single-product__gallery .flex-control-nav,
.thisis-single-product__gallery .flex-direction-nav {
  display: none;
}
.thisis-single-product__gallery .woocommerce-product-gallery__wrapper {
  /* GEEN max-width hier: de flexslider-JS zet op dit element bewust een
     breedte van meerdere honderden procenten (bv. 300%) om alle slides naast
     elkaar te leggen, en verschuift ze met een transform. Een max-width:100%
     knijpt die baan terug tot de breedte van 1 slide, waardoor de slides niet
     meer naast elkaar passen en elk op een eigen regel onder elkaar vallen
     (buiten beeld van de .flex-viewport) i.p.v. zichtbaar te schuiven. Dit was
     de daadwerkelijke oorzaak van "2e/3e afbeelding laadt niet": klikken op
     een thumbnail liet het hoofdbeeld leeg/wit zien. De zichtbare breedte
     wordt al begrensd door de ouder-elementen (.woocommerce-product-gallery
     en .flex-viewport), die beide overflow:hidden hebben.
  */
  margin: 0;
}
.thisis-single-product__gallery .woocommerce-product-gallery__image {
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.thisis-single-product__gallery .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}
.thisis-single-product__gallery .woocommerce-product-gallery__trigger {
  display: none;
}
.thisis-single-product__gallery .woocommerce-product-gallery__image img,
.thisis-single-product__external-image img {
  width: 100%;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
}
.thisis-single-product__gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.thisis-single-product__gallery .flex-control-thumbs li {
  width: 80px !important;
  height: 80px;
  overflow: hidden;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
}
.thisis-single-product__gallery .flex-control-thumbs img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  padding: 0;
  cursor: pointer;
  opacity: .72;
  transition: opacity .16s ease, transform .16s ease;
}
.thisis-single-product__gallery .flex-control-thumbs img.is-active,
.thisis-single-product__gallery .flex-control-thumbs img:hover {
  opacity: 1;
  transform: scale(1.03);
}
.thisis-single-product .product_meta {
  display: none;
}
.thisis-single-product__summary {
  padding-top: 8px;
}

.has-sidecart-open {
  overflow: hidden;
  overscroll-behavior: none;
}
.thisis-sidecart-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(5, 9, 22, 0.48);
  backdrop-filter: blur(2px);
  overscroll-behavior: none;
  touch-action: none;
}
.thisis-sidecart {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100001;
  width: min(100vw, 440px);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #fff;
  box-shadow: -24px 0 60px rgba(8, 15, 34, 0.22);
  transform: translateX(105%);
  transition: transform .24s ease;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.thisis-sidecart.is-loading {
  cursor: progress;
}
.thisis-sidecart.is-loading .thisis-sidecart__inner {
  opacity: .72;
  pointer-events: none;
}
.has-sidecart-open .thisis-sidecart {
  transform: translateX(0);
}
.thisis-sidecart__inner {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  color: var(--thisis-ink);
  background: #fff;
  overscroll-behavior: contain;
}
.thisis-sidecart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 20px;
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-sidecart__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--thisis-gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.thisis-sidecart__header h2 {
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.thisis-sidecart__close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.thisis-sidecart__shipping {
  padding: 15px 24px 16px;
  background: #fbfaf6;
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-sidecart__shipping-text {
  margin-bottom: 10px;
  color: var(--thisis-deep);
  font-weight: 700;
  line-height: 1.35;
}
.thisis-sidecart__progress {
  overflow: hidden;
  height: 10px;
  background: #e1ddd3;
  border-radius: 999px;
}
.thisis-sidecart__progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--thisis-gold), #edd16f);
  border-radius: inherit;
}
.thisis-sidecart__body {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 24px 14px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.thisis-sidecart__body--empty {
  overflow: visible;
  padding-top: 28px;
  padding-bottom: 22px;
}
.thisis-sidecart__items {
  display: grid;
  gap: 14px;
}
.thisis-sidecart-item,
.thisis-sidecart-deal {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
}
.thisis-sidecart-item__image,
.thisis-sidecart-deal__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f5f6f8;
  border-radius: 8px;
}
.thisis-sidecart-item__image img,
.thisis-sidecart-deal__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.thisis-sidecart-item h3,
.thisis-sidecart-deal h4 {
  margin: 0 0 5px;
  color: #050505;
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}
.thisis-sidecart-item span,
.thisis-sidecart-deal span {
  display: block;
  color: var(--thisis-muted);
  font-size: 13px;
  line-height: 1.35;
}
.thisis-sidecart-item strong {
  display: block;
  margin-top: 4px;
  color: var(--thisis-deep);
  font-size: 14px;
}
.thisis-sidecart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
}
.thisis-sidecart-item__qty span {
  min-width: 14px;
  color: var(--thisis-deep);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.thisis-sidecart-item__qty-btn {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  color: var(--thisis-deep);
  background: var(--thisis-cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}
.thisis-sidecart-item__qty-btn:hover,
.thisis-sidecart-item__qty-btn:focus-visible {
  color: #fff;
  background: var(--thisis-gold);
}
.thisis-sidecart-item__qty-btn:disabled {
  opacity: .5;
  cursor: default;
}
.thisis-sidecart-item__remove,
.thisis-sidecart-deal__add {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.thisis-sidecart-item__remove:disabled,
.thisis-sidecart-deal__add:disabled {
  opacity: .55;
  cursor: progress;
}
.thisis-sidecart__empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 330px;
  padding: 0;
}
.thisis-sidecart__empty h3 {
  color: var(--thisis-deep);
  font-size: 23px;
  line-height: 1.08;
}
.thisis-sidecart__empty p {
  color: var(--thisis-muted);
  font-size: 15px;
  line-height: 1.55;
}
.thisis-sidecart__empty .thisis-button {
  min-height: 46px;
  padding: 12px 24px;
}
.thisis-sidecart__deals {
  display: grid;
  gap: 10px;
  padding: 16px 24px;
  background: var(--thisis-cream);
  border-top: 1px solid var(--thisis-line);
}
.thisis-sidecart__deals-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.thisis-sidecart__deals-head h3 {
  color: var(--thisis-deep);
  font-size: 16px;
}
.thisis-sidecart__deals-head span {
  color: var(--thisis-muted);
  font-size: 12px;
}
.thisis-sidecart-deal {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  padding: 8px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(32,58,110,.08);
  border-radius: 10px;
}
.thisis-sidecart-deal h4 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 4px;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.thisis-sidecart-deal__label {
  display: inline-flex;
  margin-bottom: 4px;
  padding: 3px 7px;
  color: var(--thisis-deep);
  background: var(--thisis-gold);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.thisis-sidecart-deal__add {
  text-decoration: none;
}
.thisis-sidecart__footer {
  display: grid;
  gap: 10px;
  padding: 16px 24px 20px;
  background: #fff;
  border-top: 1px solid var(--thisis-line);
  box-shadow: 0 -10px 26px rgba(17,24,39,.06);
}
.thisis-sidecart__totals {
  display: grid;
  gap: 6px;
  margin-bottom: 2px;
}
.thisis-sidecart__totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--thisis-muted);
  font-size: 14px;
}
.thisis-sidecart__totals-row--discount {
  color: var(--thisis-gold);
  font-weight: 700;
}
.thisis-sidecart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--thisis-deep);
  font-size: 17px;
}
.thisis-sidecart__checkout,
.thisis-sidecart__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-sidecart__checkout {
  color: #fff;
  background: var(--thisis-gold);
}
.thisis-sidecart__cart {
  color: var(--thisis-deep);
  background: transparent;
  border: 2px solid var(--thisis-deep);
}

@media (max-width: 520px) {
  .thisis-sidecart {
    width: 100vw;
  }
  .thisis-sidecart__header,
  .thisis-sidecart__shipping,
  .thisis-sidecart__body,
  .thisis-sidecart__deals,
  .thisis-sidecart__footer {
    padding-right: 18px;
    padding-left: 18px;
  }
  .thisis-sidecart__header {
    padding-top: max(18px, env(safe-area-inset-top));
  }
  .thisis-sidecart__header h2 {
    font-size: 23px;
  }
  .thisis-sidecart-item {
    grid-template-columns: 68px 1fr auto;
  }
  .thisis-sidecart__empty h3 {
    font-size: 21px;
  }
  .thisis-sidecart-deal {
    grid-template-columns: 54px minmax(0, 1fr) 34px;
  }
}
.thisis-single-product__summary h1 {
  margin: 10px 0 14px;
  color: #050505;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  text-transform: uppercase;
}
.thisis-single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--thisis-deep);
}
.thisis-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  color: #171717;
  list-style-position: inside;
}
.thisis-single-product__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.thisis-single-product__meta-line span {
  padding: 6px 10px;
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 999px;
  font-size: 12px;
}
.thisis-single-product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
}
.thisis-single-product .price del {
  color: #8f94a0;
  font-size: .75em;
  font-weight: 400;
}
.thisis-single-product .price ins {
  text-decoration: none;
}
.thisis-single-product .woocommerce-product-details__short-description {
  margin: 0 0 18px;
  color: var(--thisis-muted);
  font-size: 16px;
}
.thisis-strength-switcher {
  margin: 28px 0 20px;
  padding: 18px;
  background: #f7f8fb;
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
}
.thisis-strength-switcher__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #4e5360;
  font-size: 14px;
  line-height: 1.25;
}
.thisis-strength-switcher__label strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #fff;
  background: var(--thisis-deep);
  border-radius: 999px;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.thisis-strength-switcher__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 8px;
}
.thisis-strength-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 12px 8px 10px;
  color: #141414;
  background: #fff;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  text-align: center;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background .16s ease;
}
.thisis-strength-option:hover,
.thisis-strength-option:focus-visible {
  border-color: var(--thisis-gold);
  box-shadow: 0 10px 22px rgba(17,24,39,.08);
  transform: translateY(-1px);
  outline: 0;
}
.thisis-strength-option strong {
  font-family: "Thisis Display", Bungee, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}
.thisis-strength-option span {
  color: #555;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
.thisis-strength-option.is-active {
  color: #fff;
  background: var(--thisis-deep);
  border-color: var(--thisis-gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.34), 0 14px 28px rgba(32,58,110,.22);
  transform: translateY(-1px);
}
.thisis-strength-option.is-active::before {
  content: "Gekozen";
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 4px 10px;
  color: var(--thisis-deep);
  background: var(--thisis-gold);
  border: 2px solid #fff;
  border-radius: 999px;
  font-family: Questrial, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}
.thisis-strength-option.is-active span {
  color: rgba(255,255,255,.82);
}
.thisis-strength-option.is-active::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--thisis-gold);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
}
.thisis-strength-option em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.thisis-single-product form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.thisis-live-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #252525;
  font-size: 14px;
}
.thisis-live-viewers span {
  width: 8px;
  height: 8px;
  background: #7acb83;
  border-radius: 50%;
}
.thisis-single-product form.variations_form.cart {
  display: grid;
}
.variations {
  width: 100%;
  margin-bottom: 14px;
}
.variations th,
.variations td {
  display: block;
  padding: 0 0 8px;
  text-align: left;
}
.variations select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--thisis-line);
  border-radius: 999px;
  background: #fff;
}
.quantity input {
  width: 76px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--thisis-line);
  border-radius: 999px;
  text-align: center;
}
.thisis-single-product__trust {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.thisis-product-accordions {
  margin-top: 24px;
  border-top: 1px solid var(--thisis-line);
}
.thisis-product-accordions details {
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-product-accordions summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
.thisis-product-accordions details > div {
  padding: 0 0 18px;
  color: var(--thisis-muted);
}
.thisis-product-sections {
  background: #fff;
}
.thisis-product-section {
  padding: 72px clamp(20px, 5vw, 72px);
}
.thisis-product-section--soft {
  background: #f4f5f8;
}
.thisis-product-section--cream {
  background: var(--thisis-cream);
}
.thisis-product-section--blue {
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-product-section--blue h2,
.thisis-product-section--blue .thisis-eyebrow,
.thisis-product-section--blue .thisis-richtext,
.thisis-product-section--blue p {
  color: #fff;
}
.thisis-product-section__heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.thisis-product-section__heading h2,
.thisis-product-section > h2 {
  color: var(--thisis-deep);
  font-size: clamp(34px, 4.8vw, 68px);
  text-align: center;
}
.thisis-product-section--blue .thisis-product-section__heading h2,
.thisis-product-section--blue > h2 {
  color: #fff;
}
.thisis-product-section--media_text {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.thisis-product-section--media_text.is-reverse .thisis-product-section__media {
  order: 2;
}
.thisis-product-section--media_text .thisis-product-section__heading {
  margin: 0;
  text-align: left;
}
.thisis-product-section--media_text .thisis-product-section__heading h2 {
  text-align: left;
}
.thisis-product-section__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(32,58,110,.1);
  border-radius: 10px;
}
.thisis-product-section__media img,
.thisis-product-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thisis-product-feature-grid,
.thisis-product-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 30px auto 0;
}
.thisis-product-feature-grid article,
.thisis-product-review-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 8px;
}
.thisis-product-feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}
.thisis-product-feature-grid h3,
.thisis-product-review-grid h3 {
  margin-bottom: 10px;
  color: var(--thisis-deep);
  font-size: 18px;
}
.thisis-product-feature-grid p,
.thisis-product-review-grid p {
  color: var(--thisis-muted);
}
.thisis-product-compare {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px;
  max-width: 920px;
  margin: 30px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 10px;
}
.thisis-product-compare > * {
  display: grid;
  align-items: center;
  min-height: 60px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-product-compare b,
.thisis-product-compare i {
  justify-content: center;
  font-size: 28px;
  font-style: normal;
}
.thisis-product-compare b { color: var(--thisis-gold); }
.thisis-product-compare i { color: #ba3a3a; }
.thisis-product-faq {
  max-width: 940px;
  margin: 30px auto 0;
}
.thisis-product-faq details {
  border-top: 1px solid var(--thisis-line);
}
.thisis-product-faq details:last-child {
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-product-faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  text-transform: uppercase;
}
.thisis-product-faq p {
  padding-bottom: 20px;
  color: var(--thisis-muted);
}
.thisis-single-product__trust div {
  padding: 0 0 0 28px;
  color: #171717;
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.45;
}
.thisis-single-product__trust strong {
  color: #171717;
}
.thisis-product-tabs {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 42px;
}
.related.products {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 72px) 64px;
}
.related.products > h2 {
  margin-bottom: 24px;
  color: var(--thisis-deep);
  font-size: clamp(26px, 3vw, 38px);
}
.related.products .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}
.woocommerce-tabs ul.tabs a {
  display: block;
  padding: 12px 18px;
  color: var(--thisis-deep);
  background: var(--thisis-cream);
  border-radius: 999px;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 12px;
}
.thisis-cart-page h1,
.thisis-checkout-page h1 {
  margin-bottom: 28px;
  color: var(--thisis-deep);
  font-size: clamp(34px, 5vw, 64px);
}
.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
  overflow: hidden;
}
.shop_table th,
.shop_table td {
  padding: 16px;
  border-bottom: 1px solid var(--thisis-line);
  text-align: left;
}
.shop_table img {
  width: 82px;
}
.cart-collaterals {
  max-width: 480px;
  margin: 34px 0 0 auto;
}
.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  width: 100%;
  min-width: 0;
  align-items: start;
}
.woocommerce-checkout::after,
.thisis-checkout-page::after,
.woocommerce::after,
.col2-set::after {
  content: "";
  display: table;
  clear: both;
}
.woocommerce-checkout .col2-set,
.woocommerce-checkout .thisis-order-review {
  float: none;
  width: auto;
  min-width: 0;
}
.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  float: none;
  width: 100%;
  max-width: none;
}
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--thisis-line);
  border-radius: 6px;
}
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  display: inline-grid;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  padding: 0;
  vertical-align: middle;
  accent-color: var(--thisis-deep);
}
.thisis-order-review {
  padding: 24px;
  background: var(--thisis-cream);
  border-radius: 12px;
  min-width: 0;
}
.thisis-notice {
  max-width: 1180px;
  margin: 18px auto;
  padding: 16px 20px;
  border-radius: 8px;
  list-style: none;
}
.thisis-notice--success {
  color: #0d4a20;
  background: #e7f6eb;
}
.thisis-notice--error {
  color: #7c1c1c;
  background: #fde9e9;
}

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-order-pay,
body.woocommerce-order-received {
  overflow-x: hidden;
}
body.woocommerce-cart .thisis-announcement,
body.woocommerce-cart .thisis-header,
body.woocommerce-cart .site-main,
body.woocommerce-cart .thisis-footer,
body.woocommerce-checkout .thisis-announcement,
body.woocommerce-checkout .thisis-header,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .thisis-footer,
body.woocommerce-order-pay .thisis-announcement,
body.woocommerce-order-pay .thisis-header,
body.woocommerce-order-pay .site-main,
body.woocommerce-order-pay .thisis-footer,
body.woocommerce-order-received .thisis-announcement,
body.woocommerce-order-received .thisis-header,
body.woocommerce-order-received .site-main,
body.woocommerce-order-received .thisis-footer {
  float: none;
  clear: both;
  width: 100%;
  max-width: 100vw;
}
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-order-pay .site-main,
body.woocommerce-order-received .site-main {
  display: block;
  min-width: 0;
  overflow-x: hidden;
}
body.woocommerce-order-pay .woocommerce,
body.woocommerce-order-received .woocommerce,
body.woocommerce-checkout .woocommerce {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 72px);
}
body.woocommerce-order-pay .woocommerce h1,
body.woocommerce-order-received .woocommerce h1,
body.woocommerce-order-pay .woocommerce h2,
body.woocommerce-order-received .woocommerce h2 {
  margin-bottom: 24px;
  color: var(--thisis-deep);
  font-size: clamp(30px, 4.5vw, 56px);
}
body.woocommerce-order-pay .shop_table,
body.woocommerce-order-received .shop_table {
  table-layout: fixed;
}
body.woocommerce-order-pay #order_review,
body.woocommerce-order-pay .woocommerce-order,
body.woocommerce-order-received .woocommerce-order {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
body.woocommerce-order-pay #payment,
body.woocommerce-checkout #payment {
  margin-top: 24px;
  padding: 24px;
  background: var(--thisis-cream);
  border-radius: 12px;
}
body.woocommerce-order-pay #payment ul,
body.woocommerce-checkout #payment ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-order-pay #payment .button,
body.woocommerce-checkout #payment .button {
  margin-top: 18px;
}

body.woocommerce-checkout .thisis-page,
body.woocommerce-order-pay .thisis-page,
body.woocommerce-order-received .thisis-page {
  padding: clamp(46px, 5vw, 78px) clamp(20px, 5vw, 72px) 82px;
  background: #fff;
}
body.woocommerce-checkout .thisis-page__inner,
body.woocommerce-order-pay .thisis-page__inner,
body.woocommerce-order-received .thisis-page__inner {
  max-width: 1320px;
}
body.woocommerce-checkout .thisis-page h1,
body.woocommerce-order-pay .thisis-page h1,
body.woocommerce-order-received .thisis-page h1 {
  margin-bottom: clamp(28px, 4vw, 48px);
  text-align: center;
}
body.woocommerce-checkout .thisis-checkout-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 54px);
  background: #f4f5f8;
  border-radius: 0;
}
body.woocommerce-checkout .thisis-checkout-page > h1 {
  display: none;
}
body.woocommerce-checkout .thisis-checkout-coupon {
  margin: 0 0 22px;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid var(--thisis-line);
  border-radius: 10px;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon-toggle {
  margin: 0 0 10px;
  font-size: 14px;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon > p:not(.form-row),
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon .clear {
  display: none;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon .form-row {
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon .form-row input {
  width: 100%;
}
body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon .button {
  min-height: 46px;
  padding: 0 20px;
}
body.woocommerce-checkout .woocommerce-checkout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(28px, 4vw, 54px);
}
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout #order_review_heading {
  margin-bottom: 12px;
  color: var(--thisis-deep);
  font-size: clamp(18px, 2vw, 24px);
}
body.woocommerce-checkout .form-row {
  margin: 0 0 12px;
}
body.woocommerce-checkout label {
  display: block;
  margin-bottom: 4px;
  color: #171717;
  line-height: 1.25;
}
body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout .woocommerce-form__label,
body.woocommerce-checkout #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
}
body.woocommerce-checkout #ship-to-different-address {
  margin: 18px 0 12px;
  color: var(--thisis-deep);
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.16;
}
body.woocommerce-checkout #ship-to-different-address label span {
  display: inline;
}
body.woocommerce-checkout .shipping_address {
  margin-top: 16px;
}
body.woocommerce-checkout .thisis-order-review {
  position: sticky;
  top: 136px;
  padding: 28px;
  background: var(--thisis-cream);
  border-radius: 12px;
}
body.woocommerce-checkout .thisis-order-review .shop_table {
  border: 0;
  border-radius: 10px;
}
body.woocommerce-checkout .thisis-order-review .shop_table th,
body.woocommerce-checkout .thisis-order-review .shop_table td {
  padding: 14px 16px;
}
body.woocommerce-checkout #payment {
  background: transparent;
  padding: 0;
}
body.woocommerce-checkout #payment img,
body.woocommerce-order-pay #payment img {
  display: inline-block;
  width: auto;
  max-width: 164px;
  max-height: 48px;
  object-fit: contain;
  vertical-align: middle;
}
body.woocommerce-checkout #payment .payment_method_mollie_wc_gateway_ideal img,
body.woocommerce-order-pay #payment .payment_method_mollie_wc_gateway_ideal img {
  max-width: 190px;
  max-height: 56px;
}
body.woocommerce-checkout #payment svg,
body.woocommerce-order-pay #payment svg {
  max-width: 96px;
  max-height: 56px;
}
body.woocommerce-checkout #payment .payment_box,
body.woocommerce-order-pay #payment .payment_box {
  margin: 10px 0 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.72);
  border-radius: 8px;
}
.thisis-bogo-modal {
  position: fixed;
  inset: 0;
  z-index: 100010;
  display: grid;
  place-items: center;
  padding: 22px;
}
.thisis-bogo-modal.is-hidden {
  display: none;
}
.thisis-bogo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,18,38,.58);
}
.thisis-bogo-modal__dialog {
  position: relative;
  width: min(100%, 470px);
  padding: 30px;
  color: var(--thisis-deep);
  background: #fff;
  border: 3px solid var(--thisis-gold);
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(10,18,38,.24);
}
.thisis-bogo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}
.thisis-bogo-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--thisis-deep);
  background: var(--thisis-gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.thisis-bogo-modal h2 {
  margin: 0 0 12px;
  color: var(--thisis-deep);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}
.thisis-bogo-modal p {
  margin: 0 0 22px;
  color: #404654;
  font-size: 16px;
  line-height: 1.55;
}
.thisis-bogo-modal__actions {
  display: grid;
  gap: 10px;
}
.thisis-bogo-modal__add,
.thisis-bogo-modal__skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-bogo-modal__add {
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
}
.thisis-bogo-modal__skip {
  color: var(--thisis-deep);
  background: #fff;
  border: 2px solid var(--thisis-deep);
}
@media (max-width: 900px) {
  .thisis-single-product,
  .thisis-product-section--media_text,
  .woocommerce-checkout {
    grid-template-columns: 1fr;
  }
  body.woocommerce-checkout .woocommerce-checkout {
    grid-template-columns: 1fr;
  }
  body.woocommerce-checkout .thisis-order-review {
    position: static;
  }
  .thisis-single-product__gallery {
    position: static;
  }
  .related.products .products {
    grid-template-columns: 1fr 1fr;
  }
  .thisis-product-feature-grid,
  .thisis-product-review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .thisis-product-section--media_text.is-reverse .thisis-product-section__media {
    order: 0;
  }
}
@media (max-width: 640px) {
  .thisis-shop-toolbar {
    display: grid;
  }
  .shop_table thead {
    display: none;
  }
  .shop_table tr,
  .shop_table td {
    display: block;
    width: 100%;
  }
  .thisis-single-product form.cart {
    display: grid;
  }
  .thisis-strength-switcher {
    padding: 14px;
  }
  .thisis-strength-switcher__label {
    display: grid;
    justify-items: start;
  }
  .thisis-strength-switcher__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .thisis-strength-option {
    min-height: 78px;
  }
  body.woocommerce-order-pay .woocommerce,
  body.woocommerce-order-received .woocommerce,
  body.woocommerce-checkout .woocommerce {
    padding: 38px 18px;
  }
  body.woocommerce-order-pay .shop_table,
  body.woocommerce-order-received .shop_table {
    table-layout: auto;
  }
  body.woocommerce-order-pay .shop_table thead,
  body.woocommerce-order-received .shop_table thead {
    display: none;
  }
  body.woocommerce-order-pay .shop_table tr,
  body.woocommerce-order-pay .shop_table td,
  body.woocommerce-order-received .shop_table tr,
  body.woocommerce-order-received .shop_table td {
    display: block;
    width: 100%;
  }
  body.woocommerce-order-pay #payment,
  body.woocommerce-checkout #payment {
    padding: 18px;
  }
  body.woocommerce-checkout .thisis-page,
  body.woocommerce-order-pay .thisis-page,
  body.woocommerce-order-received .thisis-page {
    padding: 34px 16px 56px;
  }
  body.woocommerce-checkout .thisis-checkout-page {
    padding: 24px 16px;
  }
  body.woocommerce-checkout .thisis-order-review {
    padding: 18px;
  }
  .related.products .products {
    grid-template-columns: 1fr;
  }
  .thisis-product-section {
    padding: 52px 20px;
  }
  .thisis-product-feature-grid,
  .thisis-product-review-grid {
    grid-template-columns: 1fr;
  }
  .thisis-product-compare {
    grid-template-columns: minmax(150px, 1fr) 86px 86px;
    font-size: 13px;
  }
  .thisis-product-section__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .thisis-shop-hero {
    padding: 28px 18px 18px;
  }
  .thisis-shop-hero__rating {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }
  .thisis-shop-hero h1 {
    max-width: 330px;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }
  .thisis-shop-hero__description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .thisis-shop-layout,
  .thisis-cart-page,
  .thisis-checkout-page {
    padding: 18px 16px 36px;
  }
  .thisis-shop-toolbar {
    display: grid;
    gap: 10px;
    margin: 0 auto 16px;
    font-size: 14px;
  }
  .woocommerce-result-count,
  .woocommerce-ordering {
    text-align: left;
  }
  .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--thisis-line);
    border-radius: 8px;
    background: #fff;
  }
  .thisis-product-grid,
  .related.products .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .thisis-product-card__image img {
    aspect-ratio: 1 / .82;
    padding: 8px;
  }
  .thisis-product-card__badge {
    top: 9px;
    padding: 5px 8px;
    font-size: 11px;
  }
  .thisis-product-card__body {
    padding: 0 10px 2px;
  }
  .thisis-product-card__stars {
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
  }
  .thisis-product-card h3 {
    min-height: 0;
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }
  .thisis-product-card__subtitle {
    display: none;
  }
  .thisis-product-card__price,
  .thisis-product-card__price .amount,
  .thisis-product-card__price .woocommerce-Price-amount,
  .thisis-sidecart-item strong,
  .thisis-sidecart-deal span,
  .thisis-sidecart__total strong {
    white-space: nowrap;
  }
  .thisis-product-card .button {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 10px;
  }
  .thisis-sidecart {
    height: 100dvh;
  }
  .thisis-sidecart__inner {
    grid-template-rows: auto auto minmax(112px, 1fr) auto auto;
  }
  .thisis-sidecart__header {
    padding-top: max(14px, env(safe-area-inset-top));
    padding-bottom: 12px;
  }
  .thisis-sidecart__header h2 {
    font-size: 20px;
  }
  .thisis-sidecart__eyebrow {
    margin-bottom: 2px;
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .thisis-sidecart__shipping {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .thisis-sidecart__shipping-text {
    margin-bottom: 7px;
    font-size: 13px;
  }
  .thisis-sidecart__progress {
    height: 8px;
  }
  .thisis-sidecart__body {
    padding-top: 12px;
  }
  .thisis-sidecart-item {
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    gap: 8px;
    align-items: start;
  }
  .thisis-sidecart-item__image,
  .thisis-sidecart-deal__image {
    border-radius: 7px;
  }
  .thisis-sidecart-item__remove,
  .thisis-sidecart-deal__add {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
  .thisis-sidecart-item h3,
  .thisis-sidecart-deal h4 {
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.16;
  }
  .thisis-sidecart-item span,
  .thisis-sidecart-deal span {
    font-size: 12px;
  }
  .thisis-sidecart-item strong {
    margin-top: 2px;
    font-size: 12px;
  }
  .thisis-sidecart__deals {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .thisis-sidecart__deals-head h3 {
    font-size: 14px;
  }
  .thisis-sidecart-deal {
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    padding: 6px;
    gap: 8px;
  }
  .thisis-sidecart-deal:nth-of-type(n+2) {
    display: none;
  }
  .thisis-sidecart-deal__label {
    font-size: 9px;
  }
  .thisis-sidecart__footer {
    gap: 8px;
    padding-top: 12px;
  }
  .thisis-sidecart__footer {
    padding-bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
  }
  .thisis-sidecart__total {
    font-size: 15px;
  }
  .thisis-sidecart__checkout,
  .thisis-sidecart__cart {
    min-height: 42px;
    font-size: 10px;
  }
  /* Euroteken-spacing wordt sitewide geregeld bovenaan dit bestand
     (.woocommerce-Price-amount), geen aparte override meer nodig hier. */
  .related.products {
    padding: 0 16px 38px;
  }
  .related.products > h2 {
    margin-bottom: 14px;
    font-size: 26px;
  }
  body.woocommerce-checkout .thisis-page,
  body.woocommerce-order-pay .thisis-page,
  body.woocommerce-order-received .thisis-page {
    padding: 24px 14px 44px;
  }
  body.woocommerce-checkout .thisis-page h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 11vw, 48px);
  }
  body.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
  }
  body.woocommerce-checkout .thisis-checkout-coupon {
    margin-bottom: 16px;
    padding: 14px;
  }
  body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon {
    grid-template-columns: 1fr;
  }
  body.woocommerce-checkout .thisis-checkout-coupon .woocommerce-form-coupon .button {
    width: 100%;
  }
  body.woocommerce-checkout .thisis-checkout-page {
    padding: 18px 14px;
    background: #f6f7fa;
  }
  body.woocommerce-checkout .woocommerce-checkout {
    gap: 18px;
  }
  body.woocommerce-checkout .woocommerce-billing-fields h3,
  body.woocommerce-checkout .woocommerce-shipping-fields h3,
  body.woocommerce-checkout #order_review_heading {
    font-size: 20px;
  }
  body.woocommerce-checkout .thisis-order-review {
    padding: 16px;
    border-radius: 10px;
  }
  body.woocommerce-checkout .thisis-order-review .shop_table {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
  }
  body.woocommerce-checkout .thisis-order-review .shop_table thead {
    display: table-header-group;
  }
  body.woocommerce-checkout .thisis-order-review .shop_table tr {
    display: table-row;
  }
  body.woocommerce-checkout .thisis-order-review .shop_table th,
  body.woocommerce-checkout .thisis-order-review .shop_table td {
    display: table-cell;
    width: auto;
    padding: 12px 10px;
    vertical-align: top;
    line-height: 1.35;
  }
  body.woocommerce-checkout .thisis-order-review .shop_table td:last-child,
  body.woocommerce-checkout .thisis-order-review .shop_table th:last-child {
    text-align: right;
  }
  body.woocommerce-checkout ul#shipping_method,
  body.woocommerce-checkout .woocommerce-shipping-methods {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body.woocommerce-checkout ul#shipping_method li,
  body.woocommerce-checkout .woocommerce-shipping-methods li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body.woocommerce-checkout ul#shipping_method li::marker,
  body.woocommerce-checkout .woocommerce-shipping-methods li::marker {
    content: "";
  }
  body.woocommerce-checkout #ship-to-different-address {
    margin: 14px 0 10px;
    font-size: 20px;
  }
  body.woocommerce-checkout #ship-to-different-address label {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
  }
}

@media (max-width: 390px) {
  .thisis-product-card h3 {
    font-size: 13px;
  }
  .related.products .products,
  .thisis-product-grid {
    gap: 12px;
  }
}

.thisis-product-card {
  height: 100%;
}
.thisis-product-card__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.thisis-product-card__price {
  margin-top: auto;
}
.thisis-product-card__actions {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .thisis-single-product {
    padding-bottom: 26px;
  }
  .thisis-single-product__gallery {
    position: relative;
    overflow: visible;
    padding-top: 18px;
    margin-bottom: 18px;
  }
  .thisis-single-product__badge {
    top: 12px;
    left: 12px;
    z-index: 6;
    padding: 7px 10px;
    color: #fff;
    background: #ef0000;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 8px 22px rgba(17,24,39,.12);
    font-size: 12px;
    line-height: 1;
  }
  .thisis-single-product .woocommerce-product-details__short-description {
    margin-bottom: 14px;
  }
  .thisis-single-product__summary {
    clear: both;
    padding-top: 0;
  }
  .thisis-single-product__gallery .woocommerce-product-gallery__image {
    aspect-ratio: 1 / .92;
  }
  .thisis-single-product__gallery .woocommerce-product-gallery__image img,
  .thisis-single-product__external-image img {
    padding: 16px;
  }
  .thisis-single-product__gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 18px;
  }
  .thisis-single-product__gallery .flex-control-thumbs li {
    width: auto !important;
    height: auto;
    aspect-ratio: 1;
  }
  .thisis-strength-switcher {
    margin: 18px 0 14px;
  }
  .thisis-single-product form.cart:not(.variations_form) {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .thisis-single-product form.cart .quantity {
    width: 76px;
  }
  .thisis-single-product form.cart .quantity input {
    width: 76px;
    min-height: 46px;
  }
  .thisis-single-product form.cart .single_add_to_cart_button {
    width: 100%;
    min-height: 46px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 10px;
    text-align: center;
  }
  .thisis-product-card__actions {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .thisis-product-card .button {
    justify-content: center;
    text-align: center;
    line-height: 1.15;
  }
  .thisis-product-tabs {
    padding-top: 18px;
  }
  .woocommerce-tabs ul.tabs {
    gap: 8px;
    margin-bottom: 18px;
  }
  .woocommerce-tabs ul.tabs a {
    padding: 11px 14px;
    font-size: 10px;
  }
  .woocommerce-Tabs-panel h2,
  .related.products > h2 {
    line-height: 1.08;
  }
  .thisis-sidecart {
    background: #fff;
    contain: layout paint;
  }
  .thisis-sidecart-overlay {
    background: rgba(5, 9, 22, .66);
  }
  /* Let op: geen losse .woocommerce-Price-amount override meer hier — dit
     overschreef eerder (met inline-block) de sitewide euroteken-fix
     bovenaan dit bestand voor sidecart/product-card op mobiel. */
}
