/* ============================================
   WOOPREMIUM — Single Product Page
   Version: 1.0.0
   ============================================ */

/* ---- CSS Custom Properties (dealer-configurable) ---- */
:root {
  --wp-bg: #ffffff;
  --wp-surface: #f5f3ef;
  --wp-surface-warm: #edeae4;
  --wp-text: #1a1a1a;
  --wp-text-2: #5c5650;
  --wp-text-3: #706962;
  --wp-gold: #b8960c;
  --wp-gold-text: #8e7409;
  --wp-gold-light: #f5f0e0;
  --wp-border: #ddd8d0;
  --wp-border-input: #9e9186;
  --wp-border-light: #eae6df;
  --wp-cta: #1a1a1a;
  --wp-cta-hover: #333333;
  --wp-cta-disabled: #adadad;
  --wp-success: #548245;
  --wp-white: #ffffff;
  --wp-dark: #1a1a1a;
  --wp-dark-surface: #222120;
  --wp-dark-border: #3a3835;
  --wp-dark-text: #e8e4de;
  --wp-dark-text-2: #a09890;
  /* --wp-serif and --wp-sans inherited from style.css */
  --wp-container: 1400px;
  --wp-gutter: 40px;
  --wp-r: 8px;
  --wp-r-sm: 6px;
  --wp-r-lg: 12px;
  --wp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset for single product page ---- */
.single-product .content-area {
  max-width: 100%;
  padding: 0;
}

.single-product .site-main {
  max-width: 100%;
  padding: 0;
}

/* ---- Utility ---- */
.wp-container {
  max-width: var(--wp-container);
  margin: 0 auto;
  padding: 0 var(--wp-gutter);
}

/* ---- Focus states (WCAG 2.1 AA) ---- */
.wp-single-product :focus-visible {
  outline: 2px solid var(--wp-gold);
  outline-offset: 2px;
}
/* Remove outline for mouse users, keep for keyboard */
.wp-single-product :focus:not(:focus-visible) {
  outline: none;
}
/* Specific focus states for interactive elements */
.wp-single-product .wp-gallery-thumb:focus-visible {
  border-color: var(--wp-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3);
}
.wp-single-product .wp-cta-stack button:focus-visible,
.wp-single-product .wp-cta-stack a:focus-visible,
.wp-single-product .wp-sticky-bar__cta:focus-visible,
.wp-single-product .wp-mobile-sticky__cta:focus-visible {
  outline: 2px solid var(--wp-gold);
  outline-offset: 2px;
}
/* Dark section focus — gold outline is visible on dark */
.wp-single-product .wp-tab-btn:focus-visible,
.wp-single-product .wp-faq__trigger:focus-visible {
  outline: 2px solid var(--wp-gold);
  outline-offset: 2px;
}
.wp-single-product .wp-related-card:focus-visible {
  outline: 2px solid var(--wp-gold);
  outline-offset: 4px;
}

/* ---- Reduced motion (WCAG 2.3.3) ---- */
@media (prefers-reduced-motion: reduce) {
  .wp-fade-in,
  .wp-slide-left,
  .wp-slide-right,
  .wp-stagger-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .wp-single-product .wp-gallery-main img,
  .wp-single-product .wp-related-card__image img,
  .wp-single-product .wp-related-card {
    transition: none;
  }
  .wp-single-product .wp-accordion__body,
  .wp-single-product .wp-faq__answer,
  .wp-single-product .wp-ask-question__form {
    transition: none;
  }
  .wp-single-product .wp-accordion__chevron,
  .wp-single-product .wp-faq__trigger svg {
    transition: none;
  }
  .wp-single-product .wp-sticky-bar {
    transition: none;
  }
}

/* ---- Animations ---- */
.wp-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--wp-ease), transform 0.6s var(--wp-ease);
}
.wp-fade-in.visible { opacity: 1; transform: translateY(0); }

.wp-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--wp-ease), transform 0.7s var(--wp-ease);
}
.wp-slide-left.visible { opacity: 1; transform: translateX(0); }

.wp-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--wp-ease), transform 0.7s var(--wp-ease);
}
.wp-slide-right.visible { opacity: 1; transform: translateX(0); }

.wp-stagger-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--wp-ease), transform 0.5s var(--wp-ease);
}
.wp-stagger-in.visible { opacity: 1; transform: translateY(0); }


/* ============================================
   BREADCRUMBS
   ============================================ */
.wp-breadcrumbs {
  padding: 16px 0;
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  background: var(--wp-surface);
  border-bottom: 1px solid var(--wp-border-light);
}
.wp-breadcrumbs a {
  color: var(--wp-text-2);
  transition: color 0.2s;
  text-decoration: none;
}
.wp-breadcrumbs a:hover { color: var(--wp-gold-text); }
.wp-breadcrumbs .breadcrumb-sep {
  margin: 0 6px;
  opacity: 0.35;
}


/* ============================================
   STICKY BAR
   ============================================ */
.wp-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--wp-white);
  border-bottom: 1px solid var(--wp-border);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 0.35s var(--wp-ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wp-sticky-bar.visible { transform: translateY(0); }
.wp-sticky-bar .wp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wp-sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.wp-sticky-bar__thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--wp-r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.wp-sticky-bar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-sticky-bar__name {
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wp-sticky-bar__price {
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.wp-sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--wp-cta);
  color: var(--wp-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--wp-r-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.wp-sticky-bar__cta:hover { background: var(--wp-cta-hover); color: var(--wp-white); }
.wp-sticky-bar__cta svg { width: 16px; height: 16px; }


/* ============================================
   PRODUCT HERO
   ============================================ */
.wp-product-hero {
  padding: 32px 0 0;
}
.wp-product-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}

/* ---- Gallery ---- */
.wp-gallery { position: relative; }

.wp-gallery-main {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--wp-surface);
  border-radius: var(--wp-r-lg);
  max-height: calc(100vh - 180px);
  aspect-ratio: 4 / 5;
}
.wp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--wp-ease);
}
.wp-gallery-main:hover img { transform: scale(1.03); }

.wp-gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--wp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}
.wp-gallery-zoom:hover { transform: scale(1.05); }
.wp-gallery-zoom svg { width: 18px; height: 18px; color: var(--wp-text); }

.wp-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.wp-gallery-thumbs::-webkit-scrollbar { display: none; }

.wp-gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--wp-r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  flex-shrink: 0;
}
.wp-gallery-thumb.active { border-color: var(--wp-gold); }
.wp-gallery-thumb:hover { border-color: var(--wp-text-3); }
.wp-gallery-thumb.active:hover { border-color: var(--wp-gold); }
.wp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Product Summary ---- */
.wp-product-summary {
  position: sticky;
  top: 32px;
}

