/* =====================================================================
   QWOOD â€” FICHA PARQUET (LOCKED) Â· CSS EXTERNO (CLEAN + PRO Â· 2026-02-17r4)
   NORDIC FOREST ELEVATION Â· 2026-03-24  |  PROFESSIONAL POLISH Â· 2026-03-24
   Scope principal: .qw-single-locked
   Markup (segÃºn snippet):
   - .qw-hero > .qw-hero__overlay > .qw-hero__content > .qw-hero__title / __subtitle / __pill
   - .qw-buy / .qw-buy__grid / .qw-buy__thumb / .qw-buy__main
   - .qw-tabs / .qw-tabs__nav / .qw-tab / .qw-pane
   - .qw-tech (tabla tÃ©cnica fallback)
   - .qw-sample (bloque pedir muestra)
   - .qw-related > .qw-parquet-grid (cards estilo catÃ¡logo)
   ===================================================================== */


/* ---------------------------------------------------------------------
   0) TOKENS (SSOT global)
--------------------------------------------------------------------- */
/* Tokens heredados de design-system.css (SSOT).
   Solo aliases locales de la ficha producto. */
/* Body bg blanco para fichas de producto (audit 2026-05-07: usuario quiere
   fondo blanco en ficha igual que catÃ¡logo, no el gris-verdoso global). */
body.single-product{ background:#ffffff !important; }

.qw-single-locked{
  --qwood-color-soft: #e1f7df;
  --qwood-ink: var(--qwood-color-text, #0f172a);
  --qwood-muted: var(--qwood-color-muted-soft, rgba(15,23,42,.56));
  --qwood-border: var(--qwood-color-line, #e6ecf5);
  --qwood-bg: var(--qwood-color-bg, #ffffff);
  --qwood-shadow-sm: var(--qwood-shadow-soft, 0 14px 34px rgba(15,23,42,.06));
  --qwood-shadow-md: var(--qwood-shadow-card, 0 18px 42px rgba(15,23,42,.08));
  --qwood-tr: var(--qwood-speed-fast, 140ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1));
  overflow-x: clip;
}


/* ---------------------------------------------------------------------
   1) HARD RESET (solo dentro del scope)
--------------------------------------------------------------------- */
.qw-single-locked,
.qw-single-locked *{
  box-sizing: border-box;
}

.qw-single-locked{
  font-family: var(--qwood-font-sans);
  color: var(--qwood-ink);
}

.qw-single-locked a{
  color: inherit;
  text-decoration: none;
}

.qw-single-locked img{
  max-width: 100%;
  height: auto;
  display: block;
}


/* ---------------------------------------------------------------------
   2) OCULTAR RESTOS DE WOO NATIVO (seguridad)
--------------------------------------------------------------------- */
body.single-product .summary .stock,
body.single-product .product_title,
body.single-product .woocommerce-product-details__short-description{
  display: none !important;
}

/* FIX 2026-08-04 (audit 3ª pasada · P1): estos contenedores estaban ocultos como
   sr-only (1×1 px, clip, pointer-events:none), de modo que CUALQUIER aviso de
   WooCommerce encolado para la ficha era invisible para el cliente vidente:
   errores de validación del add-to-cart, mensajes de carrito, avisos de stock…
   Solo los oía un lector de pantalla. El render drena la cola con
   wc_print_notices() dentro de .qw-locked-notices, así que ese contenedor debe
   VERSE; el sr-only se conserva únicamente para el wrapper nativo de WooCommerce
   (que en esta plantilla queda vacío y solo aportaría hueco en blanco). */
.qw-single-locked > .woocommerce-notices-wrapper,
.qw-single-locked .woocommerce-notices-wrapper{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}

/* Avisos visibles, dentro del bloque de compra y con la estética SSOT. */
.qw-single-locked .qw-locked-notices{
  margin: 0 0 14px;
}
.qw-single-locked .qw-locked-notices .woocommerce-message,
.qw-single-locked .qw-locked-notices .woocommerce-error,
.qw-single-locked .qw-locked-notices .woocommerce-info{
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .92rem;
  line-height: 1.45;
  list-style: none;
}
.qw-single-locked .qw-locked-notices .woocommerce-message{
  background: rgba(27, 207, 23, .10);
  border: 1px solid rgba(27, 207, 23, .32);
  color: #11900f;
}
.qw-single-locked .qw-locked-notices .woocommerce-error{
  background: rgba(220, 38, 38, .07);
  border: 1px solid rgba(220, 38, 38, .26);
  color: #b91c1c;
}
.qw-single-locked .qw-locked-notices .woocommerce-info{
  background: rgba(15, 23, 42, .05);
  border: 1px solid rgba(15, 23, 42, .14);
  color: #0f172a;
}

.qw-single-locked .qw-locked-notices:empty,
.qw-single-locked > .woocommerce-notices-wrapper:empty,
.qw-single-locked .woocommerce-notices-wrapper:empty{
  display: none !important;
}

.qw-single-locked > .woocommerce-notices-wrapper .woocommerce-message,
.qw-single-locked > .woocommerce-notices-wrapper .woocommerce-error,
.qw-single-locked > .woocommerce-notices-wrapper .woocommerce-info,
.qw-single-locked .woocommerce-notices-wrapper .woocommerce-message,
.qw-single-locked .woocommerce-notices-wrapper .woocommerce-error,
.qw-single-locked .woocommerce-notices-wrapper .woocommerce-info{
  margin: 0 !important;
}


/* ---------------------------------------------------------------------
   2b) TÃTULO PRINCIPAL DEL PRODUCTO (H1 â€” oculto visualmente, visible para SEO)
--------------------------------------------------------------------- */
.qw-single-locked .qw-product-title.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------
   3) HERO FULL-WIDTH + WAVE
--------------------------------------------------------------------- */
.qw-single-locked .qw-hero{
  /* 2026-05-10 mobile fix: width 100% (parent ya es full-width) en mobile,
     reservar el breakout 100vw para desktop donde col-full max-width activa. */
  width: 100% !important;
  margin-left: 0 !important;
  margin-top: 0;
  min-height: clamp(320px, 42vw, 480px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--qw-hero-bg) center / cover no-repeat;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: qw-ficha-hero-in var(--qwood-speed-reveal, 600ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1)) both;
}
@media (min-width: 1064px){
  .qw-single-locked .qw-hero{
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
  }
}

/* Hide ALL breadcrumbs on single product (native + custom QWOOD) */
.qw-single-locked ~ .woocommerce-breadcrumb,
.woocommerce-breadcrumb:has(~ .qw-single-locked),
body.single-product .woocommerce-breadcrumb,
body.single-product .qw-breadcrumb{
  display: none !important;
}

/* Fullwidth: remove Storefront .col-full constraint on locked product */
body.single-product #content > .col-full{
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hero flush to top: handled by body.qw-landing-page in storefront-header.css */

/* Hide Storefront single product bar (toast "EstÃ¡s viendo...") */
body.single-product .storefront-sticky-add-to-cart,
body.single-product .storefront-handheld-footer-bar{
  display: none !important;
}
@keyframes qw-ficha-hero-in{
  from{ opacity:0; transform:translateY(14px) scale(.995); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

.qw-single-locked .qw-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--qw-nav-h, 72px) + 24px) 24px clamp(40px, 5vw, 60px);
}

.qw-single-locked .qw-hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
}

.qw-single-locked .qw-hero__cat{
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .7;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow:
    0 1px 3px rgba(0,0,0,.5),
    0 4px 12px rgba(0,0,0,.3);
}

.qw-single-locked .qw-hero__title{
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 950;
  letter-spacing: -.5px;
  margin: 0;
  color: #fff !important;
  /* Contraste universal: funciona sobre maderas claras Y oscuras */
  text-shadow:
    0 0 6px rgba(0,0,0,.6),
    0 2px 4px rgba(0,0,0,.5),
    0 4px 14px rgba(0,0,0,.4),
    0 8px 24px rgba(0,0,0,.25);
}

.qw-single-locked .qw-hero__subtitle{
  font-size: 14px;
  opacity: .8;
  margin-top: 8px;
  font-weight: 700;
  text-shadow:
    0 1px 3px rgba(0,0,0,.5),
    0 4px 12px rgba(0,0,0,.3);
}
.qw-single-locked .qw-hero__subtitle p{ margin: 0; }

.qw-single-locked .qw-hero__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: clamp(60px, 8vw, 90px);
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
@supports (backdrop-filter: blur(6px)){
  .qw-single-locked .qw-hero__pill{
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
  }
}

.qw-single-locked .qw-hero__pill .qw-pill-sep{
  opacity: .35;
}

.qw-single-locked .qw-hero-wave{
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  font-size: 0;
  line-height: 0;
}
.qw-single-locked .qw-hero-wave svg{
  display: block;
  width: 100%;
  height: clamp(45px, 6vw, 70px);
}

