/* ==========================================================================
   PROS FC
   Estructura de venta de las tiendas de boosting que más facturan (arte grande
   a la izquierda, configurador a la derecha) con la identidad del escudo de
   PROS FC: azul petróleo casi negro, verde esmeralda y plata.
   Tema oscuro único y deliberado: todo color se pinta explícito.
   Colores, cabecera y pie están en base.css (compartidos con el resto de páginas).
   ========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--bg); color: var(--silver);
  font-family: var(--sans); font-size: 15.5px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }  /* height:auto: las imágenes llevan width/height en el HTML y sin esto se deforman */
[hidden] { display: none !important; }  /* .price-was tiene display:block; sin esto el atributo hidden no gana */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
/* Los títulos toman color, fuente e interlineado de su bloque, explícito. En prosfc.com la «CSS crítica» de LiteSpeed
   (en ordenador) se generó con la portada de Blocksy y trae `h1, h2 { color: #192a3d; font-family: …sistema }`: como aquí
   no se les ponía color, esa regla ganaba a la herencia y los títulos salían en azul oscuro. */
h1, h2, h3, h4, h5, h6 { color: inherit; font-family: inherit; line-height: inherit; }
:focus-visible { outline: 2px solid var(--em-hi); outline-offset: 3px; border-radius: 8px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: clamp(16px, 4vw, 36px); }  /* --wrap en base.css */

/* ---------------- héroe ---------------- */
.hero { position: relative; padding: clamp(18px, 3vw, 34px) 0 clamp(28px, 4vw, 44px); }
.hero::before {
  content: ""; position: absolute; inset: -70px 0 auto; height: 620px; pointer-events: none;
  background: radial-gradient(60% 70% at 30% 0%, rgba(24,168,120,.16), rgba(5,12,18,0) 70%);
}
.hero-head { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 30px; margin-bottom: clamp(16px, 2.4vw, 24px); }
.hero h1 { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(28px, 5vw, 50px); line-height: 1.06; letter-spacing: -.035em; text-wrap: balance; }
.rating { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--dim); }
.stars { display: flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: var(--em-hi); }
.stars svg.off { color: rgba(255,255,255,.16); }
.rating b { color: var(--silver); font-weight: 600; }

.hero-grid { position: relative; display: grid; gap: 16px; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 18px; align-items: stretch; } }

/* --- el arte --- */
.art {
  position: relative; overflow: hidden; border-radius: var(--r);
  min-height: clamp(380px, 92vw, 620px); border: 1px solid var(--line);
  /* mismo color que los bordes del render, para que al encogerlo no se vea la costura */
  background: linear-gradient(180deg, #000C13, #010508);
  isolation: isolate;
}
/* El escudo llenaba el cuadro y la reseña le tapaba la «C»: se encoge y se sube,
   dejando aire abajo para las cifras y la reseña. */
.art-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: -1;
  animation: float 7s ease-in-out infinite;
  /* los bordes del render se funden con el fondo: sin esto se ve el recuadro */
  -webkit-mask-image: radial-gradient(50% 50% at 50% 50%, #000 70%, transparent 100%);
          mask-image: radial-gradient(50% 50% at 50% 50%, #000 70%, transparent 100%);
  /* un escudo por rango, apilados; el elegido se funde con el anterior */
  opacity: 0; transition: opacity .45s ease;
}
.art-img.is-on { opacity: 1; }
@keyframes float { 0%,100% { transform: translate(3%, -9%) scale(.76); } 50% { transform: translate(3%, -10.5%) scale(.775); } }
/* la insignia de Draft llena más el encuadre que el escudo: va más pequeña y más alta para que la reseña no tape el «WIN» */
@keyframes float-d { 0%,100% { transform: translateY(-12%) scale(.7); } 50% { transform: translateY(-13.5%) scale(.715); } }
.art-draft .art-img { animation-name: float-d; }
/* emblema de Rivals (uno por división): un poco más abajo para que las etiquetas no le pisen la esquina del triángulo */
@keyframes float-r { 0%,100% { transform: translateY(2.5%) scale(1); } 50% { transform: translateY(1%) scale(1.015); } }
.art-rivals .art-img { animation-name: float-r; }
.art::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(75% 70% at 50% 40%, rgba(1,5,8,0) 55%, rgba(1,5,8,.9) 100%),
  linear-gradient(180deg, rgba(1,5,8,0) 60%, rgba(1,5,8,.9) 100%); }

.tags { position: absolute; top: clamp(14px, 2.4vw, 22px); left: clamp(14px, 2.4vw, 22px); display: grid; gap: 7px; justify-items: start; }
.tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 10px; background: rgba(5,12,18,.62); backdrop-filter: blur(10px); border: 1px solid var(--line-2); font-size: 13px; font-weight: 600; }
.tag svg { width: 15px; height: 15px; color: var(--em-hi); }

