:root {
  --bg: #0c0e12;
  --bg-elevated: #141820;
  --surface: #1a1f2a;
  --text: #e8eaef;
  --text-muted: #8b93a5;
  --accent: #f4b942;
  --accent-hover: #ffc94d;
  --accent-text: #1a1204;
  --success: #3dd68c;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Newsreader", Georgia, serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(244, 185, 66, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(61, 214, 140, 0.06), transparent 45%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.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;
}

/* Urgency bar */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, rgba(244, 185, 66, 0.15), rgba(244, 185, 66, 0.08));
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.urgency::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

/* Header */
header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

header .cta-mini {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, background 0.15s ease;
}

header .cta-mini:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.hero-prehead {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--success);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-bullets {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 42ch;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.75rem;
}

.price-old {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(232, 93, 93, 0.7);
}

.price-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(244, 185, 66, 0.2);
  color: var(--accent);
  border: 1px solid rgba(244, 185, 66, 0.35);
}

.cta-microcopy {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.social-proof-line {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.95;
}

.pack-microcopy {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.35;
}

/* Stats strip (credibilidad rápida) */
.stats-section {
  padding: 0 0 1rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 600px) {
  .stats-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 12ch;
}

/* Bridge emocional */
.bridge {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 185, 66, 0.04), transparent);
}

.bridge h2 {
  margin-bottom: 1rem;
}

.bridge-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
  color: var(--text);
}

.bridge-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* Contraste sin / con */
.contrast .compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contrast .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.compare-col {
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  text-align: left;
}

.compare-bad {
  background: rgba(232, 93, 93, 0.06);
  border-color: rgba(232, 93, 93, 0.25);
}

.compare-bad h3 {
  color: #e8a0a0;
}

.compare-good {
  background: rgba(61, 214, 140, 0.08);
  border-color: rgba(61, 214, 140, 0.3);
  box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.12);
}

.compare-good h3 {
  color: var(--success);
}

.compare-col ul {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.compare-col li {
  margin-bottom: 0.5rem;
}

/* Objeciones */
.objection-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .objection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.objection-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.objection-card:hover {
  border-color: rgba(244, 185, 66, 0.35);
  transform: translateY(-2px);
}

.objection-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: var(--text);
  line-height: 1.35;
}

.objection-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.problem-lead strong {
  color: var(--accent);
}

.final-urgency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  max-width: 40ch;
}

.final-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.final-micro {
  margin-top: 1rem;
  text-align: center;
  max-width: none;
}

@keyframes btn-glow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(244, 185, 66, 0.25);
  }
  50% {
    box-shadow: 0 8px 40px rgba(244, 185, 66, 0.45);
  }
}

.btn-pulse {
  animation: btn-glow 2.5s ease-in-out infinite;
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(244, 185, 66, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 185, 66, 0.35);
}

.btn-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 14, 18, 0.5) 100%);
  pointer-events: none;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-badges svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* Sections */
section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

/* Problem */
.problem-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.problem-list li::before {
  content: "✕";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #e85d5d;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Solution */
.solution-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
}

.solution-box p {
  margin: 0;
  font-size: 1.15rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(244, 185, 66, 0.35);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.t-card p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.t-card .author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  font-style: normal;
}

.t-card .loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

details summary {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-bottom: 1px solid var(--border);
}

details p {
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(61, 214, 140, 0.08), rgba(244, 185, 66, 0.06));
  border: 1px solid rgba(61, 214, 140, 0.25);
  border-radius: calc(var(--radius) + 6px);
  max-width: 640px;
  margin: 0 auto;
}

.guarantee h2 {
  margin-bottom: 0.75rem;
}

.guarantee p {
  margin: 0;
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding-bottom: 4rem;
}

.final-cta h2 {
  margin-bottom: 0.75rem;
}

.final-cta .price {
  display: block;
  margin: 1rem 0;
}

/* Footer */
footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .mini-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
}

.sticky-cta .btn-primary {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

body.has-sticky {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Bloques extra: barra oferta, specs, galería, antes/después, embudo visual, pagos —— */
.top-offer-bar {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #f8fafc;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
}

.spec-icons-section {
  padding: 1.75rem 0 2rem;
}

.spec-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .spec-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .spec-icons-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.spec-icon-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  min-height: 100%;
}

.spec-icon-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.spec-icon-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--text);
}

