:root {
  --bg: #06030a;
  --bg-2: #0b0611;
  --bg-3: #14071e;
  --panel: rgba(17, 11, 27, 0.72);
  --panel-2: rgba(25, 16, 38, 0.8);
  --text: #f8f4ff;
  --muted: #b4aac8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #ff2fa6;
  --primary-2: #ff67d0;
  --accent: #8c63ff;
  --cyan: #6ee7ff;
  --gold: #ffd66b;
  --success: #79f3b6;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-pink: 0 20px 60px rgba(255, 47, 166, 0.22);
  --glow-soft: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 80px rgba(0,0,0,0.45);
  --glow-pink-strong: 0 0 30px rgba(255, 47, 166, 0.24), 0 0 80px rgba(140, 99, 255, 0.18);
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 47, 166, 0.18), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(110, 231, 255, 0.08), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(140, 99, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(255, 214, 107, 0.08), transparent 20%),
    linear-gradient(180deg, #040208 0%, #09050f 32%, #05030a 68%, #020103 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 24%);
  opacity: 0.5;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.03) 45%, transparent 55%);
  transform: translateX(-30%);
  animation: cinematicSweep 12s linear infinite;
  opacity: 0.45;
}

@keyframes cinematicSweep {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(35%);
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.33;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(255, 47, 166, 0.23);
  top: -80px;
  left: -120px;
}

.orb-b {
  width: 340px;
  height: 340px;
  background: rgba(140, 99, 255, 0.22);
  top: 120px;
  right: -80px;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: rgba(255, 103, 208, 0.12);
  bottom: 120px;
  left: 20%;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 6, 14, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-badge {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.logo-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link-btn,
.header-cart-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-link-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
}

.header-link-btn:hover {
  background: rgba(255,255,255,0.07);
}

.header-cart-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-pink);
}

.header-cart-btn:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: white;
}

.hero {
  padding: 72px 0 40px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,47,166,0.16), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(110,231,255,0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%);
  pointer-events: none;
}

.hero-backdrop-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 92%);
  opacity: 0.6;
}

.hero-grid {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f2eaff;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px var(--success);
}

.hero-top-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5efff;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-badge.live {
  color: #c8ffe2;
  border-color: rgba(121,243,182,0.28);
  box-shadow: 0 0 24px rgba(121,243,182,0.12);
}

.hero-left h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.hero-left h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #ff8cde 40%, #bb9cff 72%, #6ee7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(255, 47, 166, 0.22));
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
}

.hero-mini-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.mini-stat {
  padding: 18px;
  border-radius: 20px;
}

.mini-stat strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard {
  border-radius: var(--radius-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-lg), var(--glow-pink-strong);
}

.dashboard::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 47, 166, 0.24), transparent 70%);
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 26%, transparent 70%, rgba(255,255,255,0.05));
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.window-dots span:nth-child(1) {
  background: #ff6b7a;
}

.window-dots span:nth-child(2) {
  background: #ffce57;
}

.window-dots span:nth-child(3) {
  background: #63e6a7;
}

.dashboard-label {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.dashboard-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.card-primary {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255,47,166,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.hero-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.featured-badge,
.featured-price {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.featured-badge {
  background: rgba(255, 47, 166, 0.12);
  border: 1px solid rgba(255, 47, 166, 0.22);
  color: #ffd8ef;
}

.featured-price {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
}

.card-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d3b8f1;
  margin-bottom: 10px;
}

.card-primary h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.card-primary p {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}

.dashboard-side {
  display: grid;
  gap: 16px;
}

.stat-card-small {
  min-height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-card-small span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.stat-card-small strong {
  font-size: 1.3rem;
}

.dashboard-bottom {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bottom-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.bottom-box span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.bottom-box strong {
  font-size: 1rem;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding-top: 80px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d0b7ef;
}

.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.benefits-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.faq-card {
  padding: 28px;
  border-radius: 24px;
}

.benefit-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-pink);
}

.benefit-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.benefit-card p,
.faq-card p {
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.interactive-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --mx: 50%;
  --my: 50%;
}

.interactive-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 2;
  background: radial-gradient(
    320px circle at var(--mx) var(--my),
    rgba(255,255,255,0.16) 0%,
    rgba(255,47,166,0.18) 18%,
    rgba(140,99,255,0.14) 34%,
    transparent 62%
  );
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.interactive-glow::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.18) 28%, transparent 38%);
  transform: translateX(-140%);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.interactive-glow:hover::before {
  opacity: 1;
}