.review {
  position: absolute; right: clamp(12px, 2.4vw, 22px); bottom: clamp(12px, 2.4vw, 22px);
  width: min(300px, calc(100% - 24px)); padding: 16px 17px; border-radius: 14px;
  background: rgba(8,20,29,.78); backdrop-filter: blur(14px); border: 1px solid var(--line-2);
}
.review .stars svg { width: 14px; height: 14px; }
.review p { margin: 9px 0 10px; font-size: 13.5px; line-height: 1.5; color: var(--silver); }
.review-by { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12.5px; color: var(--dim); }
.review-by b { color: var(--silver); font-weight: 600; }
.verified { display: inline-flex; align-items: center; gap: 5px; color: var(--em-hi); font-weight: 600; }
.verified svg { width: 13px; height: 13px; }

.art-stats { position: absolute; left: clamp(14px, 2.4vw, 22px); bottom: clamp(16px, 2.6vw, 26px); display: none; gap: 26px; }
.art-stats div { font-size: 12.5px; color: var(--dim); line-height: 1.3; }
.art-stats b { display: block; font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--silver); letter-spacing: -.03em; }
@media (min-width: 680px) { .art-stats { display: flex; } }
@keyframes float-m { 0%,100% { transform: translateY(6%) scale(.9); } 50% { transform: translateY(4.5%) scale(.915); } }
@keyframes float-dm { 0%,100% { transform: translateY(2%) scale(.8); } 50% { transform: translateY(.5%) scale(.815); } }
@keyframes float-rm { 0%,100% { transform: translateY(9%) scale(.98); } 50% { transform: translateY(7.5%) scale(.995); } }
@media (max-width: 679px) {
  .art { min-height: 400px; }
  .art-img { animation-name: float-m; }
  .art-draft .art-img { animation-name: float-dm; }
  .art-rivals .art-img { animation-name: float-rm; }
  .review { display: none; }  /* las resenas completas estan mas abajo */
  .tags { right: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
  .tag { padding: 6px 10px; font-size: 11.5px; }
  .tag svg { width: 13px; height: 13px; }
}

/* --- el configurador --- */
.buy {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(18px, 2.6vw, 26px); border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 60%); border: 1px solid var(--line);
}
.buy-h { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 0 0 12px; }
.buy-h h2 { margin: 0; font-size: 15px; font-weight: 600; }
.buy-h span { font-size: 13px; color: var(--dim); }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tile {
  position: relative; padding: 13px 8px 12px; border-radius: var(--r-s); text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  transition: border-color .18s, background .18s, box-shadow .18s, transform .18s;
}
.tile:hover { border-color: var(--line-2); transform: translateY(-1px); }
.tile-n { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(22px, 5.4vw, 28px); line-height: 1; letter-spacing: -.04em; }
.tile-r { display: block; margin-top: 5px; font-size: 11.5px; color: var(--dim); }
.tile-p { display: block; margin-top: 7px; font-size: 13px; font-weight: 600; color: var(--silver); font-variant-numeric: tabular-nums; }
.tile[aria-pressed="true"] { border-color: var(--em); background: linear-gradient(180deg, rgba(24,168,120,.20), rgba(24,168,120,.06)); box-shadow: 0 0 0 1px var(--em) inset, 0 10px 30px -14px var(--em-glow); }
.tile[aria-pressed="true"] .tile-r { color: var(--em-hi); }
.tile-best { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); padding: 2px 8px; border-radius: 6px; background: var(--em); color: #03130D; font-size: 10px; font-weight: 700; white-space: nowrap; }