.spec-icon-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.product-gallery {
  padding: 0 0 1.5rem;
  border-top: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-cell {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.gallery-cell img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.before-after-section .before-after-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .before-after-section .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-col {
  padding: 1.5rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
}

.ba-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.ba-col ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.ba-before {
  background: rgba(148, 163, 184, 0.08);
}

.ba-after {
  background: linear-gradient(145deg, rgba(244, 185, 66, 0.12), rgba(61, 214, 140, 0.1));
  border-color: rgba(61, 214, 140, 0.25);
}

.visual-funnel {
  background: linear-gradient(180deg, rgba(244, 185, 66, 0.05), transparent);
}

.vf-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .vf-layout {
    grid-template-columns: minmax(260px, 400px) 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.vf-product {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.vf-product img {
  width: 100%;
  height: auto;
  display: block;
}

.vf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vf-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.vf-dot {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.vf-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}

.payments-section {
  padding: 2rem 0;
}

.payments-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pay-ico {
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
}

/* —— Tema claro “compact-cool” (referencia estilo mobile funnel) —— */
body.theme-compact-cool {
  --bg: #07121f;
  --bg-elevated: #0d1b2a;
  --surface: #11243a;
  --text: #e8f1ff;
  --text-muted: #9bb0ca;
  --accent: #00c2ff;
  --accent-hover: #38d2ff;
  --accent-text: #04111d;
  --success: #39d98a;
  --border: rgba(138, 173, 214, 0.22);
  --shadow: 0 24px 64px rgba(2, 10, 22, 0.55);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-price: "DM Sans", "Outfit", system-ui, sans-serif;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.theme-compact-cool .hero .lead,
body.theme-compact-cool .section-lead,
body.theme-compact-cool .solution-box p,
body.theme-compact-cool .benefit-card p,
body.theme-compact-cool details p {
  font-family: "Newsreader", Georgia, serif;
}

body.theme-compact-cool {
  background-image:
    radial-gradient(ellipse 95% 72% at 10% -18%, rgba(0, 194, 255, 0.22), transparent 56%),
    radial-gradient(ellipse 65% 45% at 92% 10%, rgba(255, 111, 78, 0.14), transparent 55%),
    linear-gradient(165deg, #07121f 0%, #0b1829 45%, #0a1422 100%);
}

body.theme-compact-cool .urgency {
  background: linear-gradient(90deg, rgba(0, 194, 255, 0.18), rgba(31, 111, 255, 0.08));
  color: #b9edff;
  border-bottom-color: var(--border);
}

body.theme-compact-cool .urgency::before {
  background: #00c2ff;
}

body.theme-compact-cool .top-offer-bar {
  background: linear-gradient(90deg, #0b4d7a, #1f6fff, #ff6f4e);
  color: #fff;
  border-bottom: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

body.theme-compact-cool header {
  background: var(--bg-elevated);
  border-bottom-color: var(--border);
}

body.theme-compact-cool .logo {
  color: var(--text);
}

body.theme-compact-cool .hero-prehead {
  color: #86ddff;
}

body.theme-compact-cool .price,
body.theme-compact-cool .stat-value,
body.theme-compact-cool .mini-price {
  color: #63ddff;
}

/* Importes: más contenidos, DM Sans + números tabulares */
body.theme-compact-cool .price,
body.theme-compact-cool .pack-price,
body.theme-compact-cool .mini-price,
body.theme-compact-cool .stat-value,
body.theme-compact-cool .final-cta .price,
body.theme-compact-cool .order-pack-price {
  font-family: var(--font-price);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .price {
  font-size: clamp(1.35rem, 3.2vw, 1.55rem);
  font-weight: 600;
}

body.theme-compact-cool .pack-price {
  font-size: clamp(1.2rem, 2.6vw, 1.32rem);
  font-weight: 600;
  color: #63ddff;
}

body.theme-compact-cool .pack-old,
body.theme-compact-cool .price-old {
  font-family: var(--font-price);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.85;
}

body.theme-compact-cool .mini-price {
  font-size: 0.9375rem;
  font-weight: 600;
}

body.theme-compact-cool .stat-value {
  font-size: clamp(1.2rem, 2.2vw, 1.35rem);
  font-weight: 600;
}

body.theme-compact-cool .final-cta .price {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}

body.theme-compact-cool .price-badge {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
}

body.theme-compact-cool .logo {
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.theme-compact-cool .section-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .section-sub {
  font-size: 0.98rem;
  line-height: 1.55;
}

body.theme-compact-cool .pack-name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.theme-compact-cool .pack-qty {
  font-size: 0.84rem;
}

body.theme-compact-cool .order-pack-price {
  font-size: 1.05rem;
}

body.theme-compact-cool .order-cop {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
}

body.theme-compact-cool .btn-primary,
body.theme-compact-cool .cta-mini {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.theme-compact-cool .hero-prehead {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body.theme-compact-cool .hero-chip-t {
  font-size: 0.875rem;
  font-weight: 700;
}

body.theme-compact-cool .btn-primary {
  background: linear-gradient(90deg, #00c2ff, #1f6fff);
  color: #021321;
  box-shadow: 0 14px 36px rgba(31, 111, 255, 0.3);
}

body.theme-compact-cool .btn-primary:hover {
  background: linear-gradient(90deg, #38d2ff, #4386ff);
  box-shadow: 0 18px 44px rgba(3, 152, 206, 0.35);
}

body.theme-compact-cool header .cta-mini {
  background: #ff6f4e;
  color: #fffaf7;
}

body.theme-compact-cool header .cta-mini:hover {
  background: #ff7f62;
}

body.theme-compact-cool .btn-pulse {
  animation: btn-glow-light 2.5s ease-in-out infinite;
}

@keyframes btn-glow-light {
  0%,
  100% {
    box-shadow: 0 10px 36px rgba(31, 111, 255, 0.26);
  }
  50% {
    box-shadow: 0 12px 52px rgba(0, 194, 255, 0.46);
  }
}

body.theme-compact-cool .hero-visual::after {
  background: linear-gradient(180deg, transparent 48%, rgba(7, 18, 31, 0.72) 100%);
}

body.theme-compact-cool .vf-dot {
  background: #00c2ff;
  color: #03101a;
}

body.theme-compact-cool .sticky-cta {
  background: rgba(7, 18, 31, 0.95);
  border-top-color: var(--border);
}

body.theme-compact-cool .sticky-cta .btn-primary {
  background: linear-gradient(90deg, #00c2ff, #1f6fff);
  color: #031321;
}

body.theme-compact-cool .sticky-cta .btn-primary:hover {
  background: linear-gradient(90deg, #38d2ff, #4386ff);
}

body.theme-compact-cool .final-urgency {
  color: #8de4ff;
}

body.theme-compact-cool .price-badge {
  background: rgba(0, 194, 255, 0.16);
  color: #8de4ff;
  border-color: rgba(0, 194, 255, 0.4);
}

body.theme-compact-cool .bridge-text strong {
  color: #7de0ff;
}

/* —— Tema "pdx-gel": estilo táctico/graffiti para landing juego-bolas-gel —— */
body.theme-pdx-gel {
  --bg: #090b12;
  --bg-elevated: #111522;
  --surface: #161c2d;
  --text: #eaf0ff;
  --text-muted: #95a2bf;
  --accent: #6dff8d;
  --accent-hover: #46f572;
  --accent-text: #04140a;
  --success: #46f572;
  --border: rgba(167, 187, 228, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-price: "DM Sans", "Outfit", system-ui, sans-serif;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  background-image:
    radial-gradient(ellipse 95% 70% at 15% -18%, rgba(109, 255, 141, 0.2), transparent 56%),
    radial-gradient(ellipse 65% 45% at 95% 10%, rgba(80, 149, 255, 0.2), transparent 55%),
    linear-gradient(160deg, #090b12 0%, #0d1320 45%, #0a0e18 100%);
}

body.theme-pdx-gel .top-offer-bar {
  background: linear-gradient(90deg, #1a7dff, #2f56ff);
  color: #ffffff;
  border-bottom: none;
}

body.theme-pdx-gel header {
  background: rgba(9, 11, 18, 0.85);
  border-bottom-color: rgba(167, 187, 228, 0.24);
  backdrop-filter: blur(8px);
}

body.theme-pdx-gel .hero-prehead {
  color: #6dff8d;
}

body.theme-pdx-gel .hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  letter-spacing: -0.03em;
}

body.theme-pdx-gel .hero-visual {
  border: 1px solid rgba(167, 187, 228, 0.26);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.5);
}

body.theme-pdx-gel .hero-chip {
  background: rgba(17, 21, 34, 0.85);
  border-color: rgba(109, 255, 141, 0.28);
}

body.theme-pdx-gel .hero-chip-t,
body.theme-pdx-gel .price,
body.theme-pdx-gel .pack-price,
body.theme-pdx-gel .stat-value,
body.theme-pdx-gel .mini-price {
  color: #6dff8d;
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums;
}

body.theme-pdx-gel .section-title,
body.theme-pdx-gel .pack-name,
body.theme-pdx-gel .author {
  color: #f2f6ff;
}

body.theme-pdx-gel .social-proof-line {
  color: #c9ffd5;
}

body.theme-pdx-gel .pack-card,
body.theme-pdx-gel .benefit-card,
body.theme-pdx-gel .t-card,
body.theme-pdx-gel details,
body.theme-pdx-gel .guarantee,
body.theme-pdx-gel .solution-box,
body.theme-pdx-gel .spec-icon-card,
body.theme-pdx-gel .step {
  background: linear-gradient(180deg, rgba(17, 21, 34, 0.96), rgba(14, 18, 29, 0.96));
  border-color: rgba(167, 187, 228, 0.2);
}

body.theme-pdx-gel .pack-badge {
  background: rgba(109, 255, 141, 0.18);
  color: #87ff9f;
  border-color: rgba(109, 255, 141, 0.5);
}

body.theme-pdx-gel .pack-card--featured {
  border-color: rgba(109, 255, 141, 0.56);
  box-shadow: 0 22px 50px rgba(41, 153, 69, 0.18);
}

body.theme-pdx-gel .btn-primary,
body.theme-pdx-gel .cta-mini {
  background: linear-gradient(90deg, #6dff8d, #56d8ff);
  color: #03111e;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(87, 222, 255, 0.28);
}

body.theme-pdx-gel .btn-primary:hover,
body.theme-pdx-gel .cta-mini:hover {
  background: linear-gradient(90deg, #56d8ff, #6dff8d);
}

body.theme-pdx-gel .stars {
  color: #ffd24a;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 10px rgba(255, 210, 74, 0.22);
}

body.theme-pdx-gel .sticky-cta {
  background: rgba(8, 12, 19, 0.94);
  border-top-color: rgba(167, 187, 228, 0.24);
}

body.theme-pdx-gel .sticky-cta .btn-primary {
  color: #03111e;
}

body.theme-pdx-gel .final-cta {
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.94), rgba(8, 11, 18, 0.98));
}

/* —— Tema “ember-usb”: encendedor eléctrico / gadget oscuro + brasa —— */
body.theme-ember-usb {
  --bg: #0a0908;
  --bg-elevated: #141110;
  --surface: #1c1816;
  --text: #f4ebe6;
  --text-muted: #a8988f;
  --accent: #ff5c33;
  --accent-hover: #ff7849;
  --accent-text: #1a0a06;
  --success: #5ce38a;
  --border: rgba(255, 120, 80, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-price: "DM Sans", "Outfit", system-ui, sans-serif;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  background-image:
    radial-gradient(ellipse 90% 65% at 12% -15%, rgba(255, 80, 40, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 8%, rgba(180, 200, 220, 0.12), transparent 52%),
    linear-gradient(168deg, #0a0908 0%, #120e0c 42%, #0c0a09 100%);
}

body.theme-ember-usb .hero .lead,
body.theme-ember-usb .section-lead,
body.theme-ember-usb .solution-box p,
body.theme-ember-usb .benefit-card p,
body.theme-ember-usb details p {
  font-family: "Newsreader", Georgia, serif;
}

body.theme-ember-usb .top-offer-bar {
  background: linear-gradient(90deg, #3a1510, #c43a1a, #ff5c33);
  color: #fff8f5;
  border-bottom: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

body.theme-ember-usb header {
  background: rgba(14, 12, 10, 0.92);
  border-bottom-color: rgba(255, 100, 60, 0.22);
  backdrop-filter: blur(10px);
}

body.theme-ember-usb .hero-prehead {
  color: #ffb59a;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body.theme-ember-usb .hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

body.theme-ember-usb .price,
body.theme-ember-usb .pack-price,
body.theme-ember-usb .stat-value,
body.theme-ember-usb .mini-price,
body.theme-ember-usb .final-cta .price {
  color: #ff8f6a;
  font-family: var(--font-price);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

body.theme-ember-usb .pack-old,
body.theme-ember-usb .price-old {
  font-family: var(--font-price);
  opacity: 0.82;
}

body.theme-ember-usb .social-proof-line {
  color: #e8c4b8;
}

body.theme-ember-usb .hero-visual {
  border: 1px solid rgba(255, 120, 80, 0.28);
  box-shadow: 0 28px 60px rgba(20, 8, 4, 0.55);
}

body.theme-ember-usb .hero-chip {
  background: rgba(22, 18, 16, 0.92);
  border-color: rgba(255, 92, 51, 0.35);
}

body.theme-ember-usb .hero-chip-t {
  color: #ffc9b5;
}

body.theme-ember-usb .urgency {
  background: linear-gradient(90deg, rgba(255, 70, 40, 0.2), rgba(40, 28, 24, 0.5));
  color: #ffd4c4;
  border-bottom-color: var(--border);
}

body.theme-ember-usb .urgency::before {
  background: #ff5c33;
}

body.theme-ember-usb .pack-card,
body.theme-ember-usb .benefit-card,
body.theme-ember-usb .t-card,
body.theme-ember-usb details,
body.theme-ember-usb .guarantee,
body.theme-ember-usb .solution-box,
body.theme-ember-usb .spec-icon-card,
body.theme-ember-usb .step {
  background: linear-gradient(180deg, rgba(24, 20, 18, 0.96), rgba(16, 14, 12, 0.96));
  border-color: rgba(255, 120, 80, 0.2);
}

body.theme-ember-usb .pack-badge {
  background: rgba(255, 92, 51, 0.2);
  color: #ffbfa8;
  border-color: rgba(255, 92, 51, 0.45);
}

body.theme-ember-usb .pack-card--featured {
  border-color: rgba(255, 120, 70, 0.55);
  box-shadow: 0 22px 48px rgba(120, 40, 20, 0.22);
}

body.theme-ember-usb .btn-primary,
body.theme-ember-usb .cta-mini {
  background: linear-gradient(92deg, #ff5c33, #ff3838);
  color: #1a0604;
  font-weight: 700;
  box-shadow: 0 14px 38px rgba(255, 60, 40, 0.35);
}

body.theme-ember-usb .btn-primary:hover,
body.theme-ember-usb .cta-mini:hover {
  background: linear-gradient(92deg, #ff7849, #ff4d4d);
}

body.theme-ember-usb header .cta-mini {
  background: rgba(255, 92, 51, 0.95);
  color: #1a0604;
}

body.theme-ember-usb header .cta-mini:hover {
  background: #ff8a66;
}

body.theme-ember-usb .stars {
  color: #ffd24a;
  letter-spacing: 0.1em;
}

body.theme-ember-usb .sticky-cta {
  background: rgba(10, 8, 7, 0.96);
  border-top-color: rgba(255, 100, 60, 0.28);
}

body.theme-ember-usb .sticky-cta .btn-primary {
  color: #1a0604;
}

body.theme-ember-usb .final-cta {
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.95), rgba(8, 7, 6, 0.98));
}

body.theme-ember-usb .final-urgency {
  color: #ffb8a0;
}

body.theme-ember-usb .price-badge {
  background: rgba(255, 92, 51, 0.18);
  color: #ffc9b5;
  border-color: rgba(255, 120, 80, 0.42);
}

body.theme-ember-usb .bridge-text strong {
  color: #ff9a78;
}

body.theme-ember-usb .hero-cta-microcopy {
  color: #d4b8ad;
}

body.theme-ember-usb .vf-dot {
  background: #ff5c33;
  color: #1a0604;
}

body.theme-ember-usb .hero-visual::after {
  background: linear-gradient(180deg, transparent 42%, rgba(10, 8, 7, 0.78) 100%);
}

/* —— Layout enfocado: menos ruido, más aire, packs + vídeo —— */
body.layout-focus section {
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}

body.layout-focus .section-tight {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.wrap.narrow {
  max-width: 720px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

.hero--focus {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero--focus .hero-copy .lead {
  max-width: 38ch;
  font-size: 1.15rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.hero-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  min-width: 4.5rem;
}

.hero-chip-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}

.hero-chip-d {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.hero-cta-microcopy {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 40ch;
}

.hero-trust-line {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-visual--media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #000;
}

.hero-visual--media::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

/* Packs */
.packs-section {
  background: color-mix(in srgb, var(--surface) 55%, var(--bg));
  overflow: visible;
}

/* Catálogo hidrogel inmersivo (tarjetas flip) */
.catalog-section {
  background:
    radial-gradient(ellipse 80% 65% at 12% 0%, rgba(109, 255, 141, 0.12), transparent 58%),
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(86, 216, 255, 0.12), transparent 56%);
}

.store-quick-benefits {
  padding-top: 0.85rem;
  padding-bottom: 1.1rem;
}

.store-benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.store-benefit-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(109, 255, 141, 0.1);
  border: 1px solid rgba(109, 255, 141, 0.35);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #c9ffd5;
}

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.catalog-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 21, 34, 0.78);
  color: #d8e7ff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.catalog-grid-featured {
  margin-bottom: 1rem;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
}

.catalog-group + .catalog-group {
  margin-top: 1.4rem;
}

.catalog-group-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #d9e8ff;
}

@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-flip-card {
  perspective: 1100px;
  min-height: 0;
}

.product-flip-inner {
  position: relative;
  width: 100%;
  min-height: 0;
}

.product-face {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 21, 34, 0.96), rgba(14, 18, 29, 0.96));
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.catalog-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  margin-bottom: 0.75rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(86, 216, 255, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(16, 26, 47, 0.96));
}

.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.catalog-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(109, 255, 141, 0.2);
  border: 1px solid rgba(109, 255, 141, 0.5);
  color: #aaffbb;
}

.catalog-name {
  margin: 0 0 0.18rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.catalog-qty {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.catalog-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.catalog-price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.catalog-price {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.catalog-highlights {
  list-style: none;
  margin: 0 0 0.7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.catalog-highlights li {
  font-size: 0.8rem;
  color: #c8d6f2;
  line-height: 1.35;
  padding-left: 1rem;
  position: relative;
}

.catalog-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(109, 255, 141, 0.5);
}

.catalog-min-note {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  color: #9ec6ff;
}

.product-face .btn-block {
  border-radius: 12px;
  font-size: 0.95rem;
}

.product-face--front .btn-block {
  margin-top: auto;
}

@media (max-width: 860px) {
  .product-flip-card,
  .product-flip-inner {
    min-height: 0;
  }

  .catalog-img-wrap {
    aspect-ratio: 4 / 3;
  }
}

.catalog-qty-stepper {
  margin-top: 0.75rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.catalog-qty-input {
  width: 3rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
}

.store-cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #6dff8d, #56d8ff);
  color: #06111c;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.store-cart-fab-count {
  position: absolute;
  top: -0.35rem;
  right: -0.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #ff4f6f;
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

/* Al abrir el drawer, ocultamos el FAB */
body.has-store-cart-open .store-cart-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
}

.store-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 109;
  background: rgba(4, 8, 13, 0.58);
}

.store-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  z-index: 110;
  background: #0f1422;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.store-cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

body.has-store-cart-open {
  overflow: hidden;
}

.store-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.store-cart-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
}

.store-cart-body {
  flex: 1;
  overflow: auto;
  padding: 0.85rem;
}

.store-cart-empty {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.92rem;
}

.store-cart-upsell {
  margin-top: 0.75rem;
  border: 1px dashed rgba(109, 255, 141, 0.45);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(109, 255, 141, 0.08);
}

.store-cart-upsell-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: #d8ffe2;
}

.store-cart-upsell-btn {
  width: 100%;
  border: 1px solid rgba(109, 255, 141, 0.55);
  background: rgba(17, 21, 34, 0.9);
  color: #e8f8ff;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.store-cart-upsell-note {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  color: #acd3ff;
}

.store-cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.store-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem;
  background: rgba(17, 21, 34, 0.8);
}

.store-cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.store-cart-item-copy h4 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.store-cart-item-copy p {
  margin: 0 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.store-cart-item-min {
  color: #9ec6ff !important;
  font-size: 0.74rem !important;
}

.store-cart-item-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-size: 0.95rem;
}

.store-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.store-cart-item-qty .pack-stepper-btn {
  width: 1.9rem;
  height: 1.9rem;
  font-size: 1.05rem;
}

.store-cart-item-qty .btn-ghost {
  font-size: 0.72rem;
  padding: 0.28rem 0.45rem;
}

.store-cart-foot {
  border-top: 1px solid var(--border);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.store-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.9rem;
}

.store-cart-total-row strong {
  font-family: var(--font-display);
  color: var(--accent);
}

@keyframes pack-pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(109, 255, 141, 0);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 0 0 3px rgba(109, 255, 141, 0.34), 0 18px 42px rgba(33, 175, 75, 0.24);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(109, 255, 141, 0);
  }
}

.pack-card--pulse {
  animation: pack-pulse 0.8s ease 1;
}

.packs-section .wrap {
  overflow: visible;
}

.packs-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pack-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow 0.15s ease;
  min-height: 0;
  overflow: visible;
}

.pack-card--featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 16px 48px rgba(192, 38, 211, 0.18);
}

/* Badge solo sobre la imagen — no solapa titulares HTML */
.pack-img-wrap .pack-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 92%, transparent);
  color: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pack-card--featured .pack-img-wrap .pack-badge {
  background: var(--accent);
  color: var(--accent-text);
}

.pack-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.35;
  padding: 0 0.25rem;
  text-wrap: balance;
}

/* Rellena todo el ancho del pack: sin “letterbox” blanco (object-fit: cover) */
.pack-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f172a;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.pack-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.pack-highlights {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.pack-highlights li {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.55rem 0.5rem 1.85rem;
  border-radius: 10px;
  background: linear-gradient(100deg, #fce7f3 0%, #ffedd5 100%);
  color: #831843;
  position: relative;
  border: 1px solid rgba(192, 38, 211, 0.12);
}

.pack-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  background: #059669;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.pack-qty {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pack-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}

.pack-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.pack-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
}

.pack-ship {
  font-size: 0.82rem;
  color: var(--success);
  margin: 0 0 1rem;
  font-weight: 600;
}

.pack-stock {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
  font-weight: 500;
}

.pack-stock strong {
  color: var(--success);
  font-weight: 700;
}

.pack-card--no-price .pack-qty {
  margin-bottom: 0.65rem;
}

.pack-qty-stepper {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pack-qty-stepper-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pack-qty-stepper-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pack-stepper-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pack-stepper-btn:hover {
  background: var(--accent);
  color: var(--accent-text);
  border-color: transparent;
}

.pack-qty-input {
  width: 3rem;
  height: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  -moz-appearance: textfield;
  appearance: textfield;
}

.pack-qty-input::-webkit-outer-spin-button,
.pack-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.95rem 1rem;
  box-sizing: border-box;
}

/* Media strip */
.media-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .media-layout {
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: start;
  }
}

.media-gif {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.media-gif img,
.media-gif video {
  width: 100%;
  height: auto;
  display: block;
}

.media-stills {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .media-stills {
    grid-template-columns: 1fr 1fr;
  }
}

.media-still {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.media-still img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.store-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .store-media-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.store-media-cell {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(17, 21, 34, 0.9);
}

.store-media-cell img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.problem-list--compact li {
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  margin-bottom: 0.5rem;
}

.solution-box--plain {
  text-align: left;
  max-width: none;
}

.benefits-grid--three {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .benefits-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps--inline .step {
  text-align: left;
}

@media (min-width: 768px) {
  .steps--inline {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 1.25rem;
  }
}

.guarantee--minimal {
  max-width: none;
  background: transparent;
  border: 1px dashed var(--border);
  padding: 1.75rem 1.25rem;
}

.guarantee--minimal h2 {
  margin-bottom: 0.5rem;
}

body.theme-compact-cool .pack-card {
  background: linear-gradient(180deg, rgba(17, 36, 58, 0.96), rgba(13, 27, 42, 0.96));
}

body.theme-compact-cool .hero-chip {
  background: rgba(15, 34, 55, 0.92);
  border-color: rgba(0, 194, 255, 0.24);
}

body.theme-compact-cool .packs-section {
  background: linear-gradient(180deg, #0c1b2e 0%, #091726 35%, #081320 100%);
}

body.theme-compact-cool .site-header {
  background: rgba(7, 18, 31, 0.92);
}

body.theme-compact-cool .pack-card--featured {
  border-color: rgba(0, 194, 255, 0.52);
  box-shadow: 0 18px 46px rgba(0, 122, 184, 0.28);
}

body.theme-compact-cool .pack-name,
body.theme-compact-cool .pack-headline {
  color: #e8f1ff;
}

body.theme-compact-cool .pack-qty {
  color: #c6d7ee;
}

body.theme-compact-cool .pack-old {
  color: #9bb0ca;
}

body.theme-compact-cool .pack-highlights li {
  background: linear-gradient(100deg, rgba(0, 194, 255, 0.2) 0%, rgba(31, 111, 255, 0.16) 100%);
  color: #d8f5ff;
  border: 1px solid rgba(0, 194, 255, 0.28);
}

body.theme-compact-cool .pack-highlights li::before {
  background: #ff6f4e;
  color: #fff;
}

/* Botón pack (elemento <button>) */
button.btn-primary {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.pack-card button.btn-primary {
  font-family: var(--font-display);
}

/* Modal de pedido */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.order-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 540px) {
  .order-modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
}

.order-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1.25rem 1.75rem;
  color: #111827;
}

@media (min-width: 540px) {
  .order-modal {
    border-radius: 18px;
  }
}

.order-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  border-radius: 8px;
}

.order-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.order-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 2rem 0.35rem 0;
  color: #0f172a;
}

.order-modal-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.45;
}

.order-pack-summary {
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.5;
}

.order-pack-inner strong {
  color: #0f172a;
}

.order-pack-qty-line {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: #475569;
}

/* Stepper compacto dentro del resumen del modal (sin caja oscura). */
.order-pack-summary .order-modal-qty-stepper {
  margin: 0.42rem 0 0.28rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.order-pack-summary .order-modal-qty-stepper .pack-qty-stepper-label {
  margin: 0;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #64748b;
  font-weight: 700;
}

.order-pack-summary .order-modal-qty-stepper .pack-qty-stepper-row {
  justify-content: flex-start;
  gap: 0.28rem;
}

.order-pack-summary .order-modal-qty-stepper .pack-stepper-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: transparent;
  color: #334155;
  font-size: 1.1rem;
}

.order-pack-summary .order-modal-qty-stepper .pack-stepper-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

.order-pack-summary .order-modal-qty-stepper .pack-qty-input {
  width: 2.3rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: transparent;
  color: #0f172a;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.order-pack-unit-note {
  font-size: 0.82rem;
  color: #64748b;
}

.order-pack-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.88rem;
  margin-right: 0.35rem;
}

.order-pack-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: #c026d3;
}

.order-cop {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.order-field .req {
  color: #dc2626;
}

.order-field-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .order-field-doc-grid {
    grid-template-columns: 1fr;
  }
}

.order-field-half {
  min-width: 0;
}

.order-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.15rem 0.65rem 0.15rem 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.order-input-wrap:focus-within {
  border-color: #c026d3;
  box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.12);
}

.order-input-wrap input,
.order-select-wrap select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.65rem 0.25rem;
  min-width: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: #0f172a;
}

.order-input-wrap input::placeholder {
  color: #94a3b8;
}

.order-input-wrap input:focus,
.order-select-wrap select:focus {
  outline: none;
}

.order-ico {
  flex-shrink: 0;
  display: flex;
  color: #64748b;
}

.order-select-wrap {
  padding-left: 0.65rem;
}

.order-select-wrap select {
  cursor: pointer;
  width: 100%;
}

.order-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

.order-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

body.theme-compact-cool .order-submit {
  background: linear-gradient(90deg, #00c2ff, #1f6fff);
  color: #021321;
}

body.theme-compact-cool .order-submit:hover {
  background: linear-gradient(90deg, #38d2ff, #4386ff);
}

/* Consentimiento: barra inferior (no bloquea la landing) */
html.terms-consent-open body {
  padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
  html.terms-consent-open body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

.terms-consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.1);
}

.terms-consent-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.terms-consent-msg {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.terms-consent-inline-link {
  color: #0f172a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-consent-inline-link:hover {
  color: #111827;
}

.terms-consent-actions {
  flex-shrink: 0;
}

.terms-consent-btn {
  min-width: 9rem;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: #111827;
  color: #fff;
}

.terms-consent-btn:hover {
  background: #0b1220;
}

/* Confirmación de pedido */
.order-success-panel {
  padding-top: 0.25rem;
}

.order-success-title {
  margin-top: 0;
}

.order-success-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.order-success-meta {
  margin-bottom: 0.75rem;
}

.order-success-id {
  margin: 0;
  font-size: 0.9rem;
  color: #0f172a;
}

.order-success-warn {
  margin: 0;
  font-size: 0.85rem;
  color: #b45309;
}

.order-success-dl {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}

.order-success-dl dt {
  margin: 0;
  font-weight: 600;
  color: #64748b;
}

.order-success-dl dd {
  margin: 0;
  color: #0f172a;
}

.order-success-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #b91c1c;
}

.order-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.theme-compact-cool .btn-secondary {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(138, 173, 214, 0.35);
  background: #0f2237;
  color: #d6ebff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

body.theme-compact-cool .btn-secondary:hover {
  background: #132a41;
}

/* Página pedido-gracias.html */
.thank-you-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.thank-you-shell {
  padding: 2rem 1rem 3rem;
  max-width: 32rem;
  margin: 0 auto;
}

.thank-you-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.thank-you-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6366f1;
  font-family: var(--font-display);
}

.thank-you-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.thank-you-id {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.thank-you-id strong {
  color: #4f46e5;
  font-size: 1.15rem;
}

.thank-you-date {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
}

.thank-you-dl {
  margin-bottom: 1.25rem;
}

.thank-you-totals {
  margin: 0 0 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.7rem 0.85rem;
}

.thank-you-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #334155;
  padding: 0.2rem 0;
}

.thank-you-total-row strong {
  color: #0f172a;
  font-size: 0.95rem;
}

.thank-you-total-row.thank-you-saved strong {
  color: #16a34a;
}

.thank-you-wa {
  margin: 0 0 1rem;
}

.thank-you-wa-link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
}

.thank-you-actions {
  margin: 0;
}

.thank-you-back {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.thank-you-back:hover {
  background: #f8fafc;
}

.thank-you-error {
  color: #b91c1c;
  line-height: 1.5;
}

.thank-you-error a {
  color: #4f46e5;
}