.interactive-glow:hover::after {
  animation: cardShine 1.35s ease;
}

@keyframes cardShine {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(160%);
  }
}

.product-card,
.mini-stat,
.dashboard,
.benefit-card,
.faq-card {
  position: relative;
}

.product-card > *,
.mini-stat > *,
.dashboard > *,
.benefit-card > *,
.faq-card > * {
  position: relative;
  z-index: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--glow-soft);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    0 0 30px rgba(255, 47, 166, 0.18),
    0 0 80px rgba(140, 99, 255, 0.14);
}

.product-media {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0e0916;
}

.product-media-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.media-1 .product-media-image {
  background-image: url('images/producto-1.png');
}

.media-2 .product-media-image {
  background-image: url('images/producto-3.png');
}

.media-3 .product-media-image {
  background-image: url('images/producto-4.png');
}

.media-4 .product-media-image {
  background-image: url('images/producto-6.png');
}
.media-5 .product-media-image {
  background-image: url('images/producto-7.png');
}
.media-5 .product-media-image {
  background-image: url('images/producto-9.png');
}
.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-media::before {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(110,231,255,0.08), transparent 24%),
    linear-gradient(135deg, rgba(255,47,166,0.12), rgba(140,99,255,0.10));
}

.product-media::after {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(4,3,8,0.30) 100%
  );
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-chip {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(10, 7, 15, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.meta-pill.success {
  color: #b8ffd6;
}

.product-rank {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff7d6;
  background: rgba(255, 214, 107, 0.1);
  border: 1px solid rgba(255, 214, 107, 0.18);
  white-space: nowrap;
}

.product-info h3 {
  font-size: 1.42rem;
  line-height: 1.14;
  margin-bottom: 10px;
}

.product-desc {
  color: var(--muted);
  min-height: 96px;
  margin-bottom: 18px;
}

.price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.price {
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff7fc;
  margin-bottom: 0;
  text-shadow: 0 0 22px rgba(255, 47, 166, 0.14);
}

.price-badge {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f8efff;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.price-badge.hot {
  color: #fff1cc;
  background: rgba(255, 214, 107, 0.09);
  border-color: rgba(255, 214, 107, 0.18);
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.product-points {
  min-height: 88px;
  align-content: flex-start;
}
.product-points span {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #ddd1ef;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.variant-note {
  color: var(--muted);
  margin-bottom: 16px;
}

.variant-block {
  margin-bottom: 14px;
}

.variant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbc8f5;
}

.variant-current {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffe8f7;
  background: linear-gradient(135deg, rgba(255, 47, 166, 0.16), rgba(140, 99, 255, 0.14));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap;
}

.variant-select-wrap {
  position: relative;
}

.variant-select-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 47, 166, 0.18), rgba(140, 99, 255, 0.14));
  opacity: 0.85;
  pointer-events: none;
}

.variant-select-wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(18, 11, 29, 0.95), rgba(13, 8, 22, 0.92));
  pointer-events: none;
}

.variant-select {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  padding: 0 56px 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.variant-select-wrap .variant-select-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  color: #ff9adf;
  opacity: 0.95;
}

.variant-select:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(255, 47, 166, 0.08);
}

.variant-select:focus {
  border-color: rgba(255, 47, 166, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 47, 166, 0.12), 0 18px 40px rgba(255, 47, 166, 0.1);
  transform: translateY(-1px);
}

.variant-select option {
  color: #ffffff;
  background: #120a1c;
}