.wp-product-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp-gold-text);
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--wp-gold);
  border-radius: var(--wp-r-sm);
  text-decoration: none;
  transition: background 0.2s;
}
.wp-product-brand:hover {
  background: var(--wp-gold-light);
  color: var(--wp-gold-text);
}

.wp-product-title {
  font-family: var(--wp-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.wp-product-sku {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  margin-bottom: 24px;
}

.wp-product-price {
  font-family: var(--wp-serif);
  font-size: 1.625rem;
  margin-bottom: 4px;
}
.wp-product-price .woocommerce-Price-amount { font-size: inherit; }
.wp-product-price-unit {
  font-family: var(--wp-sans);
  font-size: 0.875rem;
  color: var(--wp-text-2);
}

.wp-product-price-note {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  margin-bottom: 4px;
}
.wp-product-price-pack {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  margin-bottom: 24px;
}
.wp-product-price-pack span {
  color: var(--wp-text-2);
  font-weight: 500;
}

/* CTA Stack */
.wp-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.wp-cta-stack .button,
.wp-cta-stack .single_add_to_cart_button,
.wp-cta-stack > a.button {
  width: 100%;
  padding: 16px 32px;
  background: var(--wp-cta);
  color: var(--wp-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.wp-cta-stack .button:hover,
.wp-cta-stack .single_add_to_cart_button:hover {
  background: var(--wp-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.wp-cta-secondary {
  width: 100%;
  padding: 13px 32px;
  background: transparent;
  color: var(--wp-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  border: 1.5px solid var(--wp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.wp-cta-secondary:hover {
  border-color: var(--wp-text);
  background: var(--wp-surface);
  color: var(--wp-text);
}

/* Sample button override */
.wp-cta-stack .staaltje-button,
.wp-cta-stack .woopremium-sample-variable {
  width: 100%;
  padding: 13px 32px;
  background: transparent;
  color: var(--wp-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  border: 1.5px solid var(--wp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}
.wp-cta-stack .staaltje-button:hover,
.wp-cta-stack .woopremium-sample-variable:hover {
  border-color: var(--wp-text);
  background: var(--wp-surface);
}

/* CTA Links */
.wp-cta-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--wp-text-2);
  transition: color 0.2s;
  text-decoration: none;
}
.wp-cta-link:hover { color: var(--wp-gold-text); }
.wp-cta-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* USPs / Microcopy */
.wp-usps {
  display: flex;
  flex-direction: column;
  background: var(--wp-surface);
  border-radius: var(--wp-r);
  padding: 4px 16px;
  margin-bottom: 24px;
}
.wp-usp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
}
.wp-usp + .wp-usp { border-top: 1px solid var(--wp-border-light); }
.wp-usp svg {
  width: 20px;
  height: 20px;
  color: var(--wp-gold);
  flex-shrink: 0;
}

/* Accordions */
.wp-accordions { border-top: 1px solid var(--wp-border); }
.wp-accordion { border-bottom: 1px solid var(--wp-border-light); }
.wp-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.875rem;
  color: var(--wp-text-2);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  gap: 8px;
  transition: color 0.2s;
}
.wp-accordion__trigger:hover { color: var(--wp-text); }
.wp-accordion__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-accordion__label svg { width: 16px; height: 16px; color: var(--wp-text-3); flex-shrink: 0; }
.wp-accordion__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--wp-ease);
  flex-shrink: 0;
}
.wp-accordion.open .wp-accordion__chevron { transform: rotate(180deg); }
.wp-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--wp-ease);
}
.wp-accordion.open .wp-accordion__body { max-height: 300px; }
.wp-accordion__inner {
  padding: 0 0 16px 24px;
  font-size: 0.875rem;
  color: var(--wp-text-2);
  line-height: 1.7;
}

/* Accordion link variant (navigates instead of expanding) */
.wp-accordion--link .wp-accordion__trigger--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 0.875rem;
  color: var(--wp-text-2);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.wp-accordion--link .wp-accordion__trigger--link:hover {
  color: var(--wp-gold-text);
}
.wp-accordion__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s var(--wp-ease);
}
.wp-accordion--link:hover .wp-accordion__arrow {
  transform: translateX(3px);
}
/* Override for product page specificity */
.wp-single-product .wp-accordion--link .wp-accordion__trigger--link {
  color: var(--wp-text-2);
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--wp-sans);
  padding: 14px 0;
  text-decoration: none;
  background: none;
  border: none;
  height: auto;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.wp-single-product .wp-accordion--link .wp-accordion__trigger--link:hover {
  color: var(--wp-gold-text);
  background: none;
}
.wp-single-product .wp-accordion--link .wp-accordion__label svg {
  color: var(--wp-text-3);
}

/* Ask a question */
.wp-ask-question {
  margin-top: 24px;
  border-top: 1px solid var(--wp-border);
  padding-top: 20px;
}
.wp-ask-question__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp-text-2);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}
.wp-ask-question__toggle:hover { color: var(--wp-text); }
.wp-ask-question__toggle svg { width: 18px; height: 18px; color: var(--wp-gold); flex-shrink: 0; }
.wp-ask-question__form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--wp-ease);
}
.wp-ask-question.open .wp-ask-question__form { max-height: 400px; }
.wp-ask-question__inner {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp-ask-question__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--wp-border-input);
  border-radius: var(--wp-r-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--wp-text);
  background: var(--wp-white);
  transition: border-color 0.2s;
  outline: none;
}
.wp-ask-question__input:focus { border-color: var(--wp-gold); outline: none; }
.wp-ask-question__input:focus-visible { outline: 2px solid var(--wp-gold); outline-offset: -2px; }
.wp-ask-question__input::placeholder { color: var(--wp-text-3); }
textarea.wp-ask-question__input { resize: vertical; min-height: 80px; }
button.wp-ask-question__submit,
.wp-ask-question__submit,
.wp-single-product .wp-ask-question__submit,
.wp-single-product button.wp-ask-question__submit,
.wp-single-product .wp-ask-question__inner button[type="submit"],
.wp-ask-question__inner button[type="submit"] {
  align-self: flex-start;
  padding: 10px 24px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--wp-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--wp-r-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  height: auto;
  line-height: 1.4;
  width: auto;
  display: inline-block;
  box-shadow: none;
  margin: 0;
}
button.wp-ask-question__submit:hover,
.wp-single-product .wp-ask-question__submit:hover,
.wp-single-product .wp-ask-question__inner button[type="submit"]:hover {
  background: #333333;
  color: #ffffff;
}
.wp-ask-question__note { font-size: 0.75rem; color: var(--wp-text-3); }