/* Responsive hero */
@media (max-width: 768px){
  .qw-single-locked .qw-hero{
    min-height: 340px;
  }
  .qw-single-locked .qw-hero__overlay{
    padding: calc(var(--qw-nav-h, 60px) + 16px) 20px 32px;
  }
  .qw-single-locked .qw-hero__title{
    font-size: clamp(24px, 6vw, 30px);
  }
  .qw-single-locked .qw-hero__subtitle{
    font-size: 13px;
  }
  .qw-single-locked .qw-hero__pill{
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px){
  .qw-single-locked .qw-hero{
    min-height: 320px;
  }
  .qw-single-locked .qw-hero__overlay{
    padding: calc(var(--qw-nav-h, 56px) + 12px) 16px 26px;
  }
  .qw-single-locked .qw-hero__title{
    font-size: clamp(22px, 5.5vw, 26px);
  }
  .qw-single-locked .qw-hero__pill{
    margin-bottom: 18px;
  }
}

/* ---------------------------------------------------------------------
   3b) WAVE DIVIDERS (between sections)
--------------------------------------------------------------------- */
.qw-single-locked .qw-wave-div{
  /* 2026-05-10 mobile fix: 100% en mobile, breakout solo en desktop */
  width: 100%;
  margin-left: 0;
  line-height: 0;
  font-size: 0;
  position: relative;
  z-index: 1;
  margin-top: -4px;
  margin-bottom: -4px;
  margin-bottom: -2px;
  pointer-events: none;
}
@media (min-width: 1064px){
  .qw-single-locked .qw-wave-div{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}
.qw-single-locked .qw-wave-div svg{
  display: block;
  width: 100%;
  height: clamp(25px, 4vw, 40px);
}


/* ---------------------------------------------------------------------
   4) BLOQUE COMPRA (thumb + precio + meta + helper wizard)
--------------------------------------------------------------------- */
.qw-single-locked .qw-buy{
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto 26px;
  animation: qw-ficha-section-in var(--qwood-speed-reveal, 600ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1)) both;
  animation-delay: .15s;
}
@keyframes qw-ficha-section-in{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}

.qw-single-locked .qw-buy__grid{
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
@media (max-width: 1024px){
  .qw-single-locked .qw-buy__grid{
    grid-template-columns: 44% 1fr;
  }
}
@media (max-width: 768px){
  .qw-single-locked .qw-buy__grid{
    grid-template-columns: 1fr;
  }
  .qw-single-locked .qw-buy__thumb{
    max-width: 400px;
    margin: 0 auto;
  }
}

.qw-single-locked .qw-buy__thumb{
  border-radius: var(--qwood-radius-xl);
  overflow: hidden;
  box-shadow: var(--qwood-shadow-sm);
  background: #fff;
}

.qw-single-locked .qw-buy__thumb img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform var(--qwood-speed-slow, 300ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1));
}
.qw-single-locked .qw-buy__thumb:hover img{
  transform: scale(1.03);
}

/* Wrapper de columna â€” ya no es una card; solo flex/spacing.
   La card unificada vive en .qw-buy__top (audit 2026-05-07 variante A). */