.buy-btn,
button.buy-btn,
.sellauth-button.buy-btn {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff2fa6 0%, #ff67d0 52%, #9d72ff 100%);
  color: #fff;
  font: inherit;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  box-shadow: 0 18px 50px rgba(255, 47, 166, 0.25), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.buy-btn:hover,
button.buy-btn:hover,
.sellauth-button.buy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 24px 60px rgba(255, 47, 166, 0.32),
    0 0 30px rgba(140, 99, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.product-info .buy-btn {
  margin-top: 2px;
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #8f84a8;
  font-size: 0.92rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .products-grid,
  .benefits-grid,
  .faq-grid,
  .footer-grid,
  .dashboard-main,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .product-desc {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .nav-menu,
  .header-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10, 7, 16, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 74px;
  }

  .logo-copy span {
    display: none;
  }

  .hero-left h1 {
    font-size: 2.9rem;
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 84px 0;
  }

  .benefit-card,
  .faq-card,
  .product-info,
  .dashboard,
  .dashboard-card {
    padding: 20px;
  }

  .product-media {
    height: 190px;
  }

  .hero-top-badges,
  .product-points,
  .price-wrap,
  .product-topline {
    gap: 8px;
  }

  .price-wrap,
  .product-topline,
  .variant-label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    font-size: 2rem;
  }
}

/* ========================= VOUCHES / TESTIMONIALS ========================= */
.vouches-section {
  position: relative;
  overflow: hidden;
}

.vouches-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 47, 166, 0.08), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(110, 231, 255, 0.06), transparent 18%);
}

.vouches-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vouches-track {
  display: flex;
  gap: 22px;
  width: fit-content;
  min-width: 100%;
  animation: vouchesScroll 36s linear infinite;
  padding: 10px 0;
}

.vouches-marquee:hover .vouches-track {
  animation-play-state: paused;
}

@keyframes vouchesScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.vouch-card {
  width: 360px;
  min-width: 360px;
  min-height: 210px;
  padding: 22px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--glow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.vouch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 166, 0.10), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 30%);
  opacity: 0.9;
}

.vouch-card > * {
  position: relative;
  z-index: 1;
}

.vouch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.vouch-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.vouch-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.98rem;
  color: #bfffe3;
  background: linear-gradient(135deg, rgba(0, 255, 170, 0.14), rgba(0, 180, 120, 0.08));
  border: 1px solid rgba(121,243,182,0.18);
  box-shadow: 0 0 24px rgba(121,243,182,0.08);
  flex-shrink: 0;
}

.vouch-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vouch-time {
  color: #7f8aa8;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.vouch-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.vouch-stars svg {
  width: 15px;
  height: 15px;
  fill: #20e3a2;
  filter: drop-shadow(0 0 10px rgba(32, 227, 162, 0.12));
}

.vouch-text {
  color: #b6bfd8;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .vouch-card {
    width: 300px;
    min-width: 300px;
    min-height: 190px;
    padding: 18px;
  }

  .vouch-text {
    font-size: 0.95rem;
  }

  .vouches-track {
    gap: 16px;
  }
}

.product-actions,
.product-actions-val {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.product-actions-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


.btn-add-cart {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1190;
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100vh;
  background: linear-gradient(180deg, rgba(14, 9, 22, 0.98), rgba(8, 5, 14, 0.98));
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 80px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1200;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-head,
.cart-drawer-footer {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer-head h3 {
  font-size: 1.2rem;
}

.cart-close-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.cart-drawer-body {
  padding: 20px;
  overflow-y: auto;
}

.cart-empty {
  color: var(--muted);
}

.cart-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.cart-item + .cart-item {
  margin-top: 12px;
}

.cart-item-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.cart-item-copy strong {
  font-size: 0.98rem;
}

.cart-item-copy span,
.cart-item-copy small {
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-btn,
.remove-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
}

.remove-btn {
  margin-left: auto;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 47, 166, 0.12);
  color: #ffd7ef;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
}

.cart-summary strong {
  color: #fff;
  font-size: 1.1rem;
}

.cart-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cart-secondary-btn,
.cart-primary-btn {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-secondary-btn {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.cart-primary-btn {
  background: linear-gradient(135deg, #ff2fa6 0%, #ff67d0 52%, #9d72ff 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(255, 47, 166, 0.25);
}

@media (max-width: 640px) {
  .product-actions,
  .cart-footer-actions {
    grid-template-columns: 1fr;
  }
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-social:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4fd8;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(255, 79, 216, 0.14), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 38px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}

.faq-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4fd8;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(255, 79, 216, 0.14), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.faq-icon svg {
  width: 26px;
  height: 26px;
}

.faq-card:hover .faq-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 38px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4fd8;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(255, 79, 216, 0.14), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.mini-stat-icon svg {
  width: 24px;
  height: 24px;
}

.mini-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-stat:hover .mini-stat-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 38px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}

.showcase-section {
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 47, 166, 0.10), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(110, 231, 255, 0.06), transparent 16%);
}

.showcase-wrap {
  padding: 18px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 40px rgba(255, 47, 166, 0.12),
    0 0 90px rgba(255, 47, 166, 0.08);
}

.showcase-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 47, 166, 0.45),
    rgba(140, 99, 255, 0.34),
    rgba(255, 255, 255, 0.08)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.showcase-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #07040c;
}