/* Gravity Forms styling inside ask-a-question toggle */
.wp-ask-question__inner .gform_wrapper {
  margin: 0;
  padding: 0;
}
.wp-ask-question__inner .gform_wrapper .gform_body .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp-ask-question__inner .gform_wrapper .gfield {
  margin: 0;
  padding: 0;
}
.wp-ask-question__inner .gform_wrapper .gfield_label {
  display: none;
}
.wp-ask-question__inner .gform_wrapper input[type="email"],
.wp-ask-question__inner .gform_wrapper input[type="text"],
.wp-ask-question__inner .gform_wrapper textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--wp-border-input);
  border-radius: var(--wp-r-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--wp-text);
  background: var(--wp-white);
  transition: border-color 0.2s;
  outline: none;
}
.wp-ask-question__inner .gform_wrapper input:focus,
.wp-ask-question__inner .gform_wrapper textarea:focus {
  border-color: var(--wp-gold);
}
.wp-ask-question__inner .gform_wrapper input:focus-visible,
.wp-ask-question__inner .gform_wrapper textarea:focus-visible {
  outline: 2px solid var(--wp-gold);
  outline-offset: -2px;
}
.wp-ask-question__inner .gform_wrapper textarea {
  resize: vertical;
  min-height: 80px;
}
.wp-ask-question__inner .gform_wrapper .gform_footer,
.wp-ask-question__inner .gform_wrapper .gform_page_footer {
  margin: 0;
  padding: 0;
}
.wp-ask-question__inner .gform_wrapper input[type="submit"],
.wp-ask-question__inner .gform_wrapper button[type="submit"] {
  align-self: flex-start;
  padding: 10px 24px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--wp-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--wp-r-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.wp-ask-question__inner .gform_wrapper input[type="submit"]:hover,
.wp-ask-question__inner .gform_wrapper button[type="submit"]:hover {
  background: #333333;
  color: #ffffff;
}
.wp-ask-question__inner .gform_wrapper .gform_confirmation_message {
  font-size: 0.875rem;
  color: var(--wp-text-2);
  padding: 8px 0;
}

/* ============================================
   50/50 SPLIT SECTION (description)
   ============================================ */
/* Split uses flex-wrap so it auto-stacks on narrow viewports AND in device simulators */
.wp-split {
  display: flex;
  flex-wrap: wrap;
  min-height: 380px;
}
.wp-split__image {
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  min-width: 300px;
}
.wp-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.wp-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--wp-dark);
  flex: 1 1 300px;
  min-width: 300px;
}
.wp-split__content h2 {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--wp-dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-split__content h2 svg { width: 22px; height: 22px; color: var(--wp-gold); flex-shrink: 0; }
.wp-split__content p,
.wp-split__content .woocommerce-product-details__short-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--wp-dark-text-2);
}


/* ============================================
   TABS (dark)
   ============================================ */
.wp-product-tabs {
  background: var(--wp-dark);
  padding: 0 0 80px;
  color: var(--wp-dark-text);
}
.wp-tabs-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid var(--wp-dark-border);
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-tabs-nav::-webkit-scrollbar { display: none; }
.wp-tab-btn,
button.wp-tab-btn,
.wp-tabs-nav .wp-tab-btn,
.wp-tabs-nav button.wp-tab-btn,
.wp-single-product .wp-tabs-nav .wp-tab-btn,
.wp-product-tabs .wp-tabs-nav .wp-tab-btn {
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 24px 24px;
  font-family: var(--wp-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--wp-dark-text-2);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  height: auto;
  line-height: 1.4;
  min-width: 0;
  width: auto;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: none;
}
.wp-tab-btn svg { width: 18px; height: 18px; }
.wp-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wp-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--wp-ease);
}
.wp-tab-btn.active { color: var(--wp-dark-text); }
.wp-tab-btn.active::after { transform: scaleX(1); }
.wp-tab-btn:hover { color: var(--wp-dark-text); }

/* SEO: tabs use height/overflow instead of display:none so content is indexable */
.wp-tab-panel {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s var(--wp-ease);
}
.wp-tab-panel.active {
  height: auto;
  overflow: visible;
  visibility: visible;
  padding: 48px 0;
  opacity: 1;
}
@keyframes wpFadeTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wp-tab-panel .wp-container { max-width: 900px; }

/* Specs table inside tab */
.wp-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.wp-specs-table tr { border-bottom: 1px solid var(--wp-dark-border); }
.wp-specs-table tr:last-child { border-bottom: none; }
.wp-specs-table th,
.wp-specs-table td {
  padding: 14px 0;
  font-size: 0.9375rem;
  vertical-align: top;
  font-weight: 400;
  text-align: left;
}
.wp-specs-table th {
  color: var(--wp-dark-text-2);
  width: 45%;
  padding-right: 24px;
  font-size: 0.875rem;
}
.wp-specs-table td {
  color: var(--wp-dark-text);
  font-weight: 500;
  text-transform: capitalize;
}

.wp-tab-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--wp-dark-text-2);
  max-width: 680px;
}


/* ============================================
   BRAND SECTION (light)
   ============================================ */
/* Brand section also uses flex-wrap for auto-stacking */
.wp-brand-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  background: var(--wp-white);
}
.wp-brand__image {
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  min-width: 300px;
}
.wp-brand__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.wp-brand__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  flex: 1 1 300px;
  min-width: 300px;
}
.wp-brand__logo {
  height: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wp-brand__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.wp-brand__logo-text {
  font-family: var(--wp-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--wp-text);
}
.wp-brand__content h2 {
  font-family: var(--wp-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--wp-text);
}
.wp-brand__content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--wp-text-2);
  margin-bottom: 20px;
}
.wp-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wp-text);
  transition: gap 0.2s var(--wp-ease);
  text-decoration: none;
}
.wp-brand__link:hover { gap: 10px; }
.wp-brand__link svg { width: 14px; height: 14px; }


/* ============================================
   FAQ SECTION (dark)
   ============================================ */
.wp-faq-section {
  padding: 72px 0;
  background: var(--wp-dark);
}
.wp-faq__title {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp-dark-text);
  margin-bottom: 12px;
  text-align: center;
}
.wp-faq__subtitle {
  font-size: 0.9375rem;
  color: var(--wp-dark-text-2);
  text-align: center;
  margin-bottom: 40px;
}
.wp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.wp-faq-item {
  border-bottom: 1px solid var(--wp-dark-border);
}
.wp-faq-item:first-child { border-top: 1px solid var(--wp-dark-border); }
.wp-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  color: var(--wp-dark-text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.wp-faq__trigger:hover { color: var(--wp-gold); }
.wp-faq__trigger svg {
  width: 18px;
  height: 18px;
  color: var(--wp-dark-text-2);
  flex-shrink: 0;
  transition: transform 0.3s var(--wp-ease);
}
.wp-faq-item.open .wp-faq__trigger svg { transform: rotate(45deg); }
.wp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--wp-ease);
}
.wp-faq-item.open .wp-faq__answer { max-height: 300px; }
.wp-faq__answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--wp-dark-text-2);
  line-height: 1.7;
}