/* --- Rivals: escalera de divisiones (de la 10 a Élite, de izquierda a derecha) --- */
.ladder-boxes { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
.ladder-box { padding: 10px 8px 10px 12px; border-radius: var(--r-s); background: rgba(255,255,255,.03); border: 1px solid var(--line); }
.ladder-box small { display: block; font-size: 12px; color: var(--dim); }
.ladder-ctl { display: flex; align-items: center; justify-content: space-between; gap: 4px; margin-top: 2px; }
.ladder-ctl b { flex: 1; min-width: 0; font-family: var(--display); font-weight: 700; font-size: clamp(14px, 3.6vw, 17px); letter-spacing: -.03em; white-space: nowrap; }
.ladder-box + .ladder-box { border-color: rgba(24,168,120,.45); background: rgba(24,168,120,.07); }
.ladder-box + .ladder-box b { color: var(--em-hi); }
.ladder-nudge { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.06); font-size: 18px; line-height: 1; color: var(--dim); transition: background .15s, color .15s; }
.ladder-nudge:hover { background: rgba(255,255,255,.12); color: var(--silver); }

/* Las paradas van por porcentaje (--i de 0 a 10); el carril deja margen a los lados para que «10» y «Élite» no se salgan. */
.ladder-track { padding: 24px 18px 4px; cursor: pointer; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.ladder-rail { position: relative; height: 46px; }
.ladder-rail::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.1); }
.ladder-fill {
  position: absolute; top: 9px; height: 4px; border-radius: 4px;
  left: calc(var(--a) * 10%); width: calc((var(--b) - var(--a)) * 10%);
  background: linear-gradient(90deg, var(--em), var(--em-hi)); box-shadow: 0 0 14px var(--em-glow);
  transition: left .2s ease, width .2s ease;
}
.ladder-stop { position: absolute; top: 0; left: calc(var(--i) * 10%); display: grid; justify-items: center; gap: 7px; transform: translateX(-50%); pointer-events: none; }
.ladder-stop i { box-sizing: border-box; width: 12px; height: 12px; margin-top: 5px; border-radius: 50%; background: var(--panel); border: 2px solid rgba(255,255,255,.22); transition: all .2s ease; }
.ladder-stop span { font-size: 12px; font-weight: 600; color: var(--dim-2); font-variant-numeric: tabular-nums; white-space: nowrap; transition: color .2s; }
.ladder-stop.in i { border-color: var(--em); background: var(--em); }
.ladder-stop.in span { color: var(--dim); }
.ladder-stop.is-a i, .ladder-stop.is-b i { width: 22px; height: 22px; margin: 0 0 -5px; border: 3px solid var(--em-hi); background: var(--silver); box-shadow: 0 0 0 5px rgba(24,168,120,.18), 0 6px 16px -4px rgba(0,0,0,.6); }
.ladder-stop.is-a i { background: var(--panel); }
.ladder-stop.is-a span, .ladder-stop.is-b span { color: var(--silver); font-weight: 700; }
.ladder-track:hover .ladder-stop.is-a i, .ladder-track:hover .ladder-stop.is-b i { box-shadow: 0 0 0 7px rgba(24,168,120,.22), 0 6px 16px -4px rgba(0,0,0,.6); }
/* en móvil «División 10» y las dos flechas no caben en una línea: las flechas suben junto a «Estás en» */
@media (max-width: 679px) {
  .ladder-box { display: grid; grid-template-columns: 1fr auto auto; align-items: center; column-gap: 4px; padding: 8px 8px 10px 12px; }
  .ladder-ctl { display: contents; }
  .ladder-box small { grid-area: 1 / 1; }
  .ladder-ctl b { grid-area: 2 / 1 / 3 / 4; margin-top: 2px; font-size: 15px; }
  .ladder-nudge:first-child { grid-area: 1 / 2; }
  .ladder-nudge:last-child { grid-area: 1 / 3; }
  .ladder-track { padding: 22px 12px 2px; }
  .ladder-stop span { font-size: 11px; }
}