.showcase-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.showcase-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(1.08) contrast(1.06) brightness(0.78);
}

.showcase-video:hover .showcase-thumbnail {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04) brightness(0.8);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 24%),
    linear-gradient(180deg, rgba(8, 5, 14, 0.10) 0%, rgba(8, 5, 14, 0.28) 52%, rgba(8, 5, 14, 0.72) 100%),
    linear-gradient(135deg, rgba(255, 47, 166, 0.12), rgba(140, 99, 255, 0.14));
}

.showcase-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffe3f5;
  background: rgba(10, 7, 15, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 22px rgba(255, 47, 166, 0.14);
}

.showcase-play-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.showcase-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.showcase-play-ring {
  position: absolute;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 47, 166, 0.20), rgba(255, 47, 166, 0.04) 55%, transparent 72%);
  filter: blur(2px);
}

.showcase-play-btn {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 47, 166, 0.95), rgba(255, 103, 208, 0.92));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 18px 50px rgba(255, 47, 166, 0.34),
    0 0 32px rgba(255, 47, 166, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-play-btn svg {
  width: 34px;
  height: 34px;
  color: #fff;
  margin-left: 4px;
}

.showcase-video:hover .showcase-play-btn {
  transform: scale(1.06);
  box-shadow:
    0 24px 60px rgba(255, 47, 166, 0.42),
    0 0 42px rgba(255, 47, 166, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.showcase-copy {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.showcase-copy span {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
}

@media (max-width: 640px) {
  .showcase-wrap {
    padding: 12px;
    border-radius: 24px;
  }

  .showcase-video {
    border-radius: 18px;
  }

  .showcase-play-ring {
    width: 92px;
    height: 92px;
  }

  .showcase-play-btn {
    width: 72px;
    height: 72px;
  }

  .showcase-play-btn svg {
    width: 28px;
    height: 28px;
  }

  .showcase-copy {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .showcase-copy span {
    font-size: 0.88rem;
  }

  .showcase-badge {
    top: 14px;
    left: 14px;
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.72rem;
  }
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}
/* ========================= STATUS ========================= */
.status-section {
  position: relative;
  overflow: hidden;
}

.status-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 47, 166, 0.08), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(110, 231, 255, 0.06), transparent 16%);
}

.status-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.status-search {
  width: min(100%, 520px);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.status-search svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

.status-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
}

.status-search input::placeholder {
  color: var(--muted);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.status-card {
  min-height: 106px;
  padding: 20px 22px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.status-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.status-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(255, 79, 216, 0.12);
}

.status-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-copy {
  min-width: 0;
}

.status-copy h3 {
  font-size: 1.1rem;
  line-height: 1.15;
  margin-bottom: 4px;
  color: #fff;
}

.status-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.3;
}

.status-badge {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-badge.undetected {
  color: #8ff7c7;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.08);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px #22c55e;
  flex-shrink: 0;
}

.status-card.hidden {
  display: none;
}

@media (max-width: 1100px) {
  .status-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-badge {
    align-self: flex-start;
  }
}
.status-badge.unsupported {
  color: #ff4d4f;
  border: 1px solid rgba(255, 77, 79, 0.35);
  background: rgba(255, 77, 79, 0.12);
}

.status-badge.unsupported .status-dot {
  background: #ff4d4f;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.6);
}
.btn-supported-games {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-supported-games:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}
.btn-supported-games,
.btn-supported-motherboards {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-supported-games:hover,
.btn-supported-motherboards:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}

@media (max-width: 640px) {
  .product-actions,
  .cart-footer-actions {
    grid-template-columns: 1fr;
  }
}
/* ========================= PAYMENTS SECTION ========================= */
#es-payments-section {
  padding: 64px 0;
  opacity: 0;
}

#es-payments-section * {
  box-sizing: border-box;
}

#es-payments-section .payments-animate {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

#es-payments-section.payments-loaded .payments-animate {
  opacity: 1;
  transform: translateY(0);
}