/* ============================================
   RELATED PRODUCTS (dark)
   ============================================ */
.wp-related {
  padding: 72px 0;
  background: var(--wp-dark-surface);
}
.wp-related__title {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: var(--wp-dark-text);
}
.wp-related .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-related .products li.product {
  background: var(--wp-white);
  border-radius: var(--wp-r);
  overflow: hidden;
  border: none;
  transition: box-shadow 0.3s var(--wp-ease), transform 0.3s var(--wp-ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin: 0;
  padding: 0;
}
.wp-related .products li.product:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}
.wp-related .products li.product a img {
  border-radius: 0;
  transition: transform 0.6s var(--wp-ease);
}
.wp-related .products li.product:hover a img {
  transform: scale(1.04);
}
.wp-related .products li.product .woocommerce-loop-product__title {
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
  padding: 16px 16px 6px;
}
.wp-related .products li.product .price {
  padding: 0 16px;
  font-size: 0.875rem;
  color: var(--wp-text-2);
}
.wp-related .products li.product .button {
  margin: 8px 16px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--wp-text);
  border: none;
  padding: 0;
}


/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.wp-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--wp-white);
  border-top: 1px solid var(--wp-border);
  padding: 12px var(--wp-gutter);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  gap: 10px;
  align-items: center;
}
.wp-mobile-sticky__price {
  font-family: var(--wp-serif);
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.wp-mobile-sticky__price small,
.wp-mobile-sticky__price .woocommerce-price-suffix small {
  font-family: var(--wp-sans);
  font-size: 0.6875rem;
  color: var(--wp-text-3);
  font-weight: 400;
  display: inline;
  vertical-align: baseline;
}
.wp-mobile-sticky__cta {
  flex: 1;
  padding: 14px 16px;
  background: var(--wp-cta);
  color: var(--wp-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--wp-r-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.wp-mobile-sticky__cta:hover,
.wp-mobile-sticky__cta:active,
.wp-mobile-sticky__cta:visited {
  color: var(--wp-white);
}
.wp-mobile-sticky__cta svg { width: 16px; height: 16px; color: var(--wp-white); }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --wp-gutter: 24px; }
  .wp-product-layout { grid-template-columns: 1fr 380px; gap: 32px; }
  .wp-related .products { grid-template-columns: repeat(3, 1fr); }
  .wp-split { grid-template-columns: 1fr 1fr; }
  .wp-split__content { padding: 48px 40px; }
  .wp-brand-section { grid-template-columns: 1fr 1fr; }
  .wp-brand__content { padding: 48px 40px; }
}

@media (max-width: 768px) {
  :root { --wp-gutter: 16px; }

  /* Layout: single column */
  .wp-product-layout { grid-template-columns: 1fr; gap: 24px; }

  /* Gallery: constrain height, horizontal thumbs */
  .wp-gallery-main { max-height: 55vh; aspect-ratio: auto; min-height: 280px; }
  .wp-gallery-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wp-gallery-thumbs::-webkit-scrollbar { display: none; }
  .wp-gallery-thumb { width: 60px; height: 60px; flex-shrink: 0; }

  /* Summary: not sticky on mobile */
  .wp-product-summary { position: static; }
  .wp-product-title { font-size: 1.375rem; }
  .wp-product-price { font-size: 1.375rem; }
  .wp-product-sku { margin-bottom: 16px; }

  /* Breadcrumbs: allow wrap */
  .wp-breadcrumbs { font-size: 0.75rem; }
  .wp-breadcrumbs .wp-container { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* CTA links: stack vertically */
  .wp-cta-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* USPs: slightly smaller on mobile */
  .wp-usp { font-size: 0.8125rem; padding: 10px 0; }

  /* Accordions: compact */
  .wp-accordion__trigger { font-size: 0.8125rem; padding: 12px 0; }

  /* 50/50 Split: FORCE single column on mobile — max specificity */
  section.wp-split,
  .wp-single-product section.wp-split,
  .wp-single-product .wp-split,
  .wp-split[style] {
    grid-template-columns: 1fr;
    min-height: auto;
    display: block;
  }
  .wp-split__image,
  .wp-single-product .wp-split__image {
    width: 100%;
  }
  .wp-split__image img,
  .wp-single-product .wp-split__image img {
    min-height: 200px;
    max-height: 260px;
    width: 100%;
  }
  .wp-split__content,
  .wp-single-product .wp-split__content {
    padding: 32px var(--wp-gutter);
    width: 100%;
  }
  .wp-split__content h2,
  .wp-single-product .wp-split__content h2 {
    font-size: 1.25rem;
  }

  /* Tabs: horizontal scroll, compact, hide icons on small screens */
  .wp-tabs-nav,
  .wp-single-product .wp-tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    flex-wrap: nowrap;
  }
  .wp-tabs-nav::-webkit-scrollbar { display: none; }
  .wp-tab-btn,
  .wp-single-product .wp-tab-btn {
    font-size: 0.8125rem;
    padding: 16px 12px;
    white-space: nowrap;
    flex: 1 0 auto;
    min-width: 0;
  }
  /* Hide tab icons on mobile to save space */
  .wp-tab-btn svg,
  .wp-single-product .wp-tab-btn svg {
    display: none;
  }
  .wp-tab-panel .wp-container { padding: 0 var(--wp-gutter); }
  .wp-specs-table th, .wp-specs-table td { font-size: 0.8125rem; padding: 10px 0; }

  /* Brand section: FORCE single column */
  .wp-brand-section,
  .wp-single-product .wp-brand-section {
    grid-template-columns: 1fr;
    display: grid;
  }
  .wp-brand__image img,
  .wp-single-product .wp-brand__image img {
    min-height: 200px;
    max-height: 260px;
  }
  .wp-brand__content,
  .wp-single-product .wp-brand__content {
    padding: 32px var(--wp-gutter);
  }
  .wp-brand__logo img { max-height: 36px; }

  /* FAQ: compact */
  .wp-faq__title { font-size: 1.25rem; }
  .wp-faq__trigger { font-size: 0.875rem; padding: 16px 0; }
  .wp-faq__answer-inner { font-size: 0.8125rem; }

  /* Related: 2 columns */
  .wp-related .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wp-related-card__body { padding: 12px 12px 16px; }
  .wp-related-card__name { font-size: 0.8125rem; }
  .wp-related-card__price { font-size: 0.8125rem; margin-bottom: 10px; }
  .wp-related-card__link { font-size: 0.75rem; }

  /* Sticky bars: mobile gets bottom CTA, desktop gets top bar */
  .wp-sticky-bar { display: none; }
  .wp-sticky-bar__name { display: none; }
  .wp-mobile-sticky { display: flex; }

  /* Ask question: compact */
  .wp-ask-question { margin-top: 20px; margin-bottom: 32px; }
  .wp-ask-question__toggle { font-size: 0.8125rem; }

  /* Hero section less bottom padding on mobile */
  .wp-product-hero { padding-bottom: 40px; }

  /* Calculator progress/loading bar should not show above mobile sticky */
  .wp-single-product .woopremium-calc-wrapper { margin-bottom: 0; }

  /* Mobile sticky price: smaller suffix */
  .wp-mobile-sticky__price { font-size: 1rem; }
  .wp-mobile-sticky__price .woocommerce-Price-amount { font-weight: 600; }

  /* Mobile sticky CTA: force white text on dark button */
  .wp-mobile-sticky__cta,
  .wp-single-product .wp-mobile-sticky__cta,
  .wp-single-product .wp-mobile-sticky__cta:visited,
  .wp-single-product .wp-mobile-sticky__cta:hover {
    color: #ffffff;
    background: #1a1a1a;
    border: none;
  }
  .wp-mobile-sticky__cta svg,
  .wp-single-product .wp-mobile-sticky__cta svg {
    color: #ffffff;
  }

  /* Ensure content is not cut off by mobile sticky bar */
  .wp-single-product { padding-bottom: 70px; }

  /* Ensure body doesn't overflow */
  .wp-single-product { overflow-x: hidden; }
}


@media (max-width: 480px) {
  .wp-product-title { font-size: 1.25rem; }
  .wp-product-price { font-size: 1.25rem; }
  .wp-gallery-main { max-height: 50vh; min-height: 240px; }
  .wp-gallery-thumb { width: 52px; height: 52px; }
  .wp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wp-related-card__body { padding: 10px 10px 14px; }
  .wp-related-card__name { font-size: 0.75rem; }
  .wp-tab-btn { font-size: 0.8125rem; padding: 14px 10px; }
  .wp-mobile-sticky { padding: 10px 12px; }
  .wp-mobile-sticky__price { font-size: 1rem; }
  .wp-mobile-sticky__cta { font-size: 0.75rem; padding: 12px 12px; }
}

/* ============================================
   OVERRIDES & CONFLICT FIXES
   ============================================ */

/* Hide ALL breadcrumbs that are NOT inside our .wp-breadcrumbs wrapper */
.wp-single-product .woocommerce-breadcrumb {
  display: none;
}
.wp-single-product .wp-breadcrumbs .woocommerce-breadcrumb {
  display: block;
}
/* Hide quantity input in CTA stack — calculator handles quantity */
/* !important needed: WooCommerce variation JS sets inline display on .quantity */
.wp-cta-stack .quantity {
  display: none !important;
}

/* Style the add-to-cart button properly within CTA stack */
.wp-cta-stack .cart {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.wp-cta-stack .cart .single_add_to_cart_button {
  width: 100%;
  margin: 0;
}

/* Hide "Gerelateerde producten" heading from WC default — we use our own */
.wp-related .related.products > h2 {
  display: none;
}

/* Related products grid overrides */
.wp-related .related.products {
  margin: 0;
  padding: 0;
}

.wp-related .products li.product a {
  text-decoration: none;
}

.wp-related .products li.product a img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

/* Ensure our product page takes full width */
.wp-single-product {
  width: 100%;
  max-width: 100%;
}

/* WooCommerce notices styling */
.wp-single-product .woocommerce-notices-wrapper {
  max-width: var(--wp-container);
  margin: 0 auto;
  padding: 0 var(--wp-gutter);
}

/* Brand section text visibility — ensure readable on white */
.wp-brand__content h2 {
  color: var(--wp-text);
}
.wp-brand__content p {
  color: var(--wp-text-2);
}

/* Room visualizer button integration */
.wp-cta-links .wprv-button,
.wp-cta-links [class*="wprv"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--wp-text-2);
  transition: color 0.2s;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}
.wp-cta-links .wprv-button:hover,
.wp-cta-links [class*="wprv"]:hover {
  color: var(--wp-gold-text);
}

/* Fix page title in browser tab */
.wp-single-product .page-title,
.wp-single-product .entry-title {
  display: none;
}

/* ============================================
   TYPOGRAPHY & STYLE OVERRIDES
   These rules ensure the prototype design
   is preserved.
   ============================================ */

/* --- Typography reset: force our fonts --- */
.wp-single-product .wp-product-title {
  font-family: var(--wp-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--wp-text);
  margin-bottom: 8px;
}

.wp-single-product .wp-product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp-gold-text);
  border-color: var(--wp-gold);
  padding: 5px 12px;
  border-radius: var(--wp-r-sm);
  font-family: var(--wp-sans);
}

