:root {
  /* Misma pila que `body`: en páginas nuevas no redefinir `font-family` ni el fondo en `body.page-*`. */
  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue",
    sans-serif;
  --bg0: #070714;
  --bg1: #0b0b1e;
  /* Trama táctica: una sola capa cover (sin mosaico ni costuras) */
  --bg-war-tile: url("../images/bg-war-pattern.svg");
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #b7ff3c;
  --accent2: #7a5cff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 24px;
  --header-teal: #1a3a3a;
  --header-teal-bright: #2dd4bf;
  --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: #05060d;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  /* Sin height:100%: el body crece con el contenido y el fondo (cover) cubre todo el scroll */
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  font-family: var(--font-body);
  background-color: #05060d;
  background-image:
    radial-gradient(1000px 620px at 50% 0%, rgba(45, 212, 191, 0.07), transparent 55%),
    radial-gradient(900px 500px at 15% 5%, rgba(122, 92, 255, 0.32), transparent 60%),
    radial-gradient(780px 480px at 88% 12%, rgba(90, 110, 85, 0.12), transparent 58%),
    radial-gradient(700px 450px at 60% 72%, rgba(122, 92, 255, 0.2), transparent 55%),
    linear-gradient(165deg, rgba(5, 6, 13, 0.88) 0%, rgba(8, 10, 20, 0.82) 45%, rgba(5, 7, 14, 0.9) 100%),
    var(--bg-war-tile);
  /* Última capa: cubre todo el body (toda la altura del scroll) sin repetir → sin costuras */
  background-size: auto, auto, auto, auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: scroll;
  background-position: top center, top left, top right, center, center, center;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 0.95em;
}

.container {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top */
.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(26, 58, 58, 0.95), rgba(15, 30, 35, 0.92));
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 12px 0;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: color var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.brand:hover {
  color: var(--header-teal-bright);
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122, 92, 255, 1), rgba(45, 212, 191, 0.85));
  box-shadow: 0 10px 35px rgba(45, 212, 191, 0.2);
}

.social-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
  min-width: 148px;
  justify-content: center;
}

.social-btn-lg .social-icon {
  width: 24px;
  height: 24px;
}

.social-tiktok:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 242, 234, 0.12);
  box-shadow: 0 10px 28px rgba(0, 242, 234, 0.15);
}

.social-discord:hover {
  border-color: rgba(88, 101, 242, 0.55);
  background: rgba(88, 101, 242, 0.18);
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.22);
}

.social-youtube:hover {
  border-color: rgba(255, 0, 0, 0.45);
  background: rgba(255, 0, 0, 0.12);
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.18);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-link:hover {
  color: var(--header-teal-bright);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-link.is-active {
  color: var(--header-teal-bright);
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.1);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cart-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.cart-icon {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  background: var(--accent);
  color: #0b0b1e;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cart-badge--hidden {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.cart-btn--pulse {
  animation: cart-btn-pulse 0.45s ease;
}

@keyframes cart-btn-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.35);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-btn--pulse {
    animation: none;
  }

  .cart-badge {
    transition: none;
  }
}

.currency-wrap {
  display: inline-flex;
  align-items: center;
}

.currency-select {
  appearance: none;
  padding: 10px 32px 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.7' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.currency-select:hover {
  border-color: rgba(45, 212, 191, 0.35);
  background-color: rgba(45, 212, 191, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-header-cta {
  padding: 10px 18px;
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  gap: 10px;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast),
    box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(183, 255, 60, 1), rgba(183, 255, 60, 0.75));
  color: #0b0b1e;
  border-color: rgba(183, 255, 60, 0.35);
  box-shadow: 0 16px 45px rgba(183, 255, 60, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(183, 255, 60, 1), rgba(122, 92, 255, 0.35));
  filter: brightness(1.03);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

/* Hero */
.hero {
  padding: 54px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  grid-template-rows: auto auto;
  column-gap: clamp(16px, 2.2vw, 22px);
  row-gap: 22px;
  align-items: start;
}

/* Fila 1: titular | (vacío). Fila 2: panel ¿Qué es…? alineado con recuadro imagen */
.hero-intro {
  grid-column: 1;
  grid-row: 1;
}

.hero-intro .sub {
  margin-bottom: 12px;
}

.hero-intro .sub:last-of-type {
  margin-bottom: 0;
}

.hero-about-panel {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  max-width: min(56ch, 100%);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(183, 255, 60, 0.55);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
}

.sub-compact {
  margin: 6px 0 0;
}

/* Hero: recuadro “qué ofrece” */
.hero-offer {
  position: relative;
  margin-top: 22px;
  max-width: min(56ch, 100%);
  padding: 22px 20px 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(122, 92, 255, 0.14), transparent 52%),
    radial-gradient(90% 80% at 100% 100%, rgba(45, 212, 191, 0.1), transparent 48%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(8, 10, 22, 0.72));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-offer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 212, 191, 0.35) 20%,
    var(--accent) 50%,
    rgba(122, 92, 255, 0.65) 78%,
    transparent
  );
  opacity: 0.95;
  pointer-events: none;
}

.hero-offer-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(183, 255, 60, 0.06), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(122, 92, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-offer-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.hero-offer-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 520px) {
  .hero-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }
}

.hero-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-offer-item:hover {
  border-color: rgba(45, 212, 191, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(45, 212, 191, 0.08);
}

.hero-offer-ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 10px;
  background: rgba(122, 92, 255, 0.15);
  border: 1px solid rgba(122, 92, 255, 0.22);
}