#es-payments-section.payments-loaded .payments-subtitle {
  transition-delay: 0.14s;
}

#es-payments-section.payments-loaded .payments-grid {
  transition-delay: 0.28s;
}

#es-payments-section .payments-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

#es-payments-section .payments-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 22px;
  background: rgba(10, 10, 14, 0.5);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 40px rgba(255, 47, 166, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#es-payments-section .payments-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(255, 47, 166, 0.08), transparent 35%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), transparent 28%);
}

#es-payments-section .payments-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #f5f5f5;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

#es-payments-section .payments-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 auto 34px;
  max-width: 760px;
  color: rgba(255,255,255,0.62);
  font-size: 18px;
  line-height: 1.65;
}

#es-payments-section .payments-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

#es-payments-section .payment-card {
  width: 170px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 24px rgba(0,0,0,0.16);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

#es-payments-section .payment-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.045);
  border-color: rgba(255, 47, 166, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 30px rgba(0,0,0,0.2),
    0 0 18px rgba(255, 47, 166, 0.08);
}

#es-payments-section .payment-card img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.14));
}

@media (max-width: 768px) {
  #es-payments-section {
    padding: 48px 0;
  }

  #es-payments-section .payments-wrap {
    padding: 0 12px;
  }

  #es-payments-section .payments-panel {
    padding: 26px 18px;
    border-radius: 18px;
  }

  #es-payments-section .payments-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  #es-payments-section .payments-grid {
    gap: 14px;
  }

  #es-payments-section .payment-card {
    width: calc(50% - 7px);
    min-width: 135px;
    height: 84px;
    padding: 14px;
    border-radius: 14px;
  }

  #es-payments-section .payment-card img {
    max-height: 42px;
  }
}
#es-payments-section.section {
  padding-top: 0;
}
/* ========================= PROMO POPUP ========================= */
.promo-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.28s ease;
  z-index: 1400;
}

.promo-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 24px));
  padding: 30px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 166, 0.16), transparent 28%),
    radial-gradient(circle at top left, rgba(140, 99, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 11, 29, 0.98), rgba(10, 6, 18, 0.98));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 30px 100px rgba(0,0,0,0.55),
    0 0 40px rgba(255, 47, 166, 0.16),
    0 0 80px rgba(140, 99, 255, 0.12);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1410;
  text-align: center;
  overflow: hidden;
}

.promo-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.promo-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%, transparent 70%, rgba(255,255,255,0.04));
}

.promo-modal > * {
  position: relative;
  z-index: 1;
}

.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.22s ease;
}

.promo-close:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.04);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffe6f6;
  background: rgba(255, 47, 166, 0.12);
  border: 1px solid rgba(255, 47, 166, 0.22);
  box-shadow: 0 0 24px rgba(255, 47, 166, 0.12);
}

.promo-modal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.promo-text {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 22px;
  font-size: 1rem;
}

.promo-coupon-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.promo-coupon-code {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 47, 166, 0.16), rgba(140, 99, 255, 0.16));
  border: 1px dashed rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.promo-copy-btn {
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff2fa6 0%, #ff67d0 52%, #9d72ff 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(255, 47, 166, 0.22);
  transition: 0.22s ease;
}

.promo-copy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.promo-timer-wrap {
  margin-bottom: 22px;
}

.promo-timer-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.promo-timer {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff4fb;
  text-shadow: 0 0 22px rgba(255, 47, 166, 0.18);
}

.promo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.promo-primary-btn,
.promo-secondary-btn {
  min-height: 54px;
  border-radius: 18px;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.22s ease;
}

.promo-primary-btn {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #ff2fa6 0%, #ff67d0 52%, #9d72ff 100%);
  box-shadow: 0 18px 50px rgba(255, 47, 166, 0.22);
}

.promo-primary-btn:hover {
  transform: translateY(-2px);
}