.wp-single-product .wp-product-sku {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  font-family: var(--wp-sans);
  margin-bottom: 24px;
}

.wp-single-product .wp-product-price {
  font-family: var(--wp-serif);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--wp-text);
  margin-bottom: 4px;
}

.wp-single-product .wp-product-price-unit {
  font-family: var(--wp-sans);
  font-size: 0.875rem;
  color: var(--wp-text-2);
  font-weight: 400;
}

.wp-single-product .wp-product-price-note {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  font-family: var(--wp-sans);
  margin-bottom: 4px;
}

.wp-single-product .wp-product-price-pack {
  font-size: 0.8125rem;
  color: var(--wp-text-3);
  font-family: var(--wp-sans);
  margin-bottom: 24px;
}
.wp-single-product .wp-product-price-pack span {
  color: var(--wp-text-2);
  font-weight: 500;
}

/* --- CTA Button: match prototype exactly --- */
/* CTA stack container spacing */
.wp-single-product .wp-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.wp-single-product .wp-cta-stack .cart {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.wp-single-product .wp-cta-stack .single_add_to_cart_button,
.wp-single-product .wp-cta-stack .button.alt,
.wp-single-product .wp-cta-stack button[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  background: var(--wp-cta);
  color: var(--wp-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  border: none;
  height: auto;
  line-height: 1.4;
  font-family: var(--wp-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  margin: 0;
  box-sizing: border-box;
}
/* Style the WooPremium Calculator button to match our design */
.wp-single-product .wp-cta-stack .woopremium-calc-toggle,
.wp-single-product .wp-cta-stack button.woopremium-calc-toggle {
  width: 100%;
  padding: 16px 32px;
  background: var(--wp-cta);
  background-color: var(--wp-cta);
  color: var(--wp-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  border: none;
  height: auto;
  line-height: 1.4;
  font-family: var(--wp-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  margin: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.wp-single-product .wp-cta-stack .woopremium-calc-toggle:hover {
  background: var(--wp-cta-hover);
  background-color: var(--wp-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
/* Add icon to calculator button */
.wp-single-product .wp-cta-stack .woopremium-calc-toggle::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
/* Hide the calculator wrapper styling that conflicts */
.wp-single-product .wp-cta-stack .woopremium-calc-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.wp-single-product .wp-cta-stack .product-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Add icon to primary CTA via CSS (fallback for standard WC button) */
.wp-single-product .wp-cta-stack .single_add_to_cart_button::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.wp-single-product .wp-cta-stack .single_add_to_cart_button:hover,
.wp-single-product .wp-cta-stack .button.alt:hover {
  background: var(--wp-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Disabled state: lighter version of CTA color when not all variations are selected */
.wp-single-product .wp-cta-stack .single_add_to_cart_button:disabled,
.wp-single-product .wp-cta-stack .single_add_to_cart_button.disabled,
.wp-single-product .wp-cta-stack .button.alt:disabled {
  background: var(--wp-cta-disabled);
  color: var(--wp-white);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 1;
}

/* Sample button override */
.wp-single-product .wp-cta-stack .staaltje-button,
.wp-single-product .wp-cta-stack .woopremium-sample-variable {
  width: 100%;
  padding: 13px 32px;
  background: transparent;
  color: var(--wp-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--wp-r);
  border: 1.5px solid var(--wp-border);
  height: auto;
  line-height: 1.4;
  font-family: var(--wp-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  box-sizing: border-box;
}
.wp-single-product .wp-cta-stack .staaltje-button:hover,
.wp-single-product .wp-cta-stack .woopremium-sample-variable:hover {
  border-color: var(--wp-text);
  background: var(--wp-surface);
}

/* --- CTA Links --- */
.wp-single-product .wp-cta-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.wp-single-product .wp-cta-link,
.wp-single-product .wp-cta-links > a,
.wp-single-product .wp-cta-links > button,
.wp-single-product .wp-cta-links > .woopremium-showroom-button,
.wp-single-product .wp-cta-links > .woopremium-inmeet-button,
.wp-single-product .wp-cta-links > [class*="wprv"]:not(.wprv2-modal),
.wp-single-product .wp-cta-links .wprv2-launch-btn {
  color: var(--wp-text-2);
  font-size: 0.8125rem;
  font-family: var(--wp-sans);
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  height: auto;
  line-height: 1.4;
  box-shadow: none;
}
.wp-single-product .wp-cta-link:hover,
.wp-single-product .wp-cta-links > a:hover,
.wp-single-product .wp-cta-links > button:hover,
.wp-single-product .wp-cta-links .wprv2-launch-btn:hover {
  color: var(--wp-gold-text);
  background: none;
}

/* Room Visualizer modal — must NOT inherit CTA link styles */
.wp-single-product .wp-cta-links .wprv2-modal,
.wp-single-product .wp-cta-links [class*="wprv2-modal"],
.wp-single-product .wprv2-modal {
  display: none;
  position: fixed;
}
.wp-single-product .wprv2-modal.wprv2-modal--open,
.wp-single-product .wp-cta-links .wprv2-modal.wprv2-modal--open {
  display: flex;
}
/* Prevent our styles from breaking modal/sidebar internals — reset modals to plugin defaults */
.wp-single-product .wprv2-modal a,
.wp-single-product .wprv2-modal button,
.wp-single-product .wprv2-modal div,
.wp-single-product .wprv2-modal span,
.wp-single-product .wprv2-modal input {
  font-size: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  background: unset;
  border: unset;
  padding: unset;
  gap: unset;
  text-transform: unset;
  letter-spacing: unset;
}
/* But keep the launch button styled as a CTA link */
.wp-single-product .wp-cta-links .wprv2-launch-btn {
  color: var(--wp-text-2);
  font-size: 0.8125rem;
  font-family: var(--wp-sans);
  font-weight: 400;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
}
.wp-single-product .wp-cta-links .wprv2-launch-btn:hover {
  color: var(--wp-gold-text);
  background: none;
}
.wp-single-product .wp-cta-links .wprv2-launch-btn__icon,
.wp-single-product .wp-cta-links .wprv2-launch-btn__label {
  all: unset;
  display: inline;
  font: inherit;
  color: inherit;
}
/* Add subtle icons before showroom/inmeet buttons via CSS */
.wp-single-product .wp-cta-links .woopremium-showroom-button::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235c5650' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.wp-single-product .wp-cta-links .woopremium-inmeet-button::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235c5650' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* --- USPs --- */
.wp-single-product .wp-usps {
  background: var(--wp-surface);
  border-radius: var(--wp-r);
  padding: 4px 16px;
  margin-bottom: 24px;
}
.wp-single-product .wp-usp {
  font-size: 0.8125rem;
  color: var(--wp-text);
  font-family: var(--wp-sans);
  padding: 10px 0;
  gap: 10px;
}
.wp-single-product .wp-usp svg {
  color: var(--wp-success);
  width: 20px;
  height: 20px;
}

/* --- Accordions --- */
.wp-single-product .wp-accordion__trigger {
  font-size: 0.875rem;
  color: var(--wp-text-2);
  padding: 14px 0;
  font-family: var(--wp-sans);
  text-transform: none;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  height: auto;
  line-height: 1.4;
}
.wp-single-product .wp-accordion__trigger:hover {
  color: var(--wp-text);
  background: none;
}
.wp-single-product .wp-accordion__label {
  color: inherit;
  font-size: inherit;
}
.wp-single-product .wp-accordion__label svg {
  color: var(--wp-text-3);
}
.wp-single-product .wp-accordion__chevron {
  color: var(--wp-text-3);
}

/* --- Ask a question --- */
.wp-single-product .wp-ask-question__toggle {
  color: var(--wp-text-2);
  font-size: 0.875rem;
  font-family: var(--wp-sans);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  padding: 0;
  background: none;
  border: none;
  height: auto;
}
.wp-single-product .wp-ask-question__toggle:hover {
  color: var(--wp-text);
  background: none;
}
.wp-single-product .wp-ask-question__toggle svg {
  color: var(--wp-gold);
}

/* --- Tabs: match prototype (large, serif, spacious) --- */
.wp-single-product .wp-product-tabs {
  background: var(--wp-dark);
  padding-bottom: 80px;
}
.wp-single-product .wp-tabs-nav {
  border-bottom: 1px solid var(--wp-dark-border);
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wp-single-product .wp-tab-btn {
  flex: 1;
  font-family: var(--wp-serif);
  font-size: 1.125rem;
  font-weight: 400;
  padding: 24px 16px;
  color: var(--wp-dark-text-2);
  text-transform: none;
  letter-spacing: normal;
  background: none;
  border: none;
  border-radius: 0;
  height: auto;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.wp-single-product .wp-tab-btn svg {
  width: 18px;
  height: 18px;
}
.wp-single-product .wp-tab-btn.active {
  color: var(--wp-dark-text);
}
.wp-single-product .wp-tab-btn:hover {
  color: var(--wp-dark-text);
  background: none;
}
.wp-single-product .wp-tab-panel {
  /* Non-active panels: accessible to crawlers but hidden visually */
  height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  opacity: 0;
}
.wp-single-product .wp-tab-panel.active {
  height: auto;
  overflow: visible;
  visibility: visible;
  padding: 48px 0;
  opacity: 1;
}
.wp-single-product .wp-tab-panel .wp-container {
  max-width: 900px;
}

/* Specs table inside dark tab */
.wp-single-product .wp-specs-table th {
  color: var(--wp-dark-text-2);
  font-size: 0.875rem;
  font-family: var(--wp-sans);
  font-weight: 400;
}
.wp-single-product .wp-specs-table td {
  color: var(--wp-dark-text);
  font-size: 0.9375rem;
  font-family: var(--wp-sans);
  font-weight: 500;
  text-transform: capitalize;
}
.wp-single-product .wp-tab-text {
  color: var(--wp-dark-text-2);
  font-size: 0.9375rem;
  font-family: var(--wp-sans);
}

/* --- 50/50 Split section --- */
.wp-single-product .wp-split__content {
  padding: 48px 64px;
  background: var(--wp-dark);
}
.wp-single-product .wp-split__content h2 {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp-dark-text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-single-product .wp-split__content h2 svg {
  color: var(--wp-gold);
  width: 22px;
  height: 22px;
}
.wp-single-product .wp-split__content p,
.wp-single-product .wp-split__content div {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--wp-dark-text-2);
  font-family: var(--wp-sans);
}

/* --- Brand section --- */
.wp-single-product .wp-brand__logo-text {
  font-family: var(--wp-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wp-text);
}
.wp-single-product .wp-brand__content h2 {
  font-family: var(--wp-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--wp-text);
}
.wp-single-product .wp-brand__content p {
  font-size: 0.9375rem;
  color: var(--wp-text-2);
  font-family: var(--wp-sans);
}
.wp-single-product .wp-brand__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wp-text);
  font-family: var(--wp-sans);
}

/* --- Brand section --- */
.wp-single-product .wp-brand-section {
  min-height: 400px;
}
.wp-single-product .wp-brand__content {
  padding: 64px 72px;
}
.wp-single-product .wp-brand__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* --- FAQ section --- */
.wp-single-product .wp-faq-section {
  padding: 72px 0;
  background: var(--wp-dark);
}
.wp-single-product .wp-faq__title {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp-dark-text);
  text-align: center;
  margin-bottom: 12px;
}
.wp-single-product .wp-faq__subtitle {
  font-size: 0.9375rem;
  color: var(--wp-dark-text-2);
  font-family: var(--wp-sans);
}
.wp-single-product .wp-faq__subtitle {
  margin-bottom: 48px;
}
.wp-single-product .wp-faq__trigger {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--wp-dark-text);
  font-family: var(--wp-sans);
  padding: 20px 0;
  text-transform: none;
  letter-spacing: normal;
  background: none;
  border: none;
  height: auto;
}
.wp-single-product .wp-faq__trigger:hover {
  color: var(--wp-gold);
  background: none;
}
.wp-single-product .wp-faq__answer-inner {
  font-size: 0.9375rem;
  color: var(--wp-dark-text-2);
  font-family: var(--wp-sans);
}

/* --- Related products --- */
.wp-single-product .wp-related {
  padding: 72px 0;
  background: var(--wp-dark-surface);
}
.wp-single-product .wp-related__title {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp-dark-text);
  margin-bottom: 36px;
}
.wp-single-product .wp-related .products li.product {
  background: var(--wp-white);
  border-radius: var(--wp-r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}
.wp-single-product .wp-related .products li.product:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}
.wp-single-product .wp-related .products li.product .woocommerce-loop-product__title {
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--wp-text);
}
.wp-single-product .wp-related .products li.product .price {
  font-size: 0.875rem;
  color: var(--wp-text-2);
}
.wp-single-product .wp-related .products li.product .price .woocommerce-Price-amount {
  color: var(--wp-text);
  font-weight: 600;
}

/* --- Breadcrumbs --- */
.wp-single-product .wp-breadcrumbs {
  background: var(--wp-surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--wp-border-light);
}
.wp-single-product .wp-breadcrumbs,
.wp-single-product .wp-breadcrumbs * {
  font-family: var(--wp-sans);
  font-size: 0.8125rem;
}
.wp-single-product .wp-breadcrumbs a {
  color: var(--wp-text-2);
  text-decoration: none;
}
.wp-single-product .wp-breadcrumbs a:hover {
  color: var(--wp-gold-text);
}
.wp-single-product .wp-breadcrumbs .breadcrumb-sep {
  opacity: 0.4;
  margin: 0 6px;
}

/* --- Sticky bar --- */
.wp-single-product .wp-sticky-bar__name {
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
}
.wp-single-product .wp-sticky-bar__cta {
  font-family: var(--wp-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 28px;
  height: auto;
  text-transform: uppercase;
}

/* --- Global: kill Poppins on our elements --- */
.wp-single-product [class^="wp-"] {
  font-family: var(--wp-sans);
}
.wp-single-product h1[class^="wp-"],
.wp-single-product h2[class^="wp-"],
.wp-single-product .wp-product-price,
.wp-single-product .wp-sticky-bar__name {
  font-family: var(--wp-serif);
}


/* ============================================
   REFINEMENT PASS — pixel-perfect fixes
   ============================================ */

/* 1. "per m²" smaller and subtler — targets <small> from WC price suffix */
.wp-single-product .wp-product-price .woocommerce-price-suffix,
.wp-single-product .wp-product-price small,
.wp-single-product .wp-product-price-unit {
  font-family: var(--wp-sans);
  font-size: 0.875rem;
  color: var(--wp-text-3);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-style: normal;
  vertical-align: baseline;
}

/* 2. More space under "stel een vraag" before dark section */
.wp-single-product .wp-ask-question {
  margin-bottom: 40px;
  padding-bottom: 8px;
}
.wp-single-product .wp-product-hero {
  padding-bottom: 60px;
}

/* 3. 50/50 split "Over dit product" — flex-wrap based, auto-stacks on narrow */
.wp-single-product .wp-split {
  display: flex;
  flex-wrap: wrap;
  min-height: 380px;
  margin-top: 0;
}
.wp-single-product .wp-split__image {
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  min-width: 300px;
}
.wp-single-product .wp-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* 4. Sticky bar: white text on CTA, darker price */
.wp-single-product .wp-sticky-bar__cta {
  color: var(--wp-white);
  background: var(--wp-cta);
}
.wp-single-product .wp-sticky-bar__cta:hover {
  background: var(--wp-cta-hover);
  color: var(--wp-white);
}
.wp-single-product .wp-sticky-bar__price {
  color: var(--wp-text);
  font-weight: 600;
}
.wp-single-product .wp-sticky-bar__name {
  color: var(--wp-text);
}

/* 5. Tab headings: Georgia serif, elegant */
.wp-single-product .wp-tab-btn {
  font-family: var(--wp-serif);
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

/* 6. Specs table: more refined typography */
.wp-single-product .wp-specs-table th {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--wp-dark-text-2);
  letter-spacing: 0.01em;
  font-family: var(--wp-sans);
  line-height: 1.5;
}
.wp-single-product .wp-specs-table td {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wp-dark-text);
  font-family: var(--wp-sans);
  line-height: 1.5;
  text-transform: capitalize;
}

/* 7. Brand section: logo fits, proper font */
.wp-single-product .wp-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  height: auto;
}
.wp-single-product .wp-brand__logo img,
.wp-single-product .wp-brand__logo .wp-brand__logo-img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
}
.wp-single-product .wp-brand__logo-text {
  font-family: var(--wp-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp-text);
  letter-spacing: -0.01em;
}
.wp-single-product .wp-brand__content h2 {
  font-family: var(--wp-serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.wp-single-product .wp-brand__link {
  font-family: var(--wp-sans);
  margin-top: 8px;
}
.wp-single-product .wp-brand__content p {
  margin-bottom: 24px;
}

/* 8. Custom related products grid */
.wp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wp-related-card {
  background: var(--wp-white);
  border-radius: var(--wp-r);
  overflow: hidden;
  text-decoration: none;
  color: var(--wp-text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s var(--wp-ease), transform 0.3s var(--wp-ease);
  display: block;
}
.wp-related-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}
.wp-related-card__image {
  overflow: hidden;
}
.wp-related-card__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  transition: transform 0.6s var(--wp-ease);
  display: block;
}
.wp-related-card:hover .wp-related-card__image img {
  transform: scale(1.04);
}
.wp-related-card__body {
  padding: 16px 16px 20px;
}
.wp-related-card__name,
.wp-single-product .wp-related-card__name {
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 6px 0;
  color: var(--wp-text);
  text-align: left;
  letter-spacing: -0.01em;
}
/* Kill any h3/heading boldness from WC or theme */
h3.wp-related-card__name {
  font-weight: 400;
}
.wp-related-card__price {
  font-size: 0.875rem;
  color: var(--wp-text-2);
  margin: 0 0 14px 0;
  text-align: left;
  font-family: var(--wp-sans);
}
/* Price amount bold/dark, suffix subtle */
.wp-related-card__price .woocommerce-Price-amount {
  color: var(--wp-text);
  font-weight: 600;
}
.wp-related-card__price small,
.wp-related-card__price .woocommerce-price-suffix {
  color: var(--wp-text-3);
  font-weight: 400;
  font-size: 0.8125rem;
}
.wp-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wp-text);
  font-family: var(--wp-sans);
  transition: gap 0.2s var(--wp-ease);
}
.wp-related-card:hover .wp-related-card__link {
  gap: 10px;
}

/* Responsive related grid */
@media (max-width: 1024px) {
  .wp-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .wp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* 8-old. WC default related products (now unused, kept as fallback) */
.wp-single-product .wp-related .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wp-single-product .wp-related .products li.product {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  float: none;
}
.wp-single-product .wp-related .products li.product .woocommerce-loop-product__title {
  text-align: left;
  padding: 16px 16px 6px;
  font-family: var(--wp-serif);
  font-size: 0.9375rem;
  font-weight: 400;
}
.wp-single-product .wp-related .products li.product .price {
  text-align: left;
  padding: 0 16px;
  font-size: 0.875rem;
}
.wp-single-product .wp-related .products li.product a.button,
.wp-single-product .wp-related .products li.product a.add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 16px 16px;
  padding: 0;
  background: transparent;
  color: var(--wp-text);
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  font-family: var(--wp-sans);
  width: auto;
  border-radius: 0;
  box-shadow: none;
}
.wp-single-product .wp-related .products li.product a.button:hover {
  background: transparent;
}
/* Override image aspect ratio in related cards */
.wp-single-product .wp-related .products li.product a img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}
/* Force all inner elements to fill card width */
.wp-single-product .wp-related .products li.product,
.wp-single-product .wp-related .products li.product * {
  max-width: none;
}
.wp-single-product .wp-related .products li.product > a,
.wp-single-product .wp-related .products li.product > a:first-child {
  display: block;
  width: 100%;
  overflow: hidden;
}
.wp-single-product .wp-related .products li.product img,
.wp-single-product .wp-related .products li.product > a > img,
.wp-single-product .wp-related .products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

/* ---- Transition delay utility classes ---- */
.wp-delay-100 { transition-delay: .1s; }
.wp-delay-150 { transition-delay: .15s; }
.wp-delay-200 { transition-delay: .2s; }

/* ---- Split section spacing modifier ---- */
.wp-split--spaced { margin-top: 80px; }

/* ---- Staaltje-knop: outline / secundair ---- */
.woopremium-sample-btn.button.alt {
  background: transparent !important;
  color: var(--wp-cta, #fab200) !important;
  border: 2px solid var(--wp-cta, #fab200) !important;
  font-weight: 600;
}
.woopremium-sample-btn.button.alt:hover {
  background: var(--wp-cta, #fab200) !important;
  color: #fff !important;
}
.woopremium-sample-btn.button.alt svg {
  stroke: currentColor;
}