.hero-offer-text {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 2px;
}

.hero-offer--in-panel {
  margin-top: 0;
  max-width: none;
}

.hero-about-panel .panel-inner > h2 {
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions-compact {
  margin-top: 14px;
}

.hero-media {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius2);
  border: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  min-height: clamp(360px, 42vw, 440px);
  width: 100%;
  padding: clamp(12px, 2.2vw, 22px) clamp(10px, 1.6vw, 16px);
  background:
    radial-gradient(ellipse 95% 75% at 50% 110%, rgba(45, 212, 191, 0.14), transparent 58%),
    radial-gradient(ellipse 70% 60% at 92% 18%, rgba(122, 92, 255, 0.22), transparent 52%),
    radial-gradient(ellipse 55% 50% at 8% 35%, rgba(26, 58, 58, 0.45), transparent 50%),
    radial-gradient(ellipse 80% 55% at 50% 50%, rgba(15, 18, 32, 0.95), transparent 72%),
    linear-gradient(168deg, #070a12 0%, #0d121c 38%, #080b14 72%, #060810 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  background: radial-gradient(520px 280px at 28% 22%, rgba(122, 92, 255, 0.28), transparent 62%),
    radial-gradient(480px 320px at 72% 68%, rgba(183, 255, 60, 0.1), transparent 58%);
  filter: blur(14px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Viñeta suave: con PNG transparente deja ver mejor el degradado del fondo */
  background: radial-gradient(ellipse 95% 88% at 50% 48%, transparent 48%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

.mock {
  position: relative;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mock-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
}

.stat b {
  display: block;
  font-size: 18px;
}

.stat span {
  color: var(--muted2);
  font-size: 13px;
}

.mock-bottom {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Feature cards row */
.section {
  padding: 18px 0 8px;
}

.section h2 {
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  min-height: 132px;
}

#productos .cards .card {
  transition:
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

#productos .cards .card:hover {
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.26), 0 0 28px rgba(122, 92, 255, 0.16);
  border-color: rgba(122, 92, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  #productos .cards .card,
  body.page-products #productos .product-card,
  body.page-products #productos .product-card-media {
    transition: none !important;
  }
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(122, 92, 255, 0.18);
  border: 1px solid rgba(122, 92, 255, 0.25);
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.1px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* About + video */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.panel {
  background: var(--card2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-inner {
  padding: 18px;
}

.panel-inner:has(.hero-offer--in-panel) {
  padding: 12px;
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px;
  border-radius: 16px;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(183, 255, 60, 0.16);
  border: 1px solid rgba(183, 255, 60, 0.24);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  color: rgba(183, 255, 60, 0.95);
  font-weight: 900;
}

.video {
  position: relative;
  min-height: 320px;
  cursor: pointer;
  background: radial-gradient(700px 300px at 35% 40%, rgba(122, 92, 255, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}

.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1520975693411-35a0c1f1a9e2?auto=format&fit=crop&w=1200&q=80")
    center / cover no-repeat;
  opacity: 0.22;
  filter: saturate(1.1) contrast(1.05);
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  text-align: center;
  padding: 18px;
}

.playbtn {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(122, 92, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
  user-select: none;
}

.video:hover .playbtn {
  transform: scale(1.03);
}

.play small {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

/* Pricing */
.pricing {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.price-left {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 650;
}

.price-title {
  font-weight: 900;
  color: var(--text);
  font-size: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  color: var(--text);
}

.price b {
  font-size: 34px;
  letter-spacing: -0.4px;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.trust {
  width: 100%;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 12px;
}

.trust .t {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ (página dedicada: faq.html) */
.faq-page-main {
  padding: 28px 0 56px;
}

.faq-section-head {
  max-width: 62ch;
  margin-bottom: 22px;
}

.faq-page-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.35px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.faq-section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.faq-ds4-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.15px;
  color: rgba(255, 255, 255, 0.92);
}

.faq-ds4-title--divider {
  margin-top: 8px;
  margin-bottom: 6px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-ds4-sub {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted2);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(12, 10, 24, 0.55));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(45, 212, 191, 0.22);
}

.faq-item[open] {
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(45, 212, 191, 0.08);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::marker {
  content: "";
}

.faq-q {
  flex: 1;
  text-align: left;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.faq-chevron::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--header-teal-bright);
  border-bottom: 2px solid var(--header-teal-bright);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-chevron::before {
  transform: translate(-50%, -20%) rotate(-135deg);
}

.faq-panel {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-panel > *:first-child {
  margin-top: 14px;
}

.faq-panel p {
  margin: 0 0 12px;
}

.faq-panel p:last-child {
  margin-bottom: 0;
}

.faq-warn {
  padding: 12px 14px;
  margin: 14px 0 !important;
  border-radius: 12px;
  background: rgba(220, 60, 60, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.35);
  color: rgba(255, 210, 210, 0.92);
  font-size: 14px;
}

.faq-warn strong {
  color: #ffb4b4;
}

.faq-warn-inline {
  color: #ffb0a0;
}

.faq-strong-label {
  margin: 16px 0 8px !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.faq-list {
  margin: 0 0 12px;
  padding: 0 0 0 1.15em;
  display: grid;
  gap: 8px;
}

.faq-list li {
  padding-left: 4px;
}

.faq-closing {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.faq-ol {
  margin: 0;
  padding: 0 0 0 1.25em;
  display: grid;
  gap: 12px;
}

.faq-ol li {
  padding-left: 6px;
}

.faq-panel a {
  color: var(--header-teal-bright);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-panel a:hover {
  color: #5eeadb;
}

@media (max-width: 640px) {
  .faq-summary {
    padding: 14px 14px;
    font-size: 14px;
  }

  .faq-panel {
    padding: 0 14px 16px;
  }

  .rewasd-card {
    padding: 18px 16px 16px;
  }
}

/* Footer */
footer {
  padding: 28px 0 42px;
  color: var(--muted2);
  font-size: 13px;
}

.footer-socials {
  text-align: center;
  margin-bottom: 28px;
  padding: 24px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.footer-socials-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.foot-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(920px, 92vw);
  margin: 6vh auto;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.modal-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
}

.modal-body {
  padding: 16px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Utilities */
.section-bottom {
  padding-bottom: 12px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-intro,
  .hero-about-panel,
  .hero-media {
    grid-column: 1;
    grid-row: auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: clamp(300px, 52vw, 400px);
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .nav-main {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 4px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 11px;
  }

  .social-compact {
    width: 100%;
    justify-content: flex-start;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .btn-header-cta {
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .social-btn-lg {
    min-width: 100%;
  }
}

/* ——— DS4 ELI: marca, hero imagen, video, tienda productos ——— */

.brand-logo {
  height: 44px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  flex: 0 0 auto;
  display: block;
}

.hero-media .hero-product-img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: min(860px, 100%);
  height: auto;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 28px rgba(45, 212, 191, 0.1));
}

.video-embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-embed {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

body.page-products {
  --plime: #c4ff33;
  --plime-dim: rgba(196, 255, 51, 0.35);
  --pprice: #ff5a5a;
  --pdeep: #0c0618;
}

.products-hero {
  padding-top: 28px;
  padding-bottom: 8px;
  text-align: center;
}

.products-hero-title {
  margin: 0 0 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 40px rgba(122, 92, 255, 0.35), 0 0 80px rgba(45, 212, 191, 0.12);
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr min(320px, 34%);
  gap: 22px;
  align-items: start;
  padding: 28px 0 40px;
}

.products-layout--store {
  grid-template-columns: minmax(280px, 34%) 1fr;
  gap: 26px;
  padding-top: 12px;
}

.products-sidebar {
  position: sticky;
  top: 88px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.products-sidebar--pay {
  padding: 20px 18px 22px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(125, 249, 255, 0.12), transparent 55%),
    radial-gradient(90% 70% at 100% 30%, rgba(122, 92, 255, 0.18), transparent 50%),
    linear-gradient(165deg, rgba(10, 8, 22, 0.98) 0%, rgba(14, 10, 32, 0.96) 50%, rgba(8, 6, 18, 0.99) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pay-block--featured {
  padding: 14px 14px 16px;
  margin: -4px -6px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125, 249, 255, 0.1), rgba(45, 212, 191, 0.06));
  border: 1px solid rgba(125, 249, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(125, 249, 255, 0.08);
}

.pay-block--featured .pay-block-title {
  color: rgba(186, 252, 255, 0.98);
  text-shadow: 0 0 24px rgba(125, 249, 255, 0.35);
}

.pay-block {
  margin-bottom: 22px;
}

.pay-block:last-child {
  margin-bottom: 0;
}

.pay-block-title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.pay-block-text,
.pay-block-note {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.pay-block-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.pay-cards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-card-chip {
  flex: 1 1 auto;
  min-width: 52px;
  text-align: center;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.pay-card-chip--amex {
  background: linear-gradient(180deg, #2a6fde, #1a4a9e);
}
.pay-card-chip--discover {
  background: linear-gradient(180deg, #ff6c00, #c44a00);
}
.pay-card-chip--visa {
  background: linear-gradient(180deg, #1a1f71, #0d1250);
}
.pay-card-chip--mc {
  background: linear-gradient(180deg, #eb001b, #f79e1b);
}
.pay-card-chip--maestro {
  background: linear-gradient(180deg, #0064a5, #0099de);
}

.pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.pay-method-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 10px 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  min-height: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button.pay-method-tile {
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0;
  width: 100%;
  text-align: inherit;
}

.pay-method-tile:focus-visible {
  outline: 2px solid rgba(45, 212, 191, 0.55);
  outline-offset: 2px;
}

.pay-method-tile:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(45, 212, 191, 0.15),
    0 0 22px rgba(45, 212, 191, 0.22);
}

.pay-method-tile:hover .pay-method-name {
  color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .pay-method-tile {
    transition: none;
  }
}

.pay-method-logo {
  width: 52px;
  height: 52px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  box-sizing: border-box;
}

.pay-method-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.pay-method-name {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
  max-width: 100%;
  padding: 0 2px;
}

.pay-block--socials {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-socials-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 12px;
}

.pay-social-hit {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pay-social-hit:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 249, 255, 0.45);
  box-shadow: 0 10px 28px rgba(125, 249, 255, 0.12);
}

.pay-social-icon {
  width: 28px;
  height: 28px;
}

.pay-socials-caption {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.products-main {
  min-width: 0;
}

.products-catalog-section {
  padding-top: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.products-grid--store {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Catálogo products.html — resplandor solo al :hover de cada tarjeta */
.product-card {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(12, 8, 28, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  isolation: isolate;
}

body.page-products #productos .product-card {
  transition:
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

body.page-products #productos .product-card:hover {
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(125, 249, 255, 0.35),
    0 0 36px rgba(125, 249, 255, 0.22),
    0 0 64px rgba(122, 92, 255, 0.12);
  border-color: rgba(125, 249, 255, 0.42);
}

.product-card > * {
  position: relative;
  z-index: 2;
}

.product-card--new {
  padding-top: 20px;
}

.product-card > .product-ribbon {
  z-index: 6;
}

.product-ribbon {
  position: absolute;
  top: 12px;
  left: -6px;
  padding: 6px 14px 6px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #0c0618;
  background: linear-gradient(90deg, #ffe600, #ffcc00);
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.35);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.product-card-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(122, 92, 255, 0.25), transparent 65%),
    linear-gradient(145deg, rgba(25, 18, 45, 0.95), rgba(8, 6, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

body.page-products #productos .product-card-media {
  transition:
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

body.page-products #productos .product-card:hover .product-card-media {
  border-color: rgba(125, 249, 255, 0.55);
  box-shadow:
    inset 0 0 36px rgba(125, 249, 255, 0.14),
    0 0 28px rgba(125, 249, 255, 0.28);
}

.product-card-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

/* Misma caja 16:10 que el resto; fotos verticales: encuadre al centro del sujeto */
.product-card-media--photo-portrait > img {
  object-position: center 38%;
}

/* Gráficos 1:1 en la misma caja (recorte vertical uniforme) */
.product-card-media--photo-square > img {
  object-position: center center;
}

/* ART IS WAR: pieza vertical con título arriba — prioriza cabecera y auriculares */
.product-card-media--photo-art-war > img {
  object-position: center 30%;
}

.product-card-media .product-card-media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.product-card-media:has(> img) .product-card-media-inner {
  display: none;
}

.product-card-media-label {
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 18px);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.product-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.product-card-desc {
  margin: 0;
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.product-highlight {
  color: var(--plime);
  font-weight: 700;
}

.product-price {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--pprice);
  text-shadow: 0 0 24px rgba(255, 90, 90, 0.35);
}

/* DS4 ELI PREDATOR: abrir ficha con JS en cart.js (clic en la tarjeta, no en el botón) */
body.page-products #productos .product-card--predator-detail {
  cursor: pointer;
}

body.page-products #productos .product-card--predator-detail .btn-add-cart {
  cursor: pointer;
}

/* Ficha DS4 ELI PREDATOR en página dedicada */
body.page-product-predator #inicio.product-detail {
  scroll-margin-top: 92px;
}

.product-detail {
  margin-top: 8px;
  padding-top: 36px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

.product-detail:target {
  animation: product-detail-flash 1.1s ease-out 1;
}

@keyframes product-detail-flash {
  0% {
    box-shadow: inset 0 0 0 0 rgba(125, 249, 255, 0);
  }
  18% {
    box-shadow: inset 0 0 0 2px rgba(125, 249, 255, 0.45), 0 0 48px rgba(125, 249, 255, 0.12);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(125, 249, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail:target {
    animation: none;
  }
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(125, 249, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.product-detail-back:hover {
  color: #e0ffff;
}

.product-detail-hero {
  margin-bottom: 28px;
}

.product-detail-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 90, 90, 0.95);
  text-shadow: 0 0 20px rgba(255, 90, 90, 0.35);
}

.product-detail-title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 40px rgba(122, 92, 255, 0.25), 0 0 80px rgba(45, 212, 191, 0.08);
}

.product-detail-title-accent {
  display: inline-block;
  margin-left: 0.12em;
  background: linear-gradient(100deg, #c4ff33 0%, #7af9ff 45%, #7a5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(196, 255, 51, 0.35));
}

.product-detail-lead {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.product-detail-lead strong {
  color: rgba(255, 230, 150, 0.98);
  font-weight: 800;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .product-detail-gallery {
    grid-template-columns: 1fr;
  }
}

.product-detail-figure {
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(125, 249, 255, 0.24);
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(122, 92, 255, 0.12), transparent 65%),
    linear-gradient(145deg, rgba(25, 18, 45, 0.9), rgba(8, 6, 18, 0.95));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.product-detail-gallery img {
  display: block;
  width: 100%;
  max-width: min(380px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  vertical-align: middle;
}

.product-detail-figcaption {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.product-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.product-detail-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-detail-pill--accent {
  border-color: rgba(255, 90, 90, 0.45);
  color: #ffb8b8;
  box-shadow: 0 0 20px rgba(255, 90, 90, 0.15);
}

.product-detail-block--intro {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(12, 8, 28, 0.55));
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.product-detail-block--intro p {
  margin: 0;
}

.product-detail-callout {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 200, 80, 0.35);
  background: rgba(40, 28, 8, 0.45);
}

.product-detail-callout--warn {
  border-color: rgba(255, 90, 90, 0.4);
  background: linear-gradient(135deg, rgba(60, 12, 12, 0.55), rgba(20, 8, 14, 0.75));
}

.product-detail-callout-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8a8a;
}

.product-detail-callout p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.product-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

@media (max-width: 820px) {
  .product-detail-columns {
    grid-template-columns: 1fr;
  }
}

.product-detail-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(10, 8, 22, 0.92));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.product-detail-card--console {
  border-color: rgba(125, 249, 255, 0.28);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(125, 249, 255, 0.08), transparent 55%),
    linear-gradient(165deg, rgba(14, 12, 28, 0.95), rgba(8, 6, 18, 0.98));
}

.product-detail-card--wide {
  margin-bottom: 24px;
}

.product-detail-card-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(186, 252, 255, 0.98);
  text-shadow: 0 0 18px rgba(125, 249, 255, 0.2);
}

.product-detail-card p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.product-detail-card p:last-child {
  margin-bottom: 0;
}

.product-detail-card-note {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

.product-detail-steps {
  margin: 0 0 16px;
  padding-left: 1.15rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.product-detail-steps li {
  margin-bottom: 10px;
}

.product-detail-steps li:last-child {
  margin-bottom: 0;
}

.product-detail-inline-link {
  color: rgba(125, 249, 255, 0.98);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  word-break: break-all;
}

.product-detail-inline-link:hover {
  color: #dff;
}

.product-detail-discord-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.product-detail-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 18px;
}

.product-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-feature-ico {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
}

.product-detail-cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-top: 8px;
}

.product-detail-cta-cart {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.product-detail-cta-hint {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

/* ——— Ficha PREDATOR refinada (solo .product-detail--refined): menos brillo, más aire, CTAs claros ——— */
body.page-product-predator .product-detail--refined {
  border-top-color: rgba(255, 255, 255, 0.06);
  padding-top: 48px;
  padding-bottom: 80px;
}

body.page-product-predator .product-detail--refined:target {
  animation: none;
}

body.page-product-predator .product-detail--refined .product-detail-inner {
  max-width: min(1080px, 94vw);
}

/* Hero: copy + mockup, hook agresivo */
body.page-product-predator .product-detail--refined .product-detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

body.page-product-predator .product-detail--refined .product-detail-hero-layout--no-visual {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: clamp(22px, 3vw, 34px);
}

body.page-product-predator .product-detail--refined .product-detail-hero-copy {
  min-width: 0;
}

body.page-product-predator .product-detail--refined .product-detail-hook {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 48px rgba(125, 249, 255, 0.18);
}

body.page-product-predator .product-detail--refined .product-detail-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

body.page-product-predator .product-detail--refined .product-detail-hero-mockup {
  display: block;
  width: 100%;
  max-width: min(520px, 100%);
  height: auto;
  margin: 0 auto;
}

body.page-product-predator .product-detail--refined .product-detail-cta--hero .product-detail-btn-cart {
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  padding: 14px 26px;
  font-size: 12px;
}

body.page-product-predator .product-detail--refined .product-detail-cta--hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 900px) {
  body.page-product-predator .product-detail--refined .product-detail-hero-layout {
    grid-template-columns: 1fr;
  }

  body.page-product-predator .product-detail--refined .product-detail-hero-visual {
    order: -1;
    max-width: min(400px, 92vw);
    margin: 0 auto 8px;
  }

  body.page-product-predator .product-detail--refined .product-detail-cta--hero .product-detail-btn-cart {
    width: 100%;
    align-self: stretch;
  }
}

/* Bloques de contenido: aire, sin cajas pesadas */
body.page-product-predator .product-detail--refined .product-detail-segment {
  padding: 40px 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-product-predator .product-detail--refined .product-detail-pills + .product-detail-segment {
  margin-top: 12px;
}

body.page-product-predator .product-detail--refined .product-detail-pills + .product-detail-segment--after-pills {
  padding-top: 36px;
}

body.page-product-predator .product-detail--refined .product-detail-segment--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

body.page-product-predator .product-detail--refined .product-detail-h2 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

body.page-product-predator .product-detail--refined .product-detail-plain {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

body.page-product-predator .product-detail--refined .product-detail-plain strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

body.page-product-predator .product-detail--refined .product-detail-steps--plain {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

body.page-product-predator .product-detail--refined .product-detail-steps--plain li {
  margin-bottom: 6px;
}

body.page-product-predator .product-detail--refined .product-detail-compat-line {
  margin: 20px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(186, 252, 255, 0.88);
}

body.page-product-predator .product-detail--refined .product-detail-segment--split .product-detail-discord-btn {
  margin-top: 4px;
}

@media (max-width: 720px) {
  body.page-product-predator .product-detail--refined .product-detail-segment--split {
    grid-template-columns: 1fr;
  }
}

body.page-product-predator .product-detail--refined .product-detail-trust-faq-link {
  margin: 8px 0 0;
  padding-top: 4px;
  text-align: center;
}

body.page-product-predator .product-detail--refined .product-detail-cta--scroll-top {
  display: flex;
  justify-content: center;
  padding: 40px 0 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

body.page-product-predator .product-detail--refined .product-detail-scroll-top {
  min-width: 7.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

body.page-product-predator .product-detail--refined .product-detail-back {
  color: rgba(125, 249, 255, 0.75);
  font-weight: 600;
  margin-bottom: 28px;
}

body.page-product-predator .product-detail--refined .product-detail-kicker {
  color: rgba(255, 255, 255, 0.45);
  text-shadow: none;
  letter-spacing: 0.14em;
  font-weight: 700;
}

body.page-product-predator .product-detail--refined .product-detail-title {
  text-shadow: none;
  margin-bottom: 10px;
}

body.page-product-predator .product-detail--refined .product-detail-title-accent {
  background: linear-gradient(100deg, #a8e063 0%, #6ee0d0 50%, #8b9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}

body.page-product-predator .product-detail--refined .product-detail-price-line {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

body.page-product-predator .product-detail--refined .product-detail-price-amount {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 120, 120, 0.95);
  letter-spacing: 0.02em;
}

body.page-product-predator .product-detail--refined .product-detail-price-period {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

body.page-product-predator .product-detail--refined .product-detail-price-note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

body.page-product-predator .product-detail--refined .product-detail-lead {
  margin-bottom: 20px;
  max-width: 38rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

body.page-product-predator .product-detail--refined .product-detail-lead strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

body.page-product-predator .product-detail--refined .product-detail-cta {
  margin: 0 0 28px;
}

body.page-product-predator .product-detail--refined .product-detail-cta--hero {
  margin-bottom: 32px;
}

body.page-product-predator .product-detail--refined .product-detail-cta--after-media {
  margin-top: 24px;
  margin-bottom: 8px;
}

body.page-product-predator .product-detail--refined .product-detail-btn-buy {
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.page-product-predator .product-detail--refined .product-detail-btn-buy--lg {
  padding: 14px 28px;
  font-size: 15px;
}

body.page-product-predator .product-detail--refined .product-detail-cta-micro {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.45;
}

body.page-product-predator .product-detail--refined .product-detail-btn-buy-outline {
  max-width: 340px;
  margin: 0 auto;
  box-shadow: none;
}

body.page-product-predator .product-detail--refined .product-detail-gallery {
  gap: 24px 28px;
  margin-top: 20px;
}

body.page-product-predator .product-detail--refined .product-detail-figure {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.page-product-predator .product-detail--refined .product-detail-gallery img {
  max-width: min(520px, 100%);
  border-radius: 8px;
}

body.page-product-predator .product-detail--refined .product-detail-figcaption {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
}

body.page-product-predator .product-detail--refined .product-detail-pills {
  margin-bottom: 32px;
  margin-top: 28px;
}

body.page-product-predator .product-detail--refined .product-detail-pill {
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

body.page-product-predator .product-detail--refined .product-detail-pill--accent {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 200, 200, 0.85);
  box-shadow: none;
}

body.page-product-predator .product-detail--refined .product-detail-block--intro {
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

body.page-product-predator .product-detail--refined .product-detail-intro-lead {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

body.page-product-predator .product-detail--refined .product-detail-scan-list {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

body.page-product-predator .product-detail--refined .product-detail-scan-list li {
  margin-bottom: 8px;
}

body.page-product-predator .product-detail--refined .product-detail-scan-list li:last-child {
  margin-bottom: 0;
}

body.page-product-predator .product-detail--refined .product-detail-scan-list--tight {
  font-size: 14px;
  line-height: 1.55;
}

body.page-product-predator .product-detail--refined .product-detail-callout--compat {
  margin-bottom: 36px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(125, 249, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

body.page-product-predator .product-detail--refined .product-detail-callout--compat .product-detail-callout-title {
  color: rgba(186, 252, 255, 0.9);
  text-shadow: none;
  font-size: 12px;
  letter-spacing: 0.1em;
}

body.page-product-predator .product-detail--refined .product-detail-trust {
  margin-bottom: 0;
  padding: 40px 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

body.page-product-predator .product-detail--refined .product-detail-trust-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

body.page-product-predator .product-detail--refined .product-detail-trust-badges {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

body.page-product-predator .product-detail--refined .product-detail-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

body.page-product-predator .product-detail--refined .product-detail-trust-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(45, 212, 191, 0.95);
  background: rgba(45, 212, 191, 0.08);
  border: none;
}

body.page-product-predator .product-detail--refined .product-detail-mini-faq {
  margin-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

body.page-product-predator .product-detail--refined .product-detail-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-product-predator .product-detail--refined .product-detail-faq-item summary {
  cursor: pointer;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

body.page-product-predator .product-detail--refined .product-detail-faq-item summary::-webkit-details-marker {
  display: none;
}

body.page-product-predator .product-detail--refined .product-detail-faq-item summary::after {
  content: "+";
  float: right;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

body.page-product-predator .product-detail--refined .product-detail-faq-item[open] summary::after {
  content: "−";
}

body.page-product-predator .product-detail--refined .product-detail-faq-item p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

body.page-product-predator .product-detail--refined .product-detail-faq-item a {
  color: rgba(125, 249, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-product-predator .product-detail--refined .product-detail-link-faq {
  font-size: 14px;
  font-weight: 600;
  color: rgba(125, 249, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-product-predator .product-detail--refined .product-detail-columns {
  gap: 20px;
  margin-bottom: 28px;
}

body.page-product-predator .product-detail--refined .product-detail-card {
  box-shadow: none;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.page-product-predator .product-detail--refined .product-detail-card--console {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

body.page-product-predator .product-detail--refined .product-detail-card-title {
  text-shadow: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  letter-spacing: 0.04em;
}

body.page-product-predator .product-detail--refined .product-detail-card p,
body.page-product-predator .product-detail--refined .product-detail-card-note {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

body.page-product-predator .product-detail--refined .product-detail-card--wide {
  margin-bottom: 32px;
}

body.page-product-predator .product-detail--refined .product-detail-features {
  gap: 6px 20px;
}

body.page-product-predator .product-detail--refined .product-detail-features li {
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.btn-comprar-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plime);
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid var(--plime);
  box-shadow: 0 0 24px var(--plime-dim);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-comprar-outline:hover {
  background: rgba(196, 255, 51, 0.12);
  color: #e8ff99;
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(196, 255, 51, 0.35);
}

button.btn,
button.btn-comprar-outline {
  font: inherit;
  cursor: pointer;
  appearance: none;
  text-decoration: none;
}

.btn-add-cart {
  width: 100%;
}

/* ——— Carrito (todas las páginas con icono en header) ——— */
body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 13, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(26, 58, 58, 0.98), rgba(12, 14, 28, 0.98));
  border-left: 1px solid rgba(45, 212, 191, 0.22);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.cart-drawer-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer-close:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.12);
  color: var(--header-teal-bright);
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 14px 18px;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  margin: 24px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-line-media {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-line-media img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cart-line-title {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.cart-line-meta {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.cart-line-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.cart-qty-btn {
  width: 36px;
  height: 34px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-qty-btn:hover {
  background: rgba(45, 212, 191, 0.15);
  color: var(--header-teal-bright);
}

.cart-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.cart-line-remove {
  border: none;
  background: transparent;
  color: rgba(255, 120, 120, 0.95);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px 0;
}

.cart-line-remove:hover {
  color: #ffb4b4;
}

.cart-line-price {
  font-size: 14px;
  font-weight: 800;
  color: #ff7a7a;
  text-align: right;
  white-space: nowrap;
  align-self: center;
}

.cart-drawer-foot {
  padding: 16px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}

.cart-drawer-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.cart-drawer-total-row strong {
  font-size: 18px;
  color: #ff8a8a;
  letter-spacing: 0.02em;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-checkout-btn {
  text-align: center;
}

.cart-btn-clear {
  font-size: 13px;
}

.cart-drawer-hint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--muted2);
}

.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 135;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #0b0b1e;
  background: linear-gradient(135deg, var(--accent), rgba(45, 212, 191, 0.95));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.cart-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer-backdrop,
  .cart-drawer-panel {
    transition: none;
  }

  .cart-drawer.is-open .cart-drawer-panel {
    transform: translateX(0);
  }

  .cart-toast {
    transition: none;
  }
}

.section-crosslink {
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-crosslink a {
  color: var(--header-teal-bright);
  font-weight: 750;
}

@media (max-width: 900px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-layout--store {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: static;
    top: auto;
  }

  .products-grid--store {
    grid-template-columns: 1fr;
  }
}

/* ——— Página Reseñas / TikTok ——— */

.reviews-hub-main {
  position: relative;
  padding: 36px 0 56px;
  min-height: 55vh;
  overflow: hidden;
}

.reviews-hub-inner {
  position: relative;
  z-index: 1;
}

.reviews-hub-header {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 36px;
}

.reviews-hub-title {
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 40px rgba(122, 92, 255, 0.25);
}

.reviews-hub-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  border-radius: 2px;
}

.reviews-hub-lead {
  margin: 0;
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.reviews-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.reviews-hub-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(125, 249, 255, 0.45);
  box-shadow: 0 18px 48px rgba(125, 249, 255, 0.12), 0 0 0 1px rgba(125, 249, 255, 0.15);
}

.reviews-hub-card:focus-visible {
  outline: 2px solid var(--header-teal-bright);
  outline-offset: 3px;
}

.reviews-hub-card-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.reviews-hub-card-media {
  width: 100%;
  height: 100%;
  background: #121018;
  background-size: cover;
  background-position: center;
}

.reviews-hub-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviews-hub-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-hub-card-tt {
  color: #fe2c55;
  font-weight: 800;
}

.reviews-hub-footnote {
  margin: 28px auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.reviews-hub-footnote strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.reviews-hub-footnote a {
  color: var(--header-teal-bright);
  font-weight: 700;
}

.reviews-hub-footnote a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .reviews-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .reviews-hub-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .reviews-hub-main {
    padding-top: 24px;
  }
}

/* PayU: enlace secundario en el carrito */
.cart-payu-discord {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--header-teal-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-payu-discord:hover {
  color: #99f6e4;
}

#cart-btn-payu:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Modal datos comprador → PayU */
body.payu-modal-open {
  overflow: hidden;
}

.payu-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  pointer-events: none;
  visibility: hidden;
}

.payu-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.payu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 13, 0.75);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.payu-modal.is-open .payu-modal-backdrop {
  opacity: 1;
}

.payu-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(440px, calc(100vw - 24px));
  max-height: min(560px, 90dvh);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 20px 22px;
  border-radius: var(--radius2);
  background: linear-gradient(165deg, rgba(26, 58, 58, 0.98), rgba(12, 14, 28, 0.98));
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: var(--shadow);
  opacity: 0;
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.payu-modal.is-open .payu-modal-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.payu-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.payu-modal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.payu-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.payu-modal-close:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
}

.payu-modal-lead {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.payu-payer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payu-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.payu-field span {
  letter-spacing: 0.04em;
}

.payu-field input,
.payu-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 600;
}

.payu-field input:focus,
.payu-field select:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.15);
}

.payu-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

@media (max-width: 480px) {
  .payu-field-row {
    grid-template-columns: 1fr;
  }
}

.payu-modal-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.payu-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .payu-modal-backdrop,
  .payu-modal-panel {
    transition: none;
  }

  .payu-modal.is-open .payu-modal-panel {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Discord info modal (DMA 75T — compra asistida) */
body.discord-info-modal-open {
  overflow: hidden;
}

.discord-info-modal {
  position: fixed;
  inset: 0;
  z-index: 126;
  pointer-events: none;
  visibility: hidden;
}

.discord-info-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.discord-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 13, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.discord-info-modal.is-open .discord-info-modal-backdrop {
  opacity: 1;
}

.discord-info-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(520px, calc(100vw - 24px));
  max-height: min(640px, 92dvh);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 18px 16px;
  border-radius: var(--radius2);
  background: linear-gradient(165deg, rgba(26, 58, 58, 0.98), rgba(12, 14, 28, 0.98));
  border: 1px solid rgba(45, 212, 191, 0.22);
  box-shadow: var(--shadow);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-info-modal.is-open .discord-info-modal-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.discord-info-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.discord-info-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.discord-info-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.discord-info-modal-close:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
}

.discord-info-modal-body p {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.discord-info-modal-list {
  margin: 10px 0 12px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.discord-info-modal-note {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.discord-info-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .discord-info-modal-backdrop,
  .discord-info-modal-panel {
    transition: none;
  }

  .discord-info-modal.is-open .discord-info-modal-panel {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Modal: método de pago alternativo (sidebar productos) */
body.pay-alt-modal-open {
  overflow: hidden;
}

.pay-alt-modal {
  position: fixed;
  inset: 0;
  z-index: 128;
  pointer-events: none;
  visibility: hidden;
}

.pay-alt-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.pay-alt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 13, 0.75);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.pay-alt-modal.is-open .pay-alt-modal-backdrop {
  opacity: 1;
}

.pay-alt-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(480px, calc(100vw - 24px));
  max-height: min(86dvh, 640px);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 18px 16px;
  border-radius: var(--radius2);
  background: linear-gradient(165deg, rgba(26, 58, 58, 0.98), rgba(12, 14, 28, 0.98));
  border: 1px solid rgba(45, 212, 191, 0.24);
  box-shadow:
    var(--shadow),
    0 0 40px rgba(45, 212, 191, 0.08);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pay-alt-modal.is-open .pay-alt-modal-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pay-alt-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pay-alt-modal-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pay-alt-modal-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}

.pay-alt-modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pay-alt-modal-title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
}

.pay-alt-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.pay-alt-modal-close:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
}

.pay-alt-modal-body p,
.pay-alt-modal-body li {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.pay-alt-modal-lead {
  margin: 0 0 12px;
}

.pay-alt-modal-steps {
  margin: 0 0 12px;
  padding-left: 20px;
}

.pay-alt-modal-steps li {
  margin-bottom: 8px;
}

.pay-alt-modal-steps li:last-child {
  margin-bottom: 0;
}

.pay-alt-modal-extra {
  margin: 0 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.pay-alt-modal-tip {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.18);
}

.pay-alt-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .pay-alt-modal-backdrop,
  .pay-alt-modal-panel {
    transition: none;
  }

  .pay-alt-modal.is-open .pay-alt-modal-panel {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ——— Inicio (page-home): mismo criterio visual que ficha PREDATOR — flat, aire, hook fuerte; imágenes intactas ——— */
body.page-home .home-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

body.page-home .home-title-accent {
  background: linear-gradient(100deg, #a8e063 0%, #6ee0d0 50%, #8b9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-home .hero-intro h1 {
  margin-top: 4px;
  text-shadow: none;
}

body.page-home .hero-hook {
  margin: 4px 0 16px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 48px rgba(125, 249, 255, 0.14);
  max-width: min(42rem, 100%);
}

body.page-home .hero--refined {
  padding: 52px 0 44px;
}

body.page-home .hero-grid {
  row-gap: clamp(22px, 3vw, 32px);
  column-gap: clamp(20px, 2.5vw, 28px);
}

body.page-home .panel {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.page-home .list li {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

body.page-home .list li:last-child {
  border-bottom: none;
}

body.page-home .hero-media {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: rgba(0, 0, 0, 0.22);
}

body.page-home .hero-media::before {
  opacity: 0.32;
}

body.page-home .hero-media::after {
  opacity: 0.45;
}

body.page-home .hero-media .hero-product-img {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

body.page-home .section--home-block {
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-home .home-section-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.page-home #productos .cards {
  gap: 20px;
  margin-top: 20px;
}

body.page-home #productos .card {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.page-home #productos .cards .card:hover {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.16);
  transform: none;
}

body.page-home #productos .card .icon {
  background: rgba(45, 212, 191, 0.1);
  border: none;
}

body.page-home .split--home {
  gap: clamp(22px, 3vw, 36px);
  margin-top: 8px;
}

body.page-home .hero-offer {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

body.page-home .hero-offer::after {
  display: none;
}

body.page-home .hero-offer-glow {
  display: none;
}

body.page-home .hero-offer-heading {
  color: rgba(255, 255, 255, 0.5);
}

body.page-home .hero-offer-item {
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

body.page-home .hero-offer-item:hover {
  transform: none;
  box-shadow: none;
}

body.page-home .hero-offer-ico {
  background: rgba(45, 212, 191, 0.08);
  border: none;
}

body.page-home .hero-offer-grid {
  gap: 8px 16px;
}

body.page-home .video-embed {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.page-home .footer-socials {
  border: none;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