.extra {
  display: flex; align-items: center; gap: 13px; width: 100%; margin-top: 12px; padding: 13px 14px; text-align: left;
  border-radius: var(--r-s); background: rgba(255,255,255,.03); border: 1px solid var(--line); transition: border-color .18s, background .18s;
}
.extra:hover { border-color: var(--line-2); }
.extra-ic { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(242,193,78,.12); color: var(--gold); }
.extra-ic svg { width: 19px; height: 19px; }
.extra-t { flex: 1; min-width: 0; }
.extra-t b { display: block; font-size: 14px; font-weight: 600; }
.extra-t span { display: block; font-size: 12.5px; color: var(--dim); }
.extra-p { font-size: 13.5px; font-weight: 600; color: var(--dim); font-variant-numeric: tabular-nums; white-space: nowrap; }
/* en 390px el icono del express dejaba el texto en tres líneas (va aquí, después de .extra-ic, para ganar en cascada) */
@media (max-width: 679px) {
  .extra { gap: 10px; padding: 12px; }
  .extra-ic { display: none; }
  .extra-t span { font-size: 12px; }
}
.switch { flex: 0 0 auto; position: relative; width: 42px; height: 24px; border-radius: 999px; background: rgba(255,255,255,.14); transition: background .2s; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.extra[aria-pressed="true"] { border-color: rgba(242,193,78,.5); background: rgba(242,193,78,.06); }
.extra[aria-pressed="true"] .switch { background: var(--em); }
.extra[aria-pressed="true"] .switch::after { transform: translateX(18px); }
.extra[aria-pressed="true"] .extra-p { color: var(--silver); }

.total { margin-top: auto; padding-top: 16px; }
.total-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.total-l { min-width: 0; font-size: 13.5px; color: var(--dim); }
.total-l b { display: block; margin-top: 2px; font-size: 14.5px; font-weight: 600; color: var(--silver); }
.total-r { flex: 0 0 auto; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }  /* el precio nunca se parte: si falta sitio, baja de línea la etiqueta */
.price-was { display: block; font-size: 14px; color: var(--dim-2); text-decoration: line-through; }
.price { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(30px, 6.4vw, 40px); line-height: 1; letter-spacing: -.045em; }

.cta {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 16px;
  padding: 17px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, var(--em-hi), var(--em)); color: #02130C;
  font-family: var(--sans); font-size: 16.5px; font-weight: 700; letter-spacing: -.01em;  /* fuente explícita: «Publicar reseña» es un [type=submit] y la CSS crítica de LiteSpeed le ponía la de Blocksy */
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 16px 38px -14px var(--em-glow);
  transition: transform .15s, box-shadow .2s;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 22px 44px -14px rgba(43,212,151,.6); }
.cta svg { width: 18px; height: 18px; }
.cta::after { content: ""; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%; background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.4), rgba(255,255,255,0)); transform: skewX(-18deg); animation: shine 4.5s ease-in-out infinite 1.5s; }
@keyframes shine { 0%, 70% { left: -60%; } 100% { left: 130%; } }

.assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 14px; font-size: 12.5px; color: var(--dim); }
.assure span { display: inline-flex; align-items: center; gap: 6px; }
.assure svg { width: 14px; height: 14px; color: var(--em-hi); }
.pays { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.pays span { padding: 5px 10px; border-radius: 7px; background: rgba(255,255,255,.05); border: 1px solid var(--line); font-size: 11.5px; font-weight: 600; color: var(--dim); }

/* ---------------- franja de cifras ---------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 16px; border-radius: var(--r); overflow: hidden; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--bg-2); }
.stat-ic { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(24,168,120,.1); color: var(--em-hi); }
.stat-ic svg { width: 20px; height: 20px; }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; }
/* acotado al texto: `.stat span` a secas pisaba al icono, que tambien es un span */
.stat div span { display: block; font-size: 12.5px; color: var(--dim); }
/* a dos columnas en 390px «Garantía» no cabía al lado del icono: icono arriba, texto debajo */
@media (max-width: 679px) {
  .stat { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .stat-ic { width: 36px; height: 36px; }
  .stat b { font-size: 15px; }
}

/* ---------------- secciones ---------------- */
.sec { padding: clamp(56px, 9vw, 104px) 0 0; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 30px; margin-bottom: clamp(22px, 3.4vw, 34px); }
.sec-h { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(24px, 4.4vw, 40px); line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; max-width: 18ch; }
.sec-p { margin: 0; max-width: 44ch; font-size: 15.5px; color: var(--dim); }

.steps { display: grid; gap: 12px; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.step { position: relative; padding: 24px; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.step-ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(24,168,120,.1); border: 1px solid rgba(24,168,120,.25); color: var(--em-hi); }
.step-ic svg { width: 23px; height: 23px; }
.step-n { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -.05em; color: rgba(255,255,255,.06); }
.step h3 { margin: 0 0 7px; font-size: 18px; font-weight: 600; letter-spacing: -.015em; }
.step p { margin: 0; font-size: 14.5px; color: var(--dim); }

.vow {
  position: relative; display: grid; gap: 22px; align-items: center; overflow: hidden;
  padding: clamp(24px, 4vw, 48px); border-radius: 24px;
  background: radial-gradient(80% 120% at 100% 50%, rgba(24,168,120,.22), rgba(24,168,120,0) 60%), var(--bg-2);
  border: 1px solid rgba(24,168,120,.3);
}
@media (min-width: 900px) { .vow { grid-template-columns: 1fr 340px; } }
.vow-k { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 6px 12px; border-radius: 9px; background: rgba(24,168,120,.12); color: var(--em-hi); font-size: 13px; font-weight: 600; }
.vow-k svg { width: 15px; height: 15px; }
.vow h2 { margin: 0 0 12px; font-family: var(--display); font-weight: 800; font-size: clamp(24px, 4.4vw, 40px); line-height: 1.08; letter-spacing: -.035em; max-width: 16ch; }
.vow p { margin: 0; max-width: 52ch; font-size: 16px; color: #B6C6CF; }
.vow-art { width: min(340px, 80%); margin: 0 auto; border-radius: 20px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }

/* ---------------- redes ---------------- */
.social {
  display: grid; gap: 22px; align-items: center;
  padding: clamp(24px, 4vw, 40px); border-radius: 24px;
  background: radial-gradient(70% 120% at 0% 50%, rgba(24,168,120,.18), rgba(24,168,120,0) 60%), var(--bg-2);
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .social { grid-template-columns: 1fr auto; gap: 40px; } }
.social h2 { margin: 0 0 8px; font-family: var(--display); font-weight: 800; font-size: clamp(22px, 3.6vw, 32px); line-height: 1.1; letter-spacing: -.03em; }
.social p { margin: 0; max-width: 48ch; font-size: 15.5px; color: #B6C6CF; }
.social-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn { display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 14px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); transition: border-color .15s, transform .15s, background .15s; }
.social-btn:hover { border-color: var(--em); background: rgba(24,168,120,.1); transform: translateY(-1px); }
.social-btn svg { width: 24px; height: 24px; color: var(--em-hi); }
.social-btn b { display: block; font-size: 15px; font-weight: 700; }
.social-btn small { display: block; font-size: 12.5px; color: var(--dim); }

.revs { display: grid; gap: 12px; }
@media (min-width: 820px) { .revs { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.rev { display: flex; flex-direction: column; padding: 22px; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); }
.rev p { flex: 1; margin: 12px 0 18px; font-size: 15px; line-height: 1.6; }
.rev-by { display: flex; align-items: center; gap: 11px; }
.avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--em), #0B4E62); color: #fff; font-size: 13px; font-weight: 700; }
.rev-by b { display: block; font-size: 14px; font-weight: 600; }
.rev-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.rev-top time { font-size: 12.5px; color: var(--dim-2); white-space: nowrap; }
.rev-by > div { flex: 1; min-width: 0; }
.rev-by .verified { display: inline-flex; margin-top: 2px; font-size: 12px; }
/* contain: inline-size evita que un nombre de producto largo ensanche la tarjeta en el móvil */
.rev-prod { display: block; font-size: 12px; color: var(--dim-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; contain: inline-size; }
.rev { min-width: 0; }
/* cabecera del apartado: título a la izquierda; nota grande y «Escribir una reseña» a la derecha */
.revs-head { align-items: center; }
/* el h2 mide 18ch de Unbounded (~670px): sin encoger, la nota y el botón no caben al lado ni en 1440 */
.revs-head > div:first-child { flex: 1 1 360px; min-width: 0; }
.revs-side { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.revs-score { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-radius: var(--r-s); background: var(--bg-2); border: 1px solid var(--line); }
.revs-score b { font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -.04em; }
.revs-score .stars svg { width: 15px; height: 15px; }
.revs-score span { display: block; margin-top: 4px; font-size: 13px; color: var(--dim); }
.revs-write {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: var(--r-s);
  background: rgba(24,168,120,.12); border: 1px solid rgba(24,168,120,.45); font-size: 14.5px; font-weight: 600;
  transition: background .15s, border-color .15s;
}
.revs-write:hover { background: rgba(24,168,120,.2); border-color: var(--em); }
.revs-write svg { width: 17px; height: 17px; color: var(--em-hi); }
/* de entrada se ven seis; «Ver más» enseña seis más y «Ver menos» (desde la primera vez) las recoge */
.revs .rev-more { display: none; }
.revs .rev-more.is-shown { display: flex; }
.revs-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.revs-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 12px; border: 1px solid var(--line-2); font-size: 14.5px; font-weight: 600; color: var(--silver); transition: border-color .15s, background .15s; }
.revs-toggle:hover { border-color: var(--em); background: rgba(24,168,120,.08); }
.revs-toggle svg { width: 16px; height: 16px; color: var(--em-hi); transform: rotate(90deg); }
.revs-less svg { transform: rotate(-90deg); }

/* ---------------- ventana «Escribe tu reseña» ---------------- */
.rdlg {
  width: min(520px, calc(100% - 24px)); max-height: calc(100dvh - 24px); margin: auto; padding: 0; overflow: auto;
  border-radius: 20px; border: 1px solid var(--line-2); background: var(--panel); color: var(--silver);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.9);
}
.rdlg::backdrop { background: rgba(2,6,9,.74); backdrop-filter: blur(4px); }
html:has(.rdlg[open]) { overflow: hidden; }
.rdlg-in { display: grid; gap: 16px; padding: clamp(20px, 4vw, 28px); }
.rdlg-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rdlg-head h2 { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(20px, 4.6vw, 24px); letter-spacing: -.03em; }
.rdlg-x { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.05); color: var(--dim); transition: color .15s, background .15s; }
.rdlg-x:hover { color: var(--silver); background: rgba(255,255,255,.1); }
.rdlg-x svg { width: 18px; height: 18px; }
.rdlg-step { display: grid; gap: 16px; }
.rdlg-p { margin: 0; font-size: 15px; color: #B6C6CF; }
.rdlg-note { margin: 0; font-size: 13px; color: var(--dim); }
.rdlg-note b { color: var(--silver); font-weight: 600; }
.rdlg .cta { margin-top: 0; }
.rdlg .cta:disabled { opacity: .6; cursor: progress; }
.rdlg-btn { justify-self: start; padding: 12px 20px; border-radius: 12px; border: 1px solid var(--line-2); font-size: 14.5px; font-weight: 600; transition: border-color .15s; }
.rdlg-btn:hover { border-color: var(--em); }
.rdlg-field { display: grid; gap: 7px; min-width: 0; margin: 0; padding: 0; border: 0; }
.rdlg-field > span, .rdlg-field legend { padding: 0; font-size: 13.5px; font-weight: 600; color: var(--dim); }
.rdlg-field legend { margin-bottom: 4px; }
.rdlg-sel, .rdlg textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-s); border: 1px solid var(--line-2);
  background-color: var(--bg-2); color: var(--silver); font: 15px/1.5 var(--sans);
}
.rdlg-sel {
  appearance: none; -webkit-appearance: none; height: auto; padding-right: 38px; cursor: pointer;  /* height: la CSS crítica de LiteSpeed le ponía 40px */
  background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238FA2AE' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
}
.rdlg-sel option { background: var(--panel); color: var(--silver); }
.rdlg textarea { min-height: 120px; resize: vertical; }
.rdlg textarea::placeholder { color: var(--dim-2); }
.rdlg-sel:focus-visible, .rdlg textarea:focus-visible { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px rgba(24,168,120,.22); }
.rstars { display: flex; gap: 2px; margin-left: -6px; }
.rstars label { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 10px; cursor: pointer; }
.rstars input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.rstars svg { width: 32px; height: 32px; color: rgba(255,255,255,.16); transition: color .12s, transform .12s; }
.rstars label.on svg { color: var(--em-hi); }
.rstars label:hover svg { transform: scale(1.1); }
.rstars label:has(input:focus-visible) { outline: 2px solid var(--em-hi); outline-offset: -2px; }
.rdlg-err { margin: 0; padding: 10px 12px; border-radius: 10px; background: rgba(240,96,96,.1); border: 1px solid rgba(240,96,96,.35); color: #F4B4B4; font-size: 14px; }

.faq { display: grid; gap: 10px; }
@media (min-width: 900px) { .faq { grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; } }
.faq details { border-radius: var(--r-s); background: var(--bg-2); border: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; font-size: 15.5px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.05); font-style: normal; font-size: 18px; color: var(--em-hi); transition: transform .2s; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 20px 18px; font-size: 14.5px; color: var(--dim); }

.more { display: grid; gap: 12px; }
@media (min-width: 600px) { .more { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 960px) { .more { grid-template-columns: repeat(3, 1fr); } }
/* con la página más ancha (--wrap), 4 por fila: cada tarjeta sigue midiendo unos 350-370 px y no se queda vacía */
@media (min-width: 1700px) { .more { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r);
  background: radial-gradient(90% 70% at 50% 30%, rgba(24,168,120,.22), rgba(24,168,120,0) 70%), linear-gradient(180deg, #0C2230, #07141C);
  border: 1px solid var(--line); transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(24,168,120,.5); transform: translateY(-3px); }
/* las imágenes vienen de WooCommerce con proporciones distintas: misma altura para todas, sin recortar */
.card img { width: auto; max-width: 78%; height: 190px; object-fit: contain; margin: 24px auto 6px; filter: drop-shadow(0 18px 24px rgba(0,0,0,.6)); }
.card-noimg { display: grid; place-items: center; height: 190px; margin: 24px auto 6px; color: rgba(255,255,255,.12); }
.card-noimg svg { width: 64px; height: 64px; }
.card h3 { text-wrap: balance; }
.card-f b s { margin-right: 6px; font-weight: 400; color: var(--dim-2); }
.card-b { margin-top: auto; padding: 16px 20px 20px; }  /* el pie alineado abajo aunque la imagen sea baja */
.card h3 { margin: 0 0 3px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; }
.card-b > span { display: block; font-size: 13.5px; color: var(--dim); }
.card-f { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.card-f b { font-size: 15px; font-weight: 600; }
.card-f b small { font-size: 12px; font-weight: 400; color: var(--dim); }
.card-go { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(24,168,120,.14); color: var(--em-hi); }
.card-go svg { width: 16px; height: 16px; }

/* botón a «Todos los productos» */
.see-all {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; margin: 22px auto 0; padding: 14px 22px;
  border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); font-size: 15px; font-weight: 600;
  transition: border-color .15s, background .15s;
}
.see-all:hover { border-color: var(--em); background: rgba(24,168,120,.1); }
.see-all svg { width: 18px; height: 18px; color: var(--em-hi); }

/* ---------------- «Todos los productos» ---------------- */
.shop-hero { position: relative; padding: clamp(22px, 4vw, 44px) 0 clamp(8px, 2vw, 16px); }
.shop-hero::before {
  content: ""; position: absolute; inset: -70px 0 auto; height: 420px; pointer-events: none;
  background: radial-gradient(60% 70% at 30% 0%, rgba(24,168,120,.14), rgba(5,12,18,0) 70%);
}
.shop-hero > .wrap { position: relative; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--dim-2); }
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--silver); }
.shop-hero h1 { margin: 10px 0 8px; font-family: var(--display); font-weight: 800; font-size: clamp(30px, 5.4vw, 52px); line-height: 1.05; letter-spacing: -.035em; text-wrap: balance; }
.shop-hero p { margin: 0; max-width: 60ch; font-size: 15.5px; color: var(--dim); }
.chips { display: flex; gap: 8px; margin: 22px 0 0; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); font-size: 14px; font-weight: 600; color: var(--silver);
  transition: border-color .15s, background .15s;
}
.chip small { font-size: 12px; font-weight: 600; color: var(--dim); font-variant-numeric: tabular-nums; }
.chip:hover { border-color: rgba(24,168,120,.6); }
.chip.on { border-color: var(--em); background: rgba(24,168,120,.16); }
.chip.on small { color: var(--em-hi); }
.shop-group { padding-top: clamp(30px, 5vw, 52px); scroll-margin-top: 84px; }
.shop-group-h { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 20px; margin-bottom: 16px; }
.shop-group-h h2 { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(22px, 3.4vw, 30px); letter-spacing: -.03em; }
.shop-group-h a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--em-hi); }
.shop-group-h a:hover { text-decoration: underline; }
.shop-group-h a svg { width: 15px; height: 15px; }
.shop-empty { padding: 48px 0 8px; text-align: center; }
.shop-empty h2 { margin: 0 0 6px; font-family: var(--display); font-size: 22px; letter-spacing: -.02em; }
.shop-empty p { margin: 0; color: var(--dim); }