.qw-single-locked .qw-buy__main{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card unificada: precio + detalles + badges (variante A Â· 2026-05-07) */
.qw-single-locked .qw-buy__top{
  background: #ffffff;
  border: none;
  border-radius: var(--qwood-radius-xl);
  box-shadow: var(--qwood-shadow-sm);
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Precio â€” flush dentro de .qw-buy__top, sin card propia */
.qw-single-locked .qw-buy__price{
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: none;
}

.qw-single-locked .qw-buy__amount{
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--qwood-ink);
}

.qw-single-locked .qw-buy__price .amount{
  font-size: 1em !important;
  font-weight: inherit !important;
  color: inherit !important;
}

.qw-single-locked .qw-buy__prefix{
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  color: var(--qwood-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.qw-single-locked .qw-buy__suffix{
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  color: var(--qwood-muted);
  opacity: .72;
}

.qw-single-locked .qw-buy__meta{
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.qw-single-locked .qw-buy__meta-pill{
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-weight: 800;
  font-size: 13px;
  box-shadow: none;
  letter-spacing: .01em;
  color: var(--qwood-ink);
}

/* Wrapper helper â€” transparente, sin estilos. La card visible es la
   .qw-mini-box interna que llena este contenedor (audit 2026-05-07). */
.qw-single-locked .qw-buy__helper{
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* Trust signals â€” bold inline labels con SVG colorido (2026-05-07 variante A).
   Sin pill background, sin hover state, sin emojis: SVG bold filled con color
   brand por categorÃ­a (verde / celeste / Ã¡mbar). */
.qw-single-locked .qw-buy__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}
.qw-single-locked .qw-buy__trust-item{
  font-size: 12px;
  color: #0f172a;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: none;
  cursor: default;
}
.qw-single-locked .qw-buy__trust-item:hover{
  background: transparent;
  transform: none;
  box-shadow: none;
  color: #0f172a;
}
.qw-single-locked .qw-buy__trust-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.qw-single-locked .qw-buy__trust-svg{
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(15,23,42,.10));
}
/* Legacy `.qw-buy__trust-check` (emoji span) â€” mantenido para compat */
.qw-single-locked .qw-buy__trust-check{
  width: auto;
  height: auto;
  display: inline;
  background: transparent;
  color: var(--qwood-color-primary-aa, #1bcf17);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  border-radius: 0;
  flex-shrink: 0;
}

.qw-single-locked .qw-helper-missing{
  border: 1px dashed rgba(255, 90, 90, .45);
  background: rgba(255, 90, 90, .06);
  border-radius: var(--qwood-radius-lg);
  padding: 14px;
  color: #7a2630;
  font-weight: 700;
}


/* ---------------------------------------------------------------------
   5) TABS (DescripciÃ³n / Datos tÃ©cnicos / InstalaciÃ³n / Mantenimiento)
--------------------------------------------------------------------- */
/* Banda celeste full-width con olas (audit 2026-05-07 variante B):
   olas blancas con fill celeste arriba/abajo crean transiciÃ³n continua
   con el flow blanco general. */
/* 2026-05-10 mobile fix: en mobile el container ya es full-width, por lo que
   el patrÃ³n 100vw + calc(50% - 50vw) genera off-by-scrollbar (lÃ­nea blanca a
   la derecha en iOS Safari) cuando el ancho de scrollbar reservado por el
   browser â‰  0. SoluciÃ³n: usar 100% en mobile (parent es 100% de body) y
   reservar el breakout 100vw Ãºnicamente para desktop donde col-full estÃ¡
   limitada a 66.5rem. */
.qw-single-locked .qw-tabs-band{
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 1064px){
  .qw-single-locked .qw-tabs-band{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.qw-single-locked .qw-tabs-wave{
  line-height: 0;
  font-size: 0;
  background: #ffffff;
}
.qw-single-locked .qw-tabs-wave svg{
  width: 100%;
  height: clamp(40px, 5vw, 60px);
  display: block;
}
.qw-single-locked .qw-tabs-wave--bottom svg{
  transform: rotate(180deg);
}

/* 2026-06-30 — Olas celestes consumen el TOKEN de marca (SSOT) en vez de un hex
   fijo. El path inline lleva fill="#4da8d4" (presentation attribute, specificity 0);
   al actualizarse el celeste de marca a --qwood-color-secondary (#0ea5e9) las olas
   dejaron de cuadrar con la banda .qw-tabs y con la transición celeste→verde.
   Driver por CSS para que SIEMPRE igualen al contenedor; el fill inline queda de
   fallback si el CSS no carga. */
.qw-single-locked .qw-tabs-wave--top svg path,
.qw-single-locked .qw-sample-wave--top svg path{
  fill: var(--qwood-color-secondary, #0ea5e9);
}

/* Tabs section: full-width celeste sÃ³lido â€” pills + panes constrained dentro */
.qw-single-locked .qw-tabs{
  width: 100%;
  margin: 0;
  background: var(--qwood-color-secondary, #0ea5e9);
  border-radius: 0;
  box-shadow: none;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 48px) clamp(28px, 4vw, 44px);
  animation: qw-ficha-section-in var(--qwood-speed-reveal, 600ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1)) both;
  animation-delay: .28s;
}

.qw-single-locked .qw-tabs__nav{
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  padding: 6px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  justify-content: center;
  flex-wrap: wrap;
  /* overflow visible para que las sombras de los pills no queden recortadas
     (audit 2026-05-07: con flex-wrap no necesitamos overflow-x:auto). */
  overflow: visible;
  scrollbar-width: none;
}
.qw-single-locked .qw-tabs__nav::-webkit-scrollbar{
  display: none;
}

/* Pills: blancas con texto oscuro (alto contraste sobre celeste).
   Activa: orange luminoso #f97316 (saturado, vibrante como el verde brand). */
.qw-single-locked .qw-tab{
  appearance: none;
  border: none;
  background: #ffffff;
  color: var(--qwood-ink);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(15,23,42,.12);
  transition:
    background var(--qwood-speed, 220ms) var(--qwood-ease),
    color var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    transform var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease);
}

.qw-single-locked .qw-tab__icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
  display: block;
}

.qw-single-locked .qw-tab:hover{
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15,23,42,.18);
}

.qw-single-locked .qw-tab.is-active{
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(249,115,22,.45), 0 4px 14px rgba(249,115,22,.28);
  animation: qw-tab-pop .24s var(--qwood-ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.qw-single-locked .qw-tab.is-active:hover{
  background: #ea580c;
  box-shadow: 0 14px 34px rgba(249,115,22,.55), 0 6px 16px rgba(249,115,22,.34);
}
@keyframes qw-tab-pop{
  from{ transform:scale(.95); }
  to{ transform:scale(1); }
}

.qw-single-locked .qw-tabs__panes{
  max-width: 1120px;
  margin: 22px auto 0;
}

/* Pane integrado en la banda celeste â€” sin card propia, todo blanco contrastado */
.qw-single-locked .qw-pane{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 clamp(0px, 1vw, 12px);
  color: #ffffff;
  line-height: 1.7;
  font-size: 15.5px;
}

.qw-single-locked .qw-pane p{ margin: 0 0 10px; color: #ffffff; }
.qw-single-locked .qw-pane p:last-child{ margin-bottom: 0; }

.qw-single-locked .qw-pane strong,
.qw-single-locked .qw-pane em,
.qw-single-locked .qw-pane h1,
.qw-single-locked .qw-pane h2,
.qw-single-locked .qw-pane h3,
.qw-single-locked .qw-pane h4,
.qw-single-locked .qw-pane h5,
.qw-single-locked .qw-pane h6{
  color: #ffffff;
  font-weight: 900;
}

/* Primer pÃ¡rrafo: bold + leading, sin card propia (la card es el wrapper celeste) */
.qw-single-locked .qw-pane p:first-child{
  margin: 0 0 14px;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 900;
  color: #ffffff;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.qw-single-locked .qw-pane p > strong:first-child{
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  letter-spacing: 0;
  color: #ffffff;
  font-weight: 950;
}

.qw-single-locked .qw-pane ul,
.qw-single-locked .qw-pane ol{
  margin: 10px 0 0;
  padding-left: 1.15rem;
}

.qw-single-locked .qw-pane li{
  margin: 6px 0;
  color: #ffffff;
}
.qw-single-locked .qw-pane li::marker{ color: #ffffff; }

.qw-single-locked .qw-pane a{
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.qw-single-locked .qw-pane a:hover{ color: rgba(255,255,255,.85); }

/* Force ALL svg children (paths, groups con fill attribute, wordmark) a blanco */
.qw-single-locked .qw-pane svg,
.qw-single-locked .qw-pane svg *{
  fill: #ffffff !important;
  stroke: #ffffff !important;
  color: #ffffff !important;
}


/* ---------------------------------------------------------------------
   5.1) TABLA TÃ‰CNICA â€” BOLD GRID
--------------------------------------------------------------------- */
.qw-single-locked .qw-tech{
  display: grid;
  /* `!important` para anular cualquier CSS externo (uploads/qwood/Ficha producto.css)
     que en algÃºn producto puede definir 4 cols y dejar gap visual cuando hay un nÂº
     de filas no mÃºltiplo de 4. Mantenemos 2 cols como autoridad SSOT. */
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
/* Ãšltima fila impar â€” full width (sin gap gris ya, pero respetamos layout) */
.qw-single-locked .qw-tech__row:last-child:nth-child(odd){
  grid-column: 1 / -1 !important;
}

/* Filas tÃ©cnicas â€” transparentes sobre celeste, sin lÃ­neas */
.qw-single-locked .qw-tech__row{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: transparent;
  transition: background var(--qwood-speed-fast, 140ms) var(--qwood-ease);
}

.qw-single-locked .qw-tech__row:hover{
  background: rgba(255,255,255,.08);
  border-radius: 10px;
}

.qw-single-locked .qw-tech__row > span{
  font-size: 11px;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
}

.qw-single-locked .qw-tech__row > strong{
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 480px){
  .qw-single-locked .qw-tech{
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------------------
   6) SOLICITAR MUESTRA
--------------------------------------------------------------------- */
/* Banda full-width verde con olas (audit 2026-05-07: transiciÃ³n celesteâ†’verdeâ†’blanco) */
/* 2026-05-10 mobile fix (mismo patrÃ³n que .qw-tabs-band) */
.qw-single-locked .qw-sample-band{
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 26px;
}
@media (min-width: 1064px){
  .qw-single-locked .qw-sample-band{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.qw-single-locked .qw-sample-wave{
  line-height: 0;
  font-size: 0;
  background: var(--qwood-color-primary, #1bcf17);
}
.qw-single-locked .qw-sample-wave svg{
  width: 100%;
  height: clamp(40px, 5vw, 60px);
  display: block;
}
.qw-single-locked .qw-sample-wave--top svg{
  transform: rotate(180deg);
}

.qw-single-locked .qw-sample{
  width: 100%;
  margin: 0;
  background: var(--qwood-color-primary, #1bcf17);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 48px);
}

.qw-single-locked .qw-sample__inner{
  max-width: 1120px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(16px, 2vw, 26px) !important;

  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.qw-single-locked .qw-sample__icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.20);
}
.qw-single-locked .qw-sample__icon svg{
  width: 32px;
  height: 32px;
  color: #ffffff;
  stroke: #ffffff;
}

.qw-single-locked .qw-sample__inner::before,
.qw-single-locked .qw-sample__inner::after{
  content: none !important;
  display: none !important;
}

.qw-single-locked .qw-sample__copy{
  align-self: center !important;
  display: grid;
  align-content: center;
  min-width: 0;
}

.qw-single-locked .qw-sample__copy h3{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -.01em;
}

.qw-single-locked .qw-sample__copy p{
  margin: 0;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.55;
}

.qw-single-locked .qw-sample__cta{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;

  background: transparent !important;
  background-image: none !important;
}

.qw-single-locked .qw-sample__cta::before,
.qw-single-locked .qw-sample__cta::after{
  content: none !important;
  display: none !important;
}

.qw-single-locked .qw-sample__cta a,
.qw-single-locked .qw-sample__cta a.button,
.qw-single-locked .qw-sample__cta button,
.qw-single-locked .qw-sample__cta button.button,
.qw-single-locked .qw-sample__cta input[type="button"],
.qw-single-locked .qw-sample__cta input[type="submit"],
.qw-single-locked .qw-sample__cta .button,
.qw-single-locked .qw-sample__cta .qw-btn,
.qw-single-locked .qw-sample__cta .qw-btn-sample,
.qw-single-locked .qw-sample__cta .qwood-sw-btn{
  appearance: none !important;
  -webkit-appearance: none !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 14px 26px !important;
  min-height: 50px !important;

  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  font-size: 14px !important;

  background-color: #ffffff !important;
  background-image: none !important;

  border: none !important;
  color: var(--qwood-color-primary-dark, #1bcf17) !important;

  box-shadow: 0 12px 28px rgba(15,23,42,.18), 0 4px 12px rgba(15,23,42,.10) !important;

  opacity: 1 !important;
  filter: none !important;
  transform: none !important;

  transition: transform var(--qwood-tr), box-shadow var(--qwood-tr) !important;
}

.qw-single-locked .qw-sample__cta a:hover,
.qw-single-locked .qw-sample__cta button:hover,
.qw-single-locked .qw-sample__cta input[type="button"]:hover,
.qw-single-locked .qw-sample__cta input[type="submit"]:hover{
  background-color: #ffffff !important;
  background-image: none !important;
  border: none !important;
  color: var(--qwood-color-primary-dark, #1bcf17) !important;
  box-shadow: 0 16px 36px rgba(15,23,42,.24), 0 6px 16px rgba(15,23,42,.14) !important;
  transform: translateY(-2px) !important;
}

.qw-single-locked .qw-sample__cta a:active,
.qw-single-locked .qw-sample__cta button:active,
.qw-single-locked .qw-sample__cta input[type="button"]:active,
.qw-single-locked .qw-sample__cta input[type="submit"]:active{
  background-color: var(--qwood-color-primary) !important;
  transform: translateY(0) scale(.97) !important;
  box-shadow: 0 8px 18px rgba(27,207,23,.16) !important;
}

.qw-single-locked .qw-sample__cta a:focus-visible,
.qw-single-locked .qw-sample__cta button:focus-visible{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(27,207,23,.22), 0 14px 34px rgba(27,207,23,.22) !important;
}

@media (max-width: 780px){
  .qw-single-locked .qw-sample__inner{
    grid-template-columns: 1fr !important;
    justify-items: start;
  }
  .qw-single-locked .qw-sample__cta{
    justify-content: flex-start !important;
  }
}


/* ---------------------------------------------------------------------
   7) RELACIONADOS (cards estilo catÃ¡logo dentro de la ficha)
--------------------------------------------------------------------- */
.qw-single-locked .qw-related{
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto 34px;
}

.qw-single-locked .qw-related h2{
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.4px;
  color: var(--qwood-ink);
}

.qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.qw-single-locked .qw-parquet-card.qw-parquet-card--related{
  background: #ffffff;
  border-radius: var(--qwood-radius-xl);
  border: none;
  box-shadow: 0 14px 34px rgba(2,6,23,0.06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--qwood-tr), box-shadow var(--qwood-tr), border-color var(--qwood-tr);
}

.qw-single-locked .qw-parquet-card.qw-parquet-card--related:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(2,6,23,0.14);
  border-color: rgba(27,207,23,0.22);
}

.qw-single-locked .qw-parquet-media{
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(15,23,42,0.04);
  overflow: hidden;
  line-height: 0;
}

.qw-single-locked .qw-parquet-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--qwood-speed-slow, 300ms) var(--qwood-ease);
}

.qw-single-locked .qw-parquet-card:hover .qw-parquet-media img{
  transform: scale(1.04);
}

.qw-single-locked .qw-parquet-body{
  padding: 1.05rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}

.qw-single-locked .qw-parquet-head{
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qw-single-locked .qw-parquet-title{
  font-size: 14px;
  font-weight: 700;
  margin: .25rem 0 .20rem;
  color: #0f172a;
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.18;
  max-width: 32ch;
  min-width: 0;
}

.qw-single-locked .qw-variants{
  width: 100%;
  display: grid;
  grid-template-columns: 34px 220px 34px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: .55rem;
  padding: .35rem .25rem;
  margin-top: .25rem;
}

.qw-single-locked .qw-var-prev,
.qw-single-locked .qw-var-next{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.16);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
  transition:
    transform var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease),
    border-color var(--qwood-speed, 220ms) var(--qwood-ease),
    opacity var(--qwood-speed, 220ms) var(--qwood-ease),
    background-color var(--qwood-speed, 220ms) var(--qwood-ease),
    color var(--qwood-speed-fast, 140ms) var(--qwood-ease);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 18px;
  font-weight: 950;
  color: rgba(15,23,42,0.88);
}

.qw-single-locked .qw-var-prev:hover,
.qw-single-locked .qw-var-next:hover{
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(27,207,23,0.32);
  box-shadow: 0 16px 38px rgba(2,6,23,0.12);
  background: rgba(27,207,23,0.04);
  color: var(--qwood-color-primary);
}

.qw-single-locked .qw-var-prev[disabled],
.qw-single-locked .qw-var-next[disabled]{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 6px 14px rgba(2,6,23,0.06);
  background: #fff;
  color: rgba(15,23,42,0.55);
}

/* `.qw-single-locked .qw-var-track` legacy â€” eliminado (audit 2026-05-07).
   Era cÃ³digo muerto que forzaba flex+220px y rompÃ­a el carousel de related. */

.qw-single-locked .qw-var-pill{
  width: 100%;
  padding: .50rem .82rem;
  border-radius: 999px;
  border: 1px solid rgba(27,207,23,0.26);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(27,207,23,0.08),
              0 10px 22px rgba(2,6,23,0.06);
  text-align: center;
  font-weight: 900;
  font-size: .86rem;
  line-height: 1.05;
  color: var(--qwood-color-primary-dark, #1bcf17);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}

.qw-single-locked .qw-measures{
  margin-top: .55rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  width: 100%;
}

.qw-single-locked .qw-measure-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .62rem 1.05rem;
  min-height: 2.4rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: rgba(15,23,42,0.86);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow:
    0 6px 16px -6px rgba(15,23,42,.22),
    0 2px 6px -2px rgba(15,23,42,.14);
  transition: transform var(--qwood-tr),
              box-shadow var(--qwood-tr),
              background-color var(--qwood-tr),
              color var(--qwood-tr);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.qw-single-locked .qw-measure-pill:hover{
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px -10px rgba(15,23,42,.26),
    0 4px 10px -4px rgba(15,23,42,.16);
  background: #ffffff;
}

.qw-single-locked .qw-measure-pill.is-active{
  background: var(--qwood-color-primary);
  border-color: rgba(27,207,23,0.45);
  color: #fff;
  box-shadow: 0 16px 36px rgba(27,207,23,0.20),
              0 14px 34px rgba(2,6,23,0.12);
  animation: qw-tab-pop .24s var(--qwood-ease-spring, cubic-bezier(.34,1.56,.64,1));
}

.qw-single-locked .qw-measure-pill.is-disabled,
.qw-single-locked .qw-measure-pill:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.qw-single-locked .qw-parquet-actions{
  margin-top: 1.0rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  overflow: visible;
}

.qw-single-locked .qw-parquet-actions > *{
  max-width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

.qw-single-locked .qw-details-link,
.qw-single-locked a.qw-details-link,
.qw-single-locked .qw-details-link:visited,
.qw-single-locked a.qw-details-link:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem 1.25rem;
  min-height: 2.55rem;
  border-radius: 999px;

  background: var(--qwood-color-primary);
  border: 1px solid rgba(27,207,23,.26);
  color: #fff;

  text-decoration: none;
  font-weight: 950;
  font-size: .82rem;
  line-height: 1;

  opacity: 1;
  visibility: visible;

  box-shadow: 0 12px 26px rgba(27,207,23,.20);
  transition: none;
  transform: none;
  white-space: nowrap;
  max-width: 100%;
}

.qw-single-locked .qw-details-link:hover,
.qw-single-locked a.qw-details-link:hover,
.qw-single-locked .qw-details-link:active,
.qw-single-locked a.qw-details-link:active{
  background: var(--qwood-color-primary);
  border-color: rgba(27,207,23,.26);
  color: #fff;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 12px 26px rgba(27,207,23,.20);
  transform: none;
}


/* ---------------------------------------------------------------------
   8) RESPONSIVE
--------------------------------------------------------------------- */
@media (max-width: 980px){
  .qw-single-locked .qw-buy__grid{ grid-template-columns: 44% 1fr; }
  .qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px){
  .qw-single-locked .qw-buy,
  .qw-single-locked .qw-related{
    width: calc(100% - 16px);
  }

  /* .qw-sample omitido: vive dentro de .qw-sample-band full-bleed (100vw)
     junto a .qw-sample-wave--top/--bottom; achicarlo deja banda blanca lateral.
     2026-05-10 .qw-tabs OMITIDO tambiÃ©n: vive dentro de .qw-tabs-band
     full-bleed (mismo patrÃ³n); con margin:0 + width:calc(100%-16px) se quedaba
     con 12-16px de hueco blanco a la derecha (era la "lÃ­nea blanca a la
     derecha" reportada en mobile). El blue tiene que ocupar todo el band. */

  .qw-single-locked .qw-buy__grid{ grid-template-columns: 1fr; }

  .qw-single-locked .qw-buy__thumb img{ aspect-ratio: 4/3; }

  .qw-single-locked .qw-sample__inner{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .qw-single-locked .qw-sample__cta{
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .qw-single-locked .qw-variants{
    grid-template-columns: 34px 200px 34px;
  }
}


/* ---------------------------------------------------------------------
   9) ACCESIBILIDAD (FOCUS)
--------------------------------------------------------------------- */
.qw-single-locked .qw-tab:focus-visible,
.qw-single-locked .qw-details-link:focus-visible,
.qw-single-locked .qw-var-prev:focus-visible,
.qw-single-locked .qw-var-next:focus-visible,
.qw-single-locked .qw-measure-pill:focus-visible{
  outline: 3px solid rgba(27,207,23,.35);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ==========================================================
   QWOOD â€” FICHA responsive patch mobile small
   Pegar AL FINAL de FICHA.css
   ========================================================== */

.qw-single-locked .qw-buy,
.qw-single-locked .qw-buy__grid,
.qw-single-locked .qw-buy__main,
.qw-single-locked .qw-buy__price,
.qw-single-locked .qw-buy__meta-pill,
.qw-single-locked .qw-hero__subtitle,
.qw-single-locked .qw-tabs__nav,
.qw-single-locked .qw-pane,
.qw-single-locked .qw-parquet-card.qw-parquet-card--related,
.qw-single-locked .qw-parquet-body,
.qw-single-locked .qw-parquet-head,
.qw-single-locked .qw-parquet-title,
.qw-single-locked .qw-variants,
.qw-single-locked .qw-var-track,
.qw-single-locked .qw-var-pill,
.qw-single-locked .qw-measures,
.qw-single-locked .qw-measure-pill,
.qw-single-locked .qw-parquet-actions{
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 780px){

  .qw-single-locked .qw-buy__main{
    border-radius: 20px;
    padding: 14px;
  }

  .qw-single-locked .qw-buy__thumb{
    border-radius: 20px;
  }

  .qw-single-locked .qw-buy__price{
    padding: 11px 12px;
    border-radius: 16px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .qw-single-locked .qw-buy__amount{
    font-size: clamp(17px, 5vw, 24px);
    line-height: 1.1;
  }

  .qw-single-locked .qw-buy__suffix{
    font-size: 11px;
  }

  .qw-single-locked .qw-buy__meta-pill{
    border-radius: 18px;
    padding: 11px 12px;
    line-height: 1.2;
  }

  .qw-single-locked .qw-tabs__nav{
    gap: 8px;
    padding: 8px;
  }

  .qw-single-locked .qw-tab{
    padding: 9px 12px;
    font-size: 13px;
  }

  .qw-single-locked .qw-pane{
    padding: 14px;
    font-size: 14px;
    line-height: 1.62;
    border-radius: 20px;
  }

  .qw-single-locked .qw-pane p:first-child{
    font-size: 15px;
    line-height: 1.58;
    padding-left: 10px;
  }

  .qw-single-locked .qw-tech__row{
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 420px){

  .qw-single-locked .qw-buy,
  .qw-single-locked .qw-related{
    width: calc(100% - 12px);
  }
  /* .qw-sample y .qw-tabs quedan 100% dentro de sus bands full-bleed (ver fix mobile 2026-05-10). */

  .qw-single-locked .qw-buy__thumb{
    border-radius: 18px;
  }

  .qw-single-locked .qw-buy__thumb img{
    aspect-ratio: 1 / .92;
  }

  .qw-single-locked .qw-buy__main{
    padding: 12px;
    border-radius: 18px;
  }

  .qw-single-locked .qw-buy__price{
    padding: 10px 11px;
    border-radius: 15px;
  }

  .qw-single-locked .qw-buy__amount{
    font-size: 15px;
  }

  .qw-single-locked .qw-buy__suffix{
    font-size: 10.5px;
  }

  .qw-single-locked .qw-buy__meta{
    margin-top: 10px;
  }

  .qw-single-locked .qw-buy__meta-pill{
    padding: 10px 11px;
    border-radius: 16px;
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .qw-single-locked .qw-helper-missing{
    padding: 12px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .qw-single-locked .qw-tabs__nav{
    padding: 7px;
    gap: 7px;
    border-radius: 18px;
  }

  .qw-single-locked .qw-tab{
    padding: 8px 11px;
    font-size: 12.5px;
  }

  .qw-single-locked .qw-pane{
    padding: 12px;
    border-radius: 18px;
    font-size: 13.5px;
  }

  .qw-single-locked .qw-pane p:first-child{
    font-size: 14px;
    padding-left: 9px;
  }

  .qw-single-locked .qw-tech__row{
    flex-direction: column;
    gap: 4px;
    padding: 9px 0;
  }

  .qw-single-locked .qw-sample__copy h3{
    font-size: 16px;
  }

  .qw-single-locked .qw-sample__copy p{
    font-size: 13px;
    line-height: 1.4;
  }

  .qw-single-locked .qw-sample__cta{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .qw-single-locked .qw-sample__cta a,
  .qw-single-locked .qw-sample__cta a.button,
  .qw-single-locked .qw-sample__cta button,
  .qw-single-locked .qw-sample__cta button.button,
  .qw-single-locked .qw-sample__cta input[type="button"],
  .qw-single-locked .qw-sample__cta input[type="submit"],
  .qw-single-locked .qw-sample__cta .button,
  .qw-single-locked .qw-sample__cta .qw-btn,
  .qw-single-locked .qw-sample__cta .qw-btn-sample,
  .qw-single-locked .qw-sample__cta .qwood-sw-btn{
    min-height: 40px !important;
    width: 100% !important;
    padding: 9px 12px !important;
    font-size: 12.5px !important;
  }

  .qw-single-locked .qw-related h2{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .qw-single-locked .qw-parquet-card.qw-parquet-card--related{
    border-radius: 22px;
  }

  .qw-single-locked .qw-parquet-media{
    aspect-ratio: 1 / .78;
  }

  .qw-single-locked .qw-parquet-body{
    padding: .9rem .85rem 1rem;
    gap: .28rem;
  }

  .qw-single-locked .qw-parquet-head{
    gap: 6px;
  }

  .qw-single-locked .qw-parquet-title{
    font-size: 1rem;
    line-height: 1.14;
    max-width: 100%;
  }

  .qw-single-locked .qw-variants{
    grid-template-columns: 30px minmax(0,1fr) 30px;
    gap: .4rem;
    width: 100%;
    padding: .25rem 0;
  }

  .qw-single-locked .qw-var-prev,
  .qw-single-locked .qw-var-next{
    width: 30px;
    height: 30px;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(2,6,23,0.08);
  }

  .qw-single-locked .qw-var-track{
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .qw-single-locked .qw-var-pill{
    padding: .52rem .66rem;
    font-size: .78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .qw-single-locked .qw-measures{
    gap: .45rem;
    margin-top: .45rem;
  }

  .qw-single-locked .qw-measure-pill{
    flex: 1 1 calc(50% - .3rem);
    min-width: 0;
    padding: .56rem .78rem;
    min-height: 2.15rem;
    font-size: .8rem;
  }

  .qw-single-locked .qw-parquet-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .85rem;
  }

  .qw-single-locked .qw-parquet-actions > *{
    width: 100%;
    min-width: 0;
  }

  .qw-single-locked .qw-details-link,
  .qw-single-locked a.qw-details-link,
  .qw-single-locked .qw-details-link:visited,
  .qw-single-locked a.qw-details-link:visited{
    min-height: 2.35rem;
    padding: .56rem .8rem;
    font-size: .78rem;
  }
}

@media (max-width: 360px){

  .qw-single-locked .qw-buy__main{
    padding: 10px;
  }

  .qw-single-locked .qw-buy__price{
    padding: 9px 10px;
  }

  .qw-single-locked .qw-buy__amount{
    font-size: 14px;
  }

  .qw-single-locked .qw-buy__meta-pill{
    font-size: 12.5px;
    padding: 9px 10px;
  }

  .qw-single-locked .qw-tab{
    font-size: 12px;
    padding: 7px 10px;
  }

  .qw-single-locked .qw-pane{
    padding: 11px;
    font-size: 13px;
  }

  .qw-single-locked .qw-pane p:first-child{
    font-size: 13.5px;
  }

  .qw-single-locked .qw-parquet-body{
    padding: .82rem .78rem .95rem;
  }

  .qw-single-locked .qw-parquet-title{
    font-size: .96rem;
  }

  .qw-single-locked .qw-var-prev,
  .qw-single-locked .qw-var-next{
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .qw-single-locked .qw-var-pill{
    padding: .5rem .58rem;
    font-size: .74rem;
  }

  .qw-single-locked .qw-measure-pill{
    padding: .52rem .66rem;
    font-size: .76rem;
  }

  .qw-single-locked .qw-details-link,
  .qw-single-locked a.qw-details-link,
  .qw-single-locked .qw-details-link:visited,
  .qw-single-locked a.qw-details-link:visited{
    font-size: .75rem;
    padding: .52rem .7rem;
    min-height: 2.25rem;
  }
}

@media (max-width: 320px){

  .qw-single-locked .qw-buy,
  .qw-single-locked .qw-related{
    width: calc(100% - 12px);
  }
  /* .qw-sample y .qw-tabs quedan 100% dentro de sus bands full-bleed (ver fix mobile 2026-05-10). */

  .qw-single-locked .qw-buy__amount{
    font-size: 13.5px;
  }

  .qw-single-locked .qw-buy__suffix{
    font-size: 10px;
  }

  .qw-single-locked .qw-buy__meta-pill{
    font-size: 12px;
  }

  .qw-single-locked .qw-tab{
    font-size: 11.5px;
    padding: 7px 9px;
  }

  .qw-single-locked .qw-pane{
    font-size: 12.5px;
  }

  .qw-single-locked .qw-pane p:first-child{
    font-size: 13px;
  }

  .qw-single-locked .qw-var-pill{
    font-size: .7rem;
  }

  .qw-single-locked .qw-measure-pill{
    font-size: .72rem;
  }

  .qw-single-locked .qw-details-link,
  .qw-single-locked a.qw-details-link,
  .qw-single-locked .qw-details-link:visited,
  .qw-single-locked a.qw-details-link:visited{
    font-size: .72rem;
  }
}

/* ---------------------------------------------------------------------
   QWOOD - Ficha global refactor 2026-03-11
   Refuerza superficies solidas, pills consistentes y mobile safe.
--------------------------------------------------------------------- */
.qw-single-locked .qw-parquet-card.qw-parquet-card--related{
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 14px 32px rgba(15,23,42,0.06);
}

.qw-single-locked .qw-parquet-card.qw-parquet-card--related:hover{
  box-shadow: 0 18px 42px rgba(15,23,42,0.10);
}

.qw-single-locked .qw-parquet-media{
  background: #ffffff;
}

.qw-single-locked .qw-var-pill{
  background: #ffffff;
  border-color: rgba(27,207,23,0.18);
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.qw-single-locked .qw-measure-pill.is-active{
  border-color: rgba(27,207,23,0.58);
  box-shadow: 0 14px 30px rgba(27,207,23,0.18);
}

.qw-single-locked .qw-sample__cta a,
.qw-single-locked .qw-sample__cta a.button,
.qw-single-locked .qw-sample__cta button,
.qw-single-locked .qw-sample__cta button.button,
.qw-single-locked .qw-sample__cta input[type="button"],
.qw-single-locked .qw-sample__cta input[type="submit"],
.qw-single-locked .qw-sample__cta .button,
.qw-single-locked .qw-sample__cta .qw-btn,
.qw-single-locked .qw-sample__cta .qw-btn-sample,
.qw-single-locked .qw-sample__cta .qwood-sw-btn{
  box-shadow: 0 14px 30px rgba(27,207,23,0.18) !important;
}

@media (max-width: 780px){
  .qw-single-locked .qw-variants{
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: .45rem;
  }

  .qw-single-locked .qw-var-track{
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .qw-single-locked .qw-var-pill{
    white-space: normal;
  }

  .qw-single-locked .qw-parquet-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .qw-single-locked .qw-parquet-actions > *{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px){
  .qw-single-locked .qw-parquet-actions{
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   QWOOD - Ficha producto polish 2026-03-12
   ===================================================================== */
.qw-single-locked .qw-buy__grid{
  gap: 22px;
}

/* Sombra solo en related cards â€” main es wrapper transparente, price es flush
   dentro de qw-buy__top (audit 2026-05-07: usuario quitÃ³ el card-look del padre). */
.qw-single-locked .qw-parquet-card.qw-parquet-card--related{
  box-shadow: 0 16px 38px rgba(15,23,42,.08);
}

@media (max-width: 780px){

  .qw-single-locked .qw-related{
    margin-top: 24px;
  }

  .qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
    gap: 14px;
  }
}

/* Legacy hero-mini block removed â€” replaced by full-width hero (section 3) */

/* ---------------------------------------------------------------------
   ACCESSIBILITY: prefers-reduced-motion
--------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  .qw-single-locked .qw-hero{
    animation: none;
  }
  .qw-single-locked .qw-buy{
    animation: none;
  }
  .qw-single-locked .qw-tabs{
    animation: none;
  }
  .qw-single-locked .qw-wave-div{
    animation: none;
  }
  .qw-single-locked .qw-buy__thumb:hover img{
    transform: none;
  }
  .qw-single-locked .qw-parquet-card:hover .qw-parquet-media img{
    transform: none;
  }
}

/* =====================================================================
   RELATED CARDS â€” IGUALAR LOOK CATÃLOGO (2026-04-08)
   =====================================================================
   El user pidiÃ³ que las cards de "Otros parquÃ©s que pueden interesarte"
   usen el MISMO diseÃ±o que las cards del catÃ¡logo (catalog.css â†’ reglas
   bajo body.qwood-catalog-parquets-page .qw-parquet-card). Como esos
   selectores son especÃ­ficos del catalog page, replicamos las propiedades
   clave aquÃ­, scoped a .qw-single-locked .qw-parquet-card--related, con
   suficiente especificidad para ganar el cascade vs. los estilos previos
   del bloque "7) RELACIONADOS".
   ===================================================================== */
.qw-single-locked .qw-parquet-card.qw-parquet-card--related{
  position: relative; /* igual que .qw-parquet-card--catalog */
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border-radius: 24px;
  /* Border usa el mismo tono sutil que el catÃ¡logo (var no disponible en ficha, hardcodeamos) */
  border: none;
  box-shadow: 0 4px 18px rgba(15,23,42,.06), 0 1px 4px rgba(15,23,42,.04);
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(.2,.8,.2,1),
    box-shadow 220ms cubic-bezier(.2,.8,.2,1),
    border-color 220ms cubic-bezier(.2,.8,.2,1);
}

.qw-single-locked .qw-parquet-card.qw-parquet-card--related:hover{
  transform: translateY(-5px);
  border-color: rgba(27,207,23,0.28);
  box-shadow:
    0 18px 42px rgba(27,207,23,0.12),
    0 0 0 1px rgba(27,207,23,0.08),
    0 0 24px rgba(27,207,23,0.10);
}

/* Media: aspect-ratio 3/2, fondo blanco, img cover absoluta */
.qw-single-locked .qw-parquet-card--related .qw-parquet-media{
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #fff;
  line-height: 0;
  font-size: 0;
}
.qw-single-locked .qw-parquet-card--related .qw-parquet-media::after{
  display: none;
}
.qw-single-locked .qw-parquet-card--related .qw-parquet-media img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0;
  padding: 0;
  max-width: none;
  transform: scale(1);
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}
.qw-single-locked .qw-parquet-card--related:hover .qw-parquet-media img{
  transform: scale(1.04);
}

/* Body: mismo padding que catÃ¡logo (1.1/1.1/1.2) */
.qw-single-locked .qw-parquet-card--related .qw-parquet-body{
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .85rem;
  padding: 1.1rem 1.1rem 1.2rem;
}

/* Wave separator entre imagen y body â€” overlap upward, no gap */
.qw-single-locked .qw-parquet-card--related .qw-parquet-body::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -27px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 30' preserveAspectRatio='none'%3E%3Cpath d='M0,18 C80,28 160,6 240,16 C310,24 370,10 400,14 L400,30 L0,30Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
}

/* Title: centrado, mayor tamaÃ±o, weight 900 */
.qw-single-locked .qw-parquet-card--related .qw-parquet-head{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qw-single-locked .qw-parquet-card--related .qw-parquet-title{
  font-size: 1.18rem;
  font-weight: 900;
  margin: 0;
  color: #0f172a;
  letter-spacing: -.01em;
  text-align: center;
  line-height: 1.18;
  max-width: 100%;
  min-width: 0;
}

/* Botones medida: rectangulares limpios, no oval del Storefront */
.qw-single-locked .qw-parquet-card--related .qw-measures{
  margin-top: .35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  width: 100%;
}
.qw-single-locked .qw-parquet-card--related button.qw-measure-pill,
.qw-single-locked .qw-parquet-card--related .qw-measure-pill{
  flex: 1 1 auto;
  min-width: 0;
  padding: .65rem .9rem !important;
  min-height: 2.4rem;
  border-radius: 12px !important;
  border: 1.5px solid rgba(15,23,42,0.10);
  background: #fff;
  color: rgba(15,23,42,0.86);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-sizing: border-box;
}
.qw-single-locked .qw-parquet-card--related .qw-measure-pill[aria-pressed="true"],
.qw-single-locked .qw-parquet-card--related .qw-measure-pill.is-active{
  background: #1bcf17;
  border-color: #1bcf17;
  color: #fff;
}

/* AcciÃ³n "Ver" â€” botÃ³n rectangular outline, no oval del Storefront */
.qw-single-locked .qw-parquet-card--related .qw-parquet-actions{
  display: flex;
  justify-content: center;
  margin-top: .35rem;
}
.qw-single-locked .qw-parquet-card--related a.qw-details-link,
.qw-single-locked .qw-parquet-card--related .qw-details-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: .7rem 1.6rem !important;
  min-height: 2.6rem;
  border-radius: 14px !important;
  border: 1.5px solid rgba(15,23,42,0.12);
  background: #fff;
  color: #0f172a;
  font-weight: 900;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  box-sizing: border-box;
}
.qw-single-locked .qw-parquet-card--related a.qw-details-link:hover,
.qw-single-locked .qw-parquet-card--related .qw-details-link:hover{
  border-color: #1bcf17;
  background: #1bcf17;
  color: #fff;
  transform: translateY(-1px);
}

/* Variants navigation: centrar el track */
.qw-single-locked .qw-parquet-card--related .qw-variants{
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  justify-items: center;
  gap: .55rem;
  padding: .25rem 0;
  margin: 0;
}
.qw-single-locked .qw-parquet-card--related .qw-var-track{
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.qw-single-locked .qw-parquet-card--related .qw-var-pill{
  width: auto;
  padding: .5rem 1rem;
}

/* Mobile: 1 columna en <=640 (igual que catÃ¡logo), 2 columnas en 641-960 */
@media (max-width: 640px){
  .qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}
@media (min-width: 641px) and (max-width: 960px){
  .qw-single-locked .qw-parquet-grid.qw-parquet-grid--related{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   PDP â€” secondary contact CTA "Dudas antes de comprar" (2026-04-19)
   ============================================================
   Editorial-tight: compact padding, left-accent stripe, WA text
   forced white via anchor-level specificity (beats the theme's
   `.qw-btn` / `a` default link color that otherwise rendered as
   dark grey). Placed after the wizard helper in `.qw-buy__main`.
   ============================================================ */
.qw-single-locked .qw-buy__help {
  margin-top: 12px;
  padding: 10px 14px 10px 12px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(16,32,51,.05);
}
.qw-single-locked .qw-buy__help-msg {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  color: #0f172a;
  line-height: 1.35;
}
.qw-single-locked .qw-buy__help-msg svg { color: #1bcf17; flex: 0 0 auto; }
.qw-single-locked .qw-buy__help-msg strong { font-weight: 900; }
.qw-single-locked .qw-buy__help-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.qw-single-locked .qw-buy__help-wa,
.qw-single-locked .qw-buy__help-form,
.qw-single-locked a.qw-buy__help-wa,
.qw-single-locked a.qw-buy__help-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1.5px solid #1bcf17;
  line-height: 1;
  box-shadow: none;
}
.qw-single-locked .qw-buy__help-wa,
.qw-single-locked a.qw-buy__help-wa,
.qw-single-locked a.qw-buy__help-wa:visited {
  background: #1bcf17;
  color: #ffffff !important;
}
.qw-single-locked .qw-buy__help-wa:hover,
.qw-single-locked .qw-buy__help-wa:focus-visible,
.qw-single-locked a.qw-buy__help-wa:hover,
.qw-single-locked a.qw-buy__help-wa:focus-visible {
  background: #1bcf17;
  border-color: #1bcf17;
  color: #ffffff !important;
  outline: none;
}
.qw-single-locked .qw-buy__help-wa svg,
.qw-single-locked a.qw-buy__help-wa svg {
  flex: 0 0 auto;
  fill: #ffffff;
  color: #ffffff;
}
.qw-single-locked .qw-buy__help-form,
.qw-single-locked a.qw-buy__help-form,
.qw-single-locked a.qw-buy__help-form:visited {
  background: #ffffff;
  color: #1bcf17 !important;
}
.qw-single-locked .qw-buy__help-form:hover,
.qw-single-locked .qw-buy__help-form:focus-visible,
.qw-single-locked a.qw-buy__help-form:hover,
.qw-single-locked a.qw-buy__help-form:focus-visible {
  background: rgba(27,207,23, 0.06);
  color: #1bcf17 !important;
  outline: none;
}

@media (max-width: 640px) {
  .qw-single-locked .qw-buy__help-buttons { flex-direction: column; }
  .qw-single-locked .qw-buy__help-wa,
  .qw-single-locked .qw-buy__help-form { width: 100%; }
}

/* =====================================================================
   WATERMARKS DECORATIVOS â€” FICHA PRODUCTO (PDP)
   Adaptados al color de bloque (audit 2026-05-07).
   - Pino TL + Hoja curvada BR por secciÃ³n
   - bg-color heredado vÃ­a currentColor â†’ cada bloque define su propio tinte
   - Posicionados mÃ¡s allÃ¡ del padding de las cards para que no queden
     ocultos detrÃ¡s de los cards blancos opacos
   - Solo desktop (â‰¥768px)
   ===================================================================== */
.qw-single-locked {
  /* Pino: sin cambio (silueta clara, funciona) */
  --qw-wm-pino: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cg fill='black'%3E%3Cpolygon points='50,5 28,42 38,42 18,80 32,80 8,125 92,125 68,80 82,80 62,42 72,42'/%3E%3Crect x='44' y='125' width='12' height='15'/%3E%3C/g%3E%3C/svg%3E");
  /* Hoja con CURVATURA REAL â€” almendra puntiaguda + tallito + vena central */
  --qw-wm-hoja-2: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cg fill='black'%3E%3Cpath d='M50,5 C72,18 88,42 88,72 C86,102 72,124 50,134 C28,124 14,102 12,72 C12,42 28,18 50,5 Z'/%3E%3Cpath d='M48,8 L48,132 L52,132 L52,8 Z'/%3E%3Cpath d='M50,40 C42,46 36,55 32,66 L36,68 C40,58 46,50 52,46 Z'/%3E%3Cpath d='M50,40 C58,46 64,55 68,66 L64,68 C60,58 54,50 48,46 Z'/%3E%3Cpath d='M50,75 C40,82 32,92 26,108 L30,110 C36,98 44,90 52,84 Z'/%3E%3Cpath d='M50,75 C60,82 68,92 74,108 L70,110 C64,98 56,90 48,84 Z'/%3E%3C/g%3E%3C/svg%3E");
  --qw-wm-montana-2: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 90'%3E%3Cg fill='black'%3E%3Cpolygon points='0,88 28,28 48,55 75,8 105,42 130,22 150,88'/%3E%3C/g%3E%3C/svg%3E");
}

/* Base shared. Color heredado vÃ­a currentColor: cada bloque define su tinte. */
.qw-single-locked .qw-buy::before,
.qw-single-locked .qw-buy::after,
.qw-single-locked .qw-related::before,
.qw-single-locked .qw-related::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: currentColor;
  opacity: .12;
}

/* Tinte del watermark por bloque â€” currentColor lo recibe el ::before/::after.
   Ink oscuro en lugar de verde para mejor contraste sobre fondos blancos. */
.qw-single-locked .qw-buy,
.qw-single-locked .qw-related {
  position: relative;
  color: var(--qwood-ink, #0f172a);
}

/* qw-buy::before (pino TL) ELIMINADO â€” siempre se solapa con el thumb image (audit 2026-05-07).
   Solo dejamos hoja BR en el margen derecho del buy (no toca contenido). */
.qw-single-locked .qw-buy::before { display: none; }
.qw-single-locked .qw-buy::after {
  right: -200px; bottom: -40px;
  width: 200px; height: 270px;
  mask-image: var(--qw-wm-hoja-2);
  -webkit-mask-image: var(--qw-wm-hoja-2);
  transform: rotate(15deg);
}

/* Related: pino y montaÃ±a en el MARGEN exterior (las cards ocupan todo el width
   interno, asÃ­ que los watermarks viven fuera del wrapper). */
.qw-single-locked .qw-related::before {
  left: -200px; top: 30px;
  width: 200px; height: 260px;
  mask-image: var(--qw-wm-pino);
  -webkit-mask-image: var(--qw-wm-pino);
  transform: rotate(-8deg);
}
.qw-single-locked .qw-related::after {
  right: -280px; bottom: 80px;
  width: 280px; height: 170px;
  mask-image: var(--qw-wm-montana-2);
  -webkit-mask-image: var(--qw-wm-montana-2);
  transform: rotate(2deg);
}

/* Ocultar en mobile â€” no hay espacio lateral suficiente */
@media (max-width: 767px) {
  .qw-single-locked .qw-buy::before,
  .qw-single-locked .qw-buy::after,
  .qw-single-locked .qw-related::before,
  .qw-single-locked .qw-related::after {
    display: none;
  }
}

/* ============================================================
   Related cards en ficha - CSS replicado del catalogo
   (audit 2026-05-07) ============================================================ */
.qw-single-locked .qw-related .qwood-catalog-banner,
.qw-single-locked .qw-related .qw-catalog-head,
.qw-single-locked .qw-related .qw-parquet-grid{
  position:relative;
  z-index:1;
}

.qw-single-locked .qw-related .qw-parquet-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1.5rem;
  margin:0 0 2rem;
}

.qw-single-locked .qw-related .qw-parquet-card{
  position:relative;
  min-width:0;
  display:grid;
  grid-template-rows:auto 1fr;
  background:#ffffff;
  border-radius:24px;
  border:none;
  box-shadow:var(--qwood-shadow-soft);
  overflow:hidden;
  transition:
    transform var(--qwood-speed, 220ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1)),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1)),
    border-color var(--qwood-speed, 220ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1));
}

.qw-single-locked .qw-related .qw-parquet-card:hover{
  transform:translateY(-5px);
  border-color:rgba(27,207,23,.28);
  box-shadow:
    0 18px 42px rgba(27,207,23,.12),
    0 0 0 1px rgba(27,207,23,.08),
    0 0 24px rgba(27,207,23,.10);
}

.qw-single-locked .qw-related .qw-parquet-media{
  position:relative;
  display:block;
  width:100%;
  overflow:hidden;
  aspect-ratio:3/2;
  background:#fff;
  line-height:0;
  font-size:0;
}

.qw-single-locked .qw-related .qw-parquet-media::after{ display:none; }

.qw-single-locked .qw-related .qw-parquet-media img{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  border:0 !important;
  border-radius:0 !important;
  margin:0;
  padding:0;
  max-width:none;
  transform:scale(1);
  transition:transform var(--qwood-speed-slow, 300ms) var(--qwood-ease, cubic-bezier(.2,.8,.2,1));
}

.qw-single-locked .qw-related .qw-parquet-card:hover .qw-parquet-media img{
  transform:scale(1.04);
}

.qw-single-locked .qw-related .qw-parquet-body{
  position:relative;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.85rem;
  padding:1.1rem 1.1rem 1.2rem;
}

.qw-single-locked .qw-related .qw-parquet-body::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-27px;
  height:28px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 30' preserveAspectRatio='none'%3E%3Cpath d='M0,18 C80,28 160,6 240,16 C310,24 370,10 400,14 L400,30 L0,30Z' fill='white'/%3E%3C/svg%3E");
  background-size:100% 100%;
  pointer-events:none;
  z-index:2;
}

.qw-single-locked .qw-related .qw-parquet-head{
  display:grid;
  gap:.4rem;
  align-items:start;
  justify-items:center;
  text-align:center;
}

.qw-single-locked .qw-related .qw-parquet-title{
  margin:0;
  min-width:0;
  color:var(--qwood-color-text);
  font-size:1.08rem;
  line-height:1.25;
  font-weight:900;
  text-align:center;
  text-wrap:balance;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.qw-single-locked .qw-related .qw-parquet-price{
  display:flex;
  align-items:baseline;
  justify-content:center;
  min-height:1.5rem;
  margin:0;
  text-align:center;
}

.qw-single-locked .qw-related .qw-parquet-price--visible{
  display:inline-flex;
  align-items:baseline;
  gap:.2rem;
  min-width:0;
  padding:0;
  border-radius:0;
  background:transparent;
  color:var(--qwood-color-text-strong, #0f172a);
  font-size:clamp(15px, .55vw + 13px, 18px);
  font-weight:900;
  line-height:1.1;
  letter-spacing:-.01em;
  white-space:nowrap;
}

.qw-single-locked .qw-related .qw-parquet-price--visible .amount,
.qw-single-locked .qw-related .qw-parquet-price .amount{
  font-weight:900;
  color:var(--qwood-color-text-strong, #0f172a);
}

.qw-single-locked .qw-related .qw-parquet-price--visible small,
.qw-single-locked .qw-related .qw-parquet-price--visible .qw-price-unit{
  font-size:.78em;
  font-weight:900;
  opacity:1;
  color:var(--qwood-color-text-strong, #0f172a);
  letter-spacing:.01em;
}

.qw-single-locked .qw-related .qw-measures{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  width:100%;
  margin:0;
}

.qw-single-locked .qw-related .qw-measure-pill{
  flex:1 1 calc(50% - .28rem);
  min-width:0;
  min-height:2.5rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.72rem .9rem;
  border-radius:var(--qwood-radius-pill);
  border:none;
  background:#fff;
  color:rgba(15,23,42,.86);
  font-size:.89rem;
  font-weight:900;
  letter-spacing:.01em;
  text-align:center;
  line-height:1.12;
  white-space:normal;
  word-break:keep-all;
  overflow-wrap:normal;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(15,23,42,.055);
  transition:
    transform var(--qwood-speed, 220ms) var(--qwood-ease),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease),
    background-color var(--qwood-speed, 220ms) var(--qwood-ease),
    color var(--qwood-speed-fast, 140ms) var(--qwood-ease);
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.qw-single-locked .qw-related .qw-measure-pill:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(15,23,42,.088);
  background:rgba(27,207,23,.04);
}

.qw-single-locked .qw-related .qw-measure-pill:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--qwood-color-primary-ring), 0 12px 26px rgba(15,23,42,.08);
}

.qw-single-locked .qw-related .qw-measure-pill.is-active{
  background:var(--qwood-color-primary);
  color:#fff;
  box-shadow:0 8px 20px rgba(27,207,23,.22), 0 0 16px rgba(27,207,23,.15);
  animation:qw-pill-pop .26s var(--qwood-ease-spring, cubic-bezier(.34,1.56,.64,1));
}

.qw-single-locked .qw-related .qw-measure-pill.is-disabled,
.qw-single-locked .qw-related .qw-measure-pill:disabled{
  opacity:.45;
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}

.qw-single-locked .qw-related .qw-measure-panel{ width:100%; }

.qw-single-locked .qw-related .qw-variants{
  width:100%;
  display:grid;
  grid-template-columns:36px minmax(0,1fr) 36px;
  align-items:center;
  gap:8px;
  margin:0;
}

.qw-single-locked .qw-related .qw-var-prev,
.qw-single-locked .qw-related .qw-var-next{
  width:36px;
  height:36px;
  padding:0;
  border-radius:999px;
  border:none;
  background:#fff;
  color:rgba(15,23,42,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-size:18px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(15,23,42,.066);
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
  transition:
    transform var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease),
    color var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    opacity var(--qwood-speed, 220ms) var(--qwood-ease);
}

.qw-single-locked .qw-related .qw-var-prev:hover,
.qw-single-locked .qw-related .qw-var-next:hover{
  transform:translateY(-2px) scale(1.06);
  color:var(--qwood-color-primary);
  box-shadow:0 14px 28px rgba(15,23,42,.11);
}

.qw-single-locked .qw-related .qw-var-prev[disabled],
.qw-single-locked .qw-related .qw-var-next[disabled]{
  opacity:.42;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

.qw-single-locked .qw-related .qw-var-prev:focus-visible,
.qw-single-locked .qw-related .qw-var-next:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--qwood-color-primary-ring);
}

.qw-single-locked .qw-related .qw-var-track{
  min-width:0;
  /* `overflow:clip` + `overflow-clip-margin` evita el corte de sombra del pill
     mientras seguimos clippeando los slides off-screen del carousel. */
  overflow:clip;
  overflow-clip-margin:18px;
}

.qw-single-locked .qw-related .qw-var-pill{
  width:100%;
  min-width:0;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:.66rem .84rem;
  border-radius:999px;
  border:none;
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.066);
  color:rgba(15,23,42,.88);
  text-align:center;
  font-weight:900;
  font-size:.88rem;
  line-height:1.18;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.qw-single-locked .qw-related .qw-var-pill.is-active{
  background:#fff;
  box-shadow:0 10px 24px rgba(27,207,23,.14);
  color:var(--qwood-color-primary-dark, #1bcf17);
}

.qw-single-locked .qw-related .qw-parquet-actions{
  margin-top:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  width:100%;
}

.qw-single-locked .qw-related .qw-parquet-actions > *{
  min-width:0;
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.78rem .95rem;
  border-radius:var(--qwood-radius-pill);
  text-decoration:none;
  line-height:1;
  font-size:.84rem;
  font-weight:900;
  transition:
    transform var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    box-shadow var(--qwood-speed, 220ms) var(--qwood-ease),
    background-color var(--qwood-speed, 220ms) var(--qwood-ease),
    color var(--qwood-speed-fast, 140ms) var(--qwood-ease),
    border-color var(--qwood-speed, 220ms) var(--qwood-ease);
}

.qw-single-locked .qw-related .qw-btn-sample{
  background:var(--qwood-color-primary) !important;
  color:#fff !important;
  border:none !important;
  box-shadow:0 8px 20px rgba(27,207,23,.20), 0 0 14px rgba(27,207,23,.12) !important;
}

.qw-single-locked .qw-related .qw-btn-sample:hover{
  background:var(--qwood-color-primary-dark) !important;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(27,207,23,.28), 0 0 20px rgba(27,207,23,.18) !important;
}

.qw-single-locked .qw-related .qw-btn-sample:active{
  transform:translateY(0) scale(.97);
  box-shadow:0 8px 18px rgba(27,207,23,.16) !important;
}

.qw-single-locked .qw-related .qw-btn-sample:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(27,207,23,.28), 0 14px 30px rgba(27,207,23,.18) !important;
}

.qw-single-locked .qw-related .qw-details-link,
.qw-single-locked .qw-related a.qw-details-link{
  background:#ffffff !important;
  color:rgba(15,23,42,.86) !important;
  border:none !important;
  box-shadow:0 10px 24px rgba(15,23,42,.066) !important;
}

.qw-single-locked .qw-related .qw-details-link:hover{
  background:rgba(27,207,23,.05) !important;
  border-color:rgba(27,207,23,.30) !important;
  color:var(--qwood-color-primary-dark) !important;
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,.099) !important;
}

.qw-single-locked .qw-related .qw-details-link:active{
  transform:translateY(0) scale(.97);
  box-shadow:0 6px 14px rgba(15,23,42,.06) !important;
}

.qw-single-locked .qw-related .qw-details-link:focus-visible{
  outline:none !important;
  border-color:var(--qwood-color-primary) !important;
  box-shadow:0 0 0 3px var(--qwood-color-primary-ring), 0 10px 24px rgba(15,23,42,.06) !important;
}

/* Related en ficha: solo botÃ³n "Ver" (sin "Muestra" porque ya hay sample CTA arriba)
   â†’ grid de acciones colapsa a 1 columna y se centra. */
.qw-single-locked .qw-related .qw-parquet-actions{
  grid-template-columns: 1fr !important;
  justify-items: center !important;
}
.qw-single-locked .qw-related .qw-parquet-actions > *{
  width: 100%;
  max-width: 220px;
}

/* `.qw-var-pill` declara display:flex con especificidad 0,3,0 â€” gana al
   user-agent `[hidden]{display:none}`. Forzamos hide para que el JS del
   carousel funcione (pone hidden=true en pills no-activas). */
.qw-single-locked .qw-related .qw-var-pill[hidden]{
  display: none !important;
}