.promo-secondary-btn {
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.promo-secondary-btn:hover {
  background: rgba(255,255,255,0.08);
}

.promo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.promo-points span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #e7daf8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

body.promo-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .promo-modal {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .promo-coupon-wrap,
  .promo-actions {
    grid-template-columns: 1fr;
  }

  .promo-coupon-code,
  .promo-copy-btn,
  .promo-primary-btn,
  .promo-secondary-btn {
    min-height: 56px;
  }

  .promo-timer {
    font-size: 1.7rem;
  }
}
.product-actions-val {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-actions-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-view-features {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 0, 140, 0.95), rgba(138, 43, 226, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(255, 0, 140, 0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-sizing: border-box;
}


.product-actions .btn-add-cart,
.product-actions .buy-btn,
.product-actions .btn-view-features,
.product-actions-val .btn-add-cart,
.product-actions-val .buy-btn,
.product-actions-val .btn-view-features {
  width: 100%;
}
.btn-view-features:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 0, 140, 0.24);
  opacity: 0.96;
}

@media (max-width: 640px) {
  .product-actions-top {
    grid-template-columns: 1fr;
  }
}

/* ========================= SALES POPUP ========================= */
.sales-popups {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.sales-popup {
  width: min(320px, calc(100vw - 28px));
  padding: 11px 12px;
  border-radius: 15px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 166, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(18, 11, 29, 0.96), rgba(10, 6, 18, 0.96));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.42),
    0 0 24px rgba(255, 47, 166, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: auto;
}

.sales-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sales-popup.hide {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.sales-popup-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sales-popup-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ff2fa6, #9d72ff);
  box-shadow: 0 10px 25px rgba(255, 47, 166, 0.22);
}

.sales-popup-icon svg {
  width: 18px;
  height: 18px;
}

.sales-popup-copy {
  min-width: 0;
}

.sales-popup-copy strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 3px;
}

.sales-popup-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.sales-popup-country {
  color: #ffe0f5;
  font-weight: 700;
}

.sales-popup-product {
  color: #fff;
  font-weight: 800;
}

.sales-popup-time {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f4eaff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .sales-popups {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .sales-popup {
    width: 100%;
  }
}
/* ========================= CATEGORY NAVIGATION ========================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  width: 100%;
  padding: 28px 24px;
  border-radius: 26px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--glow-soft);
}
.category-card-icon {
  width: 64px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.category-card-icon img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  display: block;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    0 0 30px rgba(255, 47, 166, 0.14),
    0 0 80px rgba(140, 99, 255, 0.10);
}

.category-card-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d7bdf3;
}

.category-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 12px;
}

.category-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.category-products {
  display: none;
}

.category-products.active {
  display: block;
}

.category-grid.hidden {
  display: none;
}

.category-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 166, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--glow-soft);
}

.category-products-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.category-back-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.category-back-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-products-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* MOST POPULAR CARD */
.popular-badge {
  position: absolute;
  top: 12px;               /* un poco más cerca del borde superior */
  left: 50%;               /* centrado horizontal */
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff5ca2, #ff78c1);
  color: white;
  font-size: 0.65rem;      /* texto más pequeño */
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;       /* pill más compacta */
  border-radius: 50px;     
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255,92,162,0.5);
  pointer-events: none;
  z-index: 2;
}
.resell-addon-card.popular {
  position: relative;
  padding-top: 40px; /* reducimos un poco el espacio para la pill */
  border: 2px solid #ff5ca2;
  background: linear-gradient(135deg, rgba(255,92,162,0.1), rgba(255,92,162,0.2));
  box-shadow: 0 8px 20px rgba(255,92,162,0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resell-addon-card.popular::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,92,162,0.3) 0%, transparent 60%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  opacity: 0;
}

.resell-addon-card.popular:hover::before {
  transform: translateX(0) translateY(0) rotate(45deg);
  opacity: 1;
}

.resell-addon-card.popular:hover {
  box-shadow: 0 12px 28px rgba(255,92,162,0.35);
}

.price-eur {
  display: block;
  font-size: 0.75em;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.video-wrapper {
  width: 100%;
}

.video-aspect {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* opcional, para que quede con los bordes redondeados del resto del diseño */
}

.video-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}