.final {
  position: relative; overflow: hidden; margin-top: clamp(56px, 9vw, 104px); padding: clamp(30px, 5vw, 56px);
  border-radius: 24px; text-align: center; isolation: isolate;
  background: linear-gradient(180deg, rgba(5,12,18,.35), rgba(5,12,18,.9)), var(--final-bg) center 40% / cover;
  border: 1px solid rgba(24,168,120,.3);
}
.final h2 { margin: 0 auto 10px; max-width: 18ch; font-family: var(--display); font-weight: 800; font-size: clamp(26px, 5vw, 46px); line-height: 1.06; letter-spacing: -.04em; }
.final p { margin: 0 auto; max-width: 44ch; color: #B6C6CF; }
.final .cta { width: auto; display: inline-flex; margin-top: 24px; padding: 17px 34px; }

.bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; gap: 14px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(5,12,18,.92); backdrop-filter: blur(16px); border-top: 1px solid var(--line-2); transform: translateY(110%); transition: transform .28s ease; }
.bar.on { transform: none; }
.bar-l { font-size: 12px; color: var(--dim); line-height: 1.2; }
.bar-l b { display: block; font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--silver); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.bar .cta { margin: 0; padding: 14px; flex: 1; font-size: 15.5px; }
@media (min-width: 1000px) { .bar { display: none; } }

.sec-p a { color: var(--em-hi); font-weight: 600; }
.sec-p a:hover { text-decoration: underline; }
