/* =========================================================
   FX STORE — estilos (tema gris plata)
   ========================================================= */
   
:root {
  --bg: #0d1014;
  --bg-2: #141a1e;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.06);
  --border: rgba(214, 218, 222, 0.15);
  --text: #f0f2f5;
  --muted: #9aa6b6;
  --brand: #d6dade;
  --neon: #ffffff;
  --neon-2: #737e8c;
  --brand-ink: #0a0d10;
  --discord: #5865f2;
  --danger: #ff4d5e;
  --ok: #39d98a;
  --radius: 16px;
  --maxw: 1200px;
  --header-h: 114px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family:
    "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background:
    radial-gradient(
      ellipse 70% 45% at 50% -6%,
      rgba(238, 241, 244, 0.13),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 12%,
      rgba(40, 170, 230, 0.08),
      transparent 65%
    ),
    linear-gradient(180deg, #0e1318 0%, #0c1014 45%, #0a0d11 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* aurora de fondo animada */
body::before {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(238, 241, 244, 0.12), transparent 70%) 12%
      18% / 42% 42% no-repeat,
    radial-gradient(closest-side, rgba(238, 241, 244, 0.08), transparent 70%) 88%
      72% / 48% 48% no-repeat;
  filter: blur(16px);
  animation: aurora 16s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Keyframes ---------- */
@keyframes aurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, -3%, 0) scale(1.12);
    opacity: 1;
  }
}
@keyframes neonPulse {
  0%,
  100% {
    text-shadow:
      0 0 6px rgba(238, 241, 244, 0.5),
      0 0 16px rgba(238, 241, 244, 0.28);
  }
  50% {
    text-shadow:
      0 0 12px rgba(238, 241, 244, 0.9),
      0 0 30px rgba(238, 241, 244, 0.5);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 22px -8px rgba(238, 241, 244, 0.7);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(238, 241, 244, 0.1),
      0 0 34px -4px rgba(238, 241, 244, 0.85);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes stockPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(57, 217, 138, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(57, 217, 138, 0);
  }
}
@keyframes cardUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-16px) rotate(1.6deg);
  }
}
@keyframes logoGlow {
  0%,
  100% {
    box-shadow:
      0 24px 50px -16px rgba(0, 0, 0, 0.55),
      0 0 45px -8px rgba(238, 241, 244, 0.5);
  }
  50% {
    box-shadow:
      0 24px 50px -16px rgba(0, 0, 0, 0.55),
      0 0 72px -2px rgba(238, 241, 244, 0.9);
  }
}
@keyframes gradShift {
  to {
    background-position: 220% center;
  }
}
@keyframes shine {
  from {
    left: -120%;
  }
  to {
    left: 130%;
  }
}
@keyframes ripple {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Intro / pantalla de entrada ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  cursor: pointer;
  background:
    radial-gradient(
      ellipse 55% 50% at 50% 42%,
      rgba(238, 241, 244, 0.13),
      transparent 60%
    ),
    var(--bg);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
html.entered .intro {
  display: none;
}
.intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-inner {
  text-align: center;
  animation: introPop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.intro-logo {
  width: 158px;
  height: 168px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #ffffff, #eaf7ff 68%, #d6efff);
  border: 1px solid rgba(238, 241, 244, 0.6);
  box-shadow:
    0 24px 55px -16px rgba(0, 0, 0, 0.6),
    0 0 60px -8px rgba(238, 241, 244, 0.6);
  animation:
    floatY 6s ease-in-out infinite,
    logoGlow 3.2s ease-in-out infinite;
}
.intro-logo img {
  width: 80%;
  height: auto;
}
.intro-name {
  margin-top: 24px;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.intro-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  animation: introBlink 1.8s ease-in-out infinite;
}
@keyframes introPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes introBlink {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  box-shadow: 0 0 22px -6px rgba(238, 241, 244, 0.8);
}
.btn-primary:hover {
  box-shadow: 0 0 34px -4px rgba(238, 241, 244, 1);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--neon);
  box-shadow: 0 0 18px -6px rgba(238, 241, 244, 0.7);
}
.btn-discord {
  background: var(--discord);
  color: #fff;
}
.btn-discord:hover {
  box-shadow: 0 0 18px -4px var(--discord);
}

/* Destello (shine) y onda (ripple) en botones */
.btn,
.pc-cta {
  position: relative;
  overflow: hidden;
}
.btn::after,
.pc-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn:hover::after,
.pc-cta:hover::after {
  animation: shine 0.8s ease;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
}

/* ---------- Header ---------- */
/* ===== Franja de anuncios (marquee) ===== */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.top-strip {
  background: linear-gradient(
    90deg,
    rgba(8, 14, 24, 0.96),
    rgba(7, 11, 20, 0.96)
  );
  border-bottom: 1px solid rgba(238, 241, 244, 0.16);
  overflow: hidden;
}
.announce-bar {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.announce-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.announce-bar:hover .announce-track {
  animation-play-state: paused;
}
.announce-track .ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #cfeeff;
}
.announce-track .ai i {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon);
}
.announce-track .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

/* ===== Carrito (decorativo) ===== */
.cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(238, 241, 244, 0.22);
  color: #eafaff;
  cursor: pointer;
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.cart-btn:hover {
  border-color: rgba(238, 241, 244, 0.55);
  box-shadow: 0 0 16px -5px rgba(238, 241, 244, 0.7);
}

/* ===== Tarjeta de producto destacado en el hero ===== */
.hero-feature {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 8%;
  width: 216px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(11, 18, 30, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 241, 244, 0.35);
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.7),
    0 0 30px -8px rgba(238, 241, 244, 0.5);
  cursor: pointer;
  animation: floatCard 5.2s ease-in-out infinite;
}
.hero-feature:hover {
  border-color: var(--neon);
}
.hf-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 8px;
}
.hf-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hf-img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}
.hf-info {
  min-width: 0;
}
.hf-name {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 122px;
}
.hf-price {
  margin-top: 3px;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--brand);
  text-shadow: 0 0 10px rgba(238, 241, 244, 0.3);
}

/* ===== Banner promocional ===== */
.promo {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 20px 0;
}
.promo-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: 20px;
  background:
    linear-gradient(110deg, rgba(238, 241, 244, 0.12), rgba(238, 241, 244, 0.02) 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(238, 241, 244, 0.35);
  box-shadow: 0 0 50px -22px rgba(238, 241, 244, 0.7);
}
.promo-tag {
  flex: 0 0 auto;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 0 20px -4px rgba(238, 241, 244, 0.8);
}
.promo-text {
  flex: 1;
  min-width: 0;
}
.promo-text h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}
.promo-text p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.promo-cta {
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .promo-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Reserva de espacio antes de inyectar el header (evita salto de layout) */
#site-header {
  min-height: 114px;
}
@media (max-width: 980px) {
  #site-header {
    min-height: 60px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: rgba(7, 12, 22, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(238, 241, 244, 0.14);
  box-shadow: 0 8px 34px -22px rgba(238, 241, 244, 0.9);
}
/* Fila 1: logo + marquee + acciones */
.header-row {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 40%, #ffffff, #eaf7ff 70%, #d6efff);
  border: 1px solid rgba(238, 241, 244, 0.6);
  box-shadow:
    0 4px 14px -4px rgba(0, 0, 0, 0.5),
    0 0 18px -6px rgba(238, 241, 244, 0.8);
  overflow: hidden;
}
.logo-mark img {
  width: 80%;
  height: auto;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  animation: neonPulse 4s ease-in-out infinite;
}
.logo-accent {
  color: var(--brand);
}

/* Franja de avisos en línea dentro del header */
.header-marquee {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 380px;
}
.header-marquee .announce-track {
  animation-duration: 26s;
}
.header-marquee .ai {
  padding: 0 16px;
  color: #bfe6f3;
}

/* Píldora dorada de promo (estilo "código creador") */
.promo-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 7px 6px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #3a2400;
  background: linear-gradient(120deg, #ffd86b, #ffb01e 55%, #ff8a1e);
  box-shadow: 0 0 18px -4px rgba(255, 170, 40, 0.75);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px -3px rgba(255, 170, 40, 0.95);
}
.promo-badge > i {
  color: #6a4400;
  font-size: 0.82rem;
}
.pb-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pb-code {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #1c1000;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.promo-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: badgeShine 4.5s ease-in-out infinite;
}
@keyframes badgeShine {
  0%,
  55% {
    left: -130%;
  }
  100% {
    left: 130%;
  }
}
/* Fila 2: tabs de navegación */
.header-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}
.header-nav {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 14px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar {
  display: none;
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-pill i {
  font-size: 0.85rem;
  opacity: 0.85;
}
.nav-pill:hover {
  color: #fff;
  background: rgba(238, 241, 244, 0.07);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 0 16px -6px rgba(238, 241, 244, 0.7);
  transform: translateY(-1px);
}
.nav-pill.active {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 20px -8px rgba(214, 218, 222, 0.7);
}
.nav-pill.active i {
  opacity: 1;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-discord span {
  display: inline;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px 16px;
  background: rgba(7, 12, 22, 0.97);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 11px 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav a:hover {
  color: var(--brand);
}
.mobile-nav .btn {
  justify-content: center;
  margin-top: 10px;
}

/* ---------- Currency dropdown ---------- */
.cur-dd {
  position: relative;
}
.cur-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(238, 241, 244, 0.22);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  transition: all 0.2s ease;
}
.cur-dd-trigger:hover {
  border-color: rgba(238, 241, 244, 0.5);
  box-shadow: 0 0 16px -5px rgba(238, 241, 244, 0.7);
}
.cur-dd.open .cur-dd-trigger {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(238, 241, 244, 0.14);
}
.cur-chev {
  font-size: 0.6rem;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.cur-dd.open .cur-chev {
  transform: rotate(180deg);
  color: var(--neon);
}
img.cur-flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}
.cur-dd-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 60;
  min-width: 236px;
  max-width: calc(100vw - 24px);
  padding: 7px;
  background: rgba(13, 20, 32, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(238, 241, 244, 0.2);
  border-radius: 16px;
  box-shadow:
    0 24px 60px -18px rgba(0, 0, 0, 0.7),
    0 0 30px -10px rgba(238, 241, 244, 0.45);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cur-dd.open .cur-dd-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cur-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 11px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
  color: #dfe9f2;
  font-size: 0.84rem;
  font-weight: 600;
}
.cur-opt:hover {
  background: rgba(255, 255, 255, 0.06);
}
.cur-opt img.cur-flag {
  width: 24px;
  height: 17px;
}
.cur-flag-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.cur-flag-ic {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 161, 123, 0.2);
  color: #26a17b;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  font-size: 0.6rem;
}
.cur-opt .cur-flag-ic {
  width: 24px;
  height: 17px;
  font-size: 0.72rem;
}
.cur-opt-name {
  flex: 1;
}
.cur-opt-code {
  font-size: 0.72rem;
  font-weight: 800;
  color: #8aa0b0;
}
.cur-check {
  font-size: 0.78rem;
  color: var(--neon);
  opacity: 0;
}
.cur-opt.active {
  background: rgba(238, 241, 244, 0.12);
  box-shadow: inset 2px 0 0 var(--neon);
}
.cur-opt.active .cur-opt-name {
  color: var(--neon);
  text-shadow: 0 0 8px rgba(238, 241, 244, 0.5);
}
.cur-opt.active .cur-check {
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    ellipse 50% 60% at 70% 40%,
    rgba(238, 241, 244, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 20px 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(238, 241, 244, 0.35);
  background: rgba(238, 241, 244, 0.06);
}
.hero-title {
  margin: 18px 0 0;
  font-size: clamp(1.85rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.hero-title .grad {
  background: linear-gradient(
    100deg,
    var(--neon),
    var(--neon-2) 50%,
    #b97bff 75%,
    var(--neon) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(238, 241, 244, 0.3);
  animation: gradShift 7s linear infinite;
}
.hero-sub {
  margin: 20px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badges {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #cfe9f4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}
.hero-badges i {
  color: var(--neon);
}

/* Entrada escalonada del texto del hero */
.hero-text > * {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-eyebrow {
  animation-delay: 0.05s;
}
.hero-title {
  animation-delay: 0.18s;
}
.hero-sub {
  animation-delay: 0.34s;
}
.hero-cta {
  animation-delay: 0.48s;
}
.hero-badges {
  animation-delay: 0.6s;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  animation: popIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s both;
}
.hero-char {
  position: relative;
  z-index: 2;
  height: 400px;
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 26px rgba(238, 241, 244, 0.35));
  animation: floatY 6s ease-in-out infinite;
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #ffffff, #eaf7ff 68%, #d6efff);
  border: 3px solid rgba(238, 241, 244, 0.75);
  box-shadow:
    0 24px 50px -16px rgba(0, 0, 0, 0.55),
    0 0 55px -6px rgba(238, 241, 244, 0.6);
  animation:
    floatY 6s ease-in-out infinite,
    logoGlow 3.2s ease-in-out infinite;
}
.hero-logo-img {
  width: 82%;
  height: auto;
}
.hero-char-ring {
  position: absolute;
  z-index: 1;
  width: 382px;
  height: 382px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(238, 241, 244, 0.22),
    transparent 62%
  );
  border: 2px dashed rgba(238, 241, 244, 0.5);
  box-shadow: 0 0 50px -12px rgba(238, 241, 244, 0.45);
  animation: spin 15s linear infinite;
}
.hero-float-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text);
  background: rgba(13, 22, 36, 0.9);
  border: 1px solid rgba(238, 241, 244, 0.35);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.7);
  animation: floatCard 4.8s ease-in-out infinite;
}
.hero-float-card i {
  color: var(--neon);
}
.hero-float-1 {
  top: 12%;
  left: 2%;
  animation-delay: 0.4s;
}
.hero-float-2 {
  bottom: 14%;
  right: 0;
  animation-delay: 1.2s;
}

/* ---------- Features strip ---------- */
.features {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 14px 40px -20px rgba(238, 241, 244, 0.6);
}
.feature .f-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(238, 241, 244, 0.12);
  color: var(--neon);
  font-size: 1.1rem;
}
.feature h3 {
  margin: 0;
  font-size: 0.95rem;
}
.feature p {
  margin: 3px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Section ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 20px;
}
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
}
.section-title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 8px rgba(238, 241, 244, 0.4),
    0 0 26px rgba(238, 241, 244, 0.2);
}
.section-desc {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.section-desc b {
  color: var(--brand);
}

/* ---------- Cómo comprar ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 16px 44px -22px rgba(238, 241, 244, 0.7);
}
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 18px -4px rgba(238, 241, 244, 0.9);
}
.step .s-ico {
  font-size: 1.6rem;
  color: var(--neon);
  margin-top: 6px;
}
.step h3 {
  margin: 14px 0 6px;
  font-size: 1rem;
}
.step p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Catálogo ---------- */
.cat-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  background: transparent;
  backdrop-filter: blur(10px);
}
.cat-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-width: 100%;
}
.cat-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #9aa1ad;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease;
}
.cat-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.cat-pill-ico {
  font-size: 0.95rem;
  opacity: 0.9;
}
.cat-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 19px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.09);
  color: #cfd3da;
}
.cat-pill.active {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 26px -8px rgba(214, 218, 222, 0.7);
}
.cat-pill.active .cat-pill-ico {
  opacity: 1;
}
.cat-pill.active .cat-pill-count {
  background: rgba(0, 0, 0, 0.16);
  color: var(--brand-ink);
}
.cat-pill-star {
  position: absolute;
  top: -7px;
  right: -5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffd86b, #ff9c2f);
  color: #3a2400;
  font-size: 0.56rem;
  border: 1.5px solid var(--bg);
  box-shadow: 0 2px 9px rgba(255, 165, 40, 0.55);
}
.cat-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cat-search {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cat-search i {
  position: absolute;
  left: 14px;
  color: #7d828d;
  font-size: 0.85rem;
  pointer-events: none;
}
.cat-search input {
  width: 260px;
  max-width: 70vw;
  padding: 10px 14px 10px 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.cat-search input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(238, 241, 244, 0.18);
}
.cat-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9aa1ad;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.cat-filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.cat-filter-btn.active {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 20px -8px rgba(214, 218, 222, 0.6);
}
.cat-sub-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.cat-sub-wrap[hidden] {
  display: none;
}
.cat-sub-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-sub-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cat-sub-pill {
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9aa1ad;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.2s ease;
}
.cat-sub-pill:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.cat-sub-pill.active {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
}
.cat-results {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.cat-results b {
  color: #fff;
}
.cat-results .hl {
  color: var(--brand);
  font-weight: 700;
}
.cat-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* ---------- Paginación del catálogo (evita scroll largo) ---------- */
.cat-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 8px;
}
.pager-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pager-btn:hover:not([disabled]) {
  border-color: var(--neon);
  box-shadow: 0 0 14px -5px rgba(238, 241, 244, 0.7);
  transform: translateY(-1px);
}
.pager-btn.active {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
}
.pager-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ---------- Product card ---------- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background: #141a1e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  animation: cardUp 0.45s ease backwards;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.product-card.available {
  cursor: pointer;
}
.product-card.available:hover {
  transform: translateY(-9px);
  border-color: var(--neon);
  box-shadow:
    0 22px 50px -16px rgba(238, 241, 244, 0.45),
    0 0 0 1px rgba(238, 241, 244, 0.25);
}
.product-card.sold:hover {
  border-color: rgba(255, 77, 94, 0.55);
  box-shadow: 0 0 35px -10px rgba(255, 77, 94, 0.45);
}
.pc-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}
.pc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.pc-media .pc-img-2 {
  opacity: 0;
}
.product-card.available:hover .pc-img-1.has-swap {
  opacity: 0;
}
.product-card.available:hover .pc-img-1.no-swap {
  transform: scale(1.12);
}
.product-card.available:hover .pc-img-2 {
  opacity: 1;
  transform: scale(1.12);
}
.pc-media.sold img {
  filter: grayscale(60%) brightness(0.5);
}
.pc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pc-badge.sold {
  background: #b1111b;
  color: #fff;
}
.pc-badge.stock {
  background: rgba(20, 40, 30, 0.8);
  color: #7af0a8;
  border: 1px solid rgba(57, 217, 138, 0.55);
  animation: stockPulse 2.4s ease-in-out infinite;
}
.pc-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.pc-body {
  position: relative;
  z-index: 2;
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pc-name {
  margin: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}
.pc-price {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--brand);
  text-shadow: 0 0 10px rgba(238, 241, 244, 0.25);
  margin-bottom: 12px;
}
.pc-cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  border: 0;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  transition:
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.pc-cta:hover {
  box-shadow: 0 0 16px -3px rgba(238, 241, 244, 0.8);
  filter: brightness(1.05);
}
.pc-cta.disabled {
  background: #4a1015;
  color: #ffb3b3;
  cursor: not-allowed;
}

/* ---------- Modal ---------- */
@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalPopOut {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 12, 0.78);
  backdrop-filter: blur(7px);
}
.modal.open {
  display: flex;
  animation: modalFade 0.25s ease;
}
.modal.open .modal-card {
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.modal.closing {
  animation: modalFadeOut 0.22s ease forwards;
}
.modal.closing .modal-card {
  animation: modalPopOut 0.24s ease forwards;
}
.modal-card {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  background: #11161b;
  border: 1px solid rgba(238, 241, 244, 0.25);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 12px 14px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.modal-close:hover {
  border-color: var(--neon);
}
.modal-grid {
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  gap: 22px;
  padding: 28px;
}
.modal-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-thumb {
  width: 74px;
  height: 74px;
  border-radius: 9px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #141a1e;
}
.modal-thumb.active {
  border-color: var(--neon);
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #141a1e;
}
.modal-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 900;
}
.modal-price {
  margin-top: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
}
.modal-desc {
  margin-top: 16px;
  color: #c7d3de;
  font-size: 0.9rem;
  line-height: 1.6;
}
.modal-cta {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
}
.about-text p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 14px 40px -22px rgba(238, 241, 244, 0.7);
}
.about-card .a-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(238, 241, 244, 0.12);
  color: var(--neon);
}
.about-card h3 {
  margin: 14px 0 4px;
  font-size: 0.98rem;
}
.about-card p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 14px 36px -20px rgba(238, 241, 244, 0.7);
}
.review-stars {
  color: var(--brand);
  display: flex;
  gap: 3px;
}
.review p {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #dbe6ef;
}
.review .who {
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Pagos ---------- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.pay-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 13px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.pay-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 241, 244, 0.5);
  box-shadow:
    0 18px 42px -20px rgba(238, 241, 244, 0.75),
    0 0 0 1px rgba(238, 241, 244, 0.18);
}
.pay-flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 auto;
  margin-top: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.pay-globe {
  width: 26px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--neon);
  flex: 0 0 auto;
  margin-top: 2px;
}
.pay-card h4 {
  margin: 0 0 3px;
  font-size: 0.82rem;
  color: var(--brand);
  letter-spacing: 0.04em;
}
.pay-card p {
  margin: 0;
  font-size: 0.82rem;
  color: #cdd9e4;
  line-height: 1.45;
}

/* ---------- Marquee de logos de pago ---------- */
.pay-marquee-wrap {
  margin-top: 40px;
}
.pay-marquee {
  overflow: hidden;
  padding: 12px 0; /* aire para que el lift en hover no se recorte */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.pay-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: payMarquee 32s linear infinite;
}
.pay-marquee:hover .pay-marquee-track {
  animation-play-state: paused;
}
@keyframes payMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.pay-pill {
  flex: 0 0 auto;
  height: 62px;
  min-width: 132px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #eef2f6);
  box-shadow:
    0 10px 22px -12px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 #ffffff;
  font-size: 1.7rem;
  line-height: 1;
}
.pay-pill .pm-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2230;
}
.pay-pill .pm-ico-dark {
  color: #2a3340;
  font-size: 1.25rem;
}
.pm-btc {
  color: #f7931a;
}
.pm-visa {
  color: #1a1f71;
  font-size: 2rem;
}
.pm-brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pay-pill .pm-svg {
  height: 28px;
  width: auto;
  display: block;
}
.pay-pill .pm-mc {
  height: 24px;
}
.pay-marquee-cap {
  margin: 18px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 640px) {
  .pay-pill {
    height: 54px;
    min-width: 112px;
    padding: 0 22px;
    font-size: 1.45rem;
  }
  .pay-pill .pm-svg {
    height: 24px;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(238, 241, 244, 0.4);
}
.faq-item[data-open="true"] {
  background: rgba(238, 241, 244, 0.05);
  box-shadow: 0 12px 35px -20px rgba(238, 241, 244, 0.8);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}
.faq-q:hover {
  color: var(--brand);
}
.faq-chev {
  color: var(--muted);
  transition:
    transform 0.35s ease,
    color 0.25s ease;
}
.faq-item[data-open="true"] .faq-chev {
  transform: rotate(180deg);
  color: var(--neon);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}
.faq-item[data-open="true"] .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-a p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 9, 16, 0.6);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 1rem;
  color: #cfe9f4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--brand);
  border-color: var(--neon);
  box-shadow: 0 0 16px -4px rgba(238, 241, 244, 0.8);
}
.footer-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-note i {
  color: var(--ok);
}
.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.footer p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer ul a {
  color: var(--muted);
  font-size: 0.88rem;
}
.footer ul a:hover {
  color: var(--brand);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}
.footer-bottom i {
  color: var(--brand);
}

/* =========================================================
   PASE 2 — firma YourHeart (dividers, contadores, timeline)
   ========================================================= */

/* ---------- Divider firma (línea con destello viajero) ---------- */
@keyframes fxTravel {
  0% {
    left: -40%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.fx-divider {
  position: relative;
  width: calc(100% - 40px);
  max-width: calc(var(--maxw) - 40px);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 241, 244, 0.22) 22%,
    rgba(238, 241, 244, 0.22) 78%,
    transparent
  );
  overflow: visible;
}
.fx-divider::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -40%;
  width: 40%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon),
    #ffffff,
    var(--neon),
    transparent
  );
  filter: drop-shadow(0 0 8px rgba(238, 241, 244, 0.85));
  animation: fxTravel 7s ease-in-out infinite;
}

/* ---------- Teasers de Inicio (tarjetas a cada página) ---------- */
.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 241, 244, 0.45);
  box-shadow: 0 18px 46px -22px rgba(238, 241, 244, 0.75);
}
.teaser-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.2rem;
  color: var(--neon);
  background: rgba(238, 241, 244, 0.12);
  border: 1px solid rgba(238, 241, 244, 0.22);
}
.teaser-card h3 {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}
.teaser-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}
.teaser-go {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand);
}
.teaser-go i {
  transition: transform 0.25s ease;
}
.teaser-card:hover .teaser-go {
  text-shadow: 0 0 12px rgba(238, 241, 244, 0.5);
}
.teaser-card:hover .teaser-go i {
  transform: translateX(5px);
}

/* ---------- Carrusel "Objetos en descuento" ---------- */
.showcase {
  text-align: center;
}
.show-viewport {
  position: relative;
  margin: 44px auto 0;
  max-width: 1000px;
  overflow: hidden;
  padding: 18px 0 26px;
  cursor: grab;
  touch-action: pan-y; /* permite scroll vertical; el horizontal lo movemos nosotros */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 9%,
    #000 91%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 9%,
    #000 91%,
    transparent
  );
}
.show-viewport.dragging {
  cursor: grabbing;
}
.show-track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.show-media img {
  -webkit-user-drag: none;
  user-select: none;
}
.show-card {
  flex: 0 0 auto;
  width: clamp(248px, 70vw, 300px);
  border-radius: 18px;
  overflow: hidden;
  background: #141a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: inherit; /* hereda grab/grabbing del viewport */
  transform: scale(0.86);
  opacity: 0.5;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.show-card.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: var(--neon);
  box-shadow:
    0 26px 60px -24px rgba(238, 241, 244, 0.6),
    0 0 0 1px rgba(238, 241, 244, 0.3);
}
.show-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.03);
}
.show-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 14px -3px rgba(238, 241, 244, 0.85);
}
.show-body {
  padding: 16px 16px 18px;
  text-align: left;
}
.show-name {
  margin: 0 0 9px;
  font-size: 1.02rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.show-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 14px;
}
.show-price .now {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand);
  text-shadow: 0 0 10px rgba(238, 241, 244, 0.3);
}
.show-price .was {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}
.show-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 16px -4px rgba(238, 241, 244, 0.7);
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease;
}
.show-buy:hover {
  filter: brightness(1.06);
  box-shadow: 0 0 22px -3px rgba(238, 241, 244, 0.9);
}
.show-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.show-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.show-dot.is-active {
  width: 26px;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 10px -1px rgba(238, 241, 244, 0.8);
}
.show-cta {
  margin-top: 32px;
}

/* ---------- Timeline de "Cómo comprar" (línea viajera) ---------- */
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 241, 244, 0.28) 12%,
    rgba(238, 241, 244, 0.28) 88%,
    transparent
  );
  z-index: 0;
}
.steps::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 11%;
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon),
    #ffffff,
    var(--neon),
    transparent
  );
  filter: drop-shadow(0 0 9px rgba(238, 241, 244, 0.9));
  animation: stepsTravel 6.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes stepsTravel {
  0% {
    left: 9%;
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  100% {
    left: calc(89% - 70px);
    opacity: 0;
  }
}
.step {
  z-index: 1;
}

/* =========================================================
   Retoques de animación (micro-interacciones de hover)
   ========================================================= */
.f-ico,
.a-ico,
.teaser-ico {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}
.feature:hover .f-ico,
.about-card:hover .a-ico,
.teaser-card:hover .teaser-ico {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 20px -4px rgba(238, 241, 244, 0.85);
}
.review-stars i {
  transition: transform 0.3s ease;
}
.review:hover .review-stars i {
  animation: starPop 0.5s ease;
}
.review:hover .review-stars i:nth-child(2) {
  animation-delay: 0.04s;
}
.review:hover .review-stars i:nth-child(3) {
  animation-delay: 0.08s;
}
.review:hover .review-stars i:nth-child(4) {
  animation-delay: 0.12s;
}
.review:hover .review-stars i:nth-child(5) {
  animation-delay: 0.16s;
}
@keyframes starPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.28);
    filter: drop-shadow(0 0 6px rgba(238, 241, 244, 0.8));
  }
}
.pay-pill {
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
}
.pay-pill:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 18px 30px -12px rgba(238, 241, 244, 0.5),
    0 12px 24px -12px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 #ffffff;
}
.show-card:not(.is-active):hover {
  opacity: 0.82;
}
.show-dot:hover {
  background: rgba(238, 241, 244, 0.6);
}

/* El marquee inline se oculta antes que el resto si no cabe */
@media (max-width: 1140px) {
  .header-marquee {
    display: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root {
    --header-h: 60px;
  }
  .header-bottom {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-discord {
    display: none;
  }
  .header-marquee,
  .promo-badge {
    display: none;
  }
  .header-row {
    gap: 10px;
    padding: 0 16px;
  }
  .logo-text {
    font-size: 1.05rem;
    letter-spacing: 0.03em;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
  }
  .header-actions {
    gap: 8px;
  }
  .cur-dd-trigger {
    padding: 7px 10px;
  }
  .cur-dd-trigger .cur-code {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta,
  .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    min-height: 320px;
  }
  .hero-char {
    height: 300px;
  }
  .hero-logo {
    width: 268px;
    height: 268px;
  }
  .hero-char-ring {
    width: 312px;
    height: 312px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before,
  .steps::after {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  /* En móvil las categorías se acomodan en varias filas: TODAS visibles,
     sin scroll oculto (antes la gente no sabía que había que deslizar) */
  .cat-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .cat-pill {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 0.78rem;
    gap: 6px;
    border-radius: 11px;
  }
  .cat-pill-ico {
    font-size: 0.82rem;
  }
  .cat-pill-count {
    min-width: 18px;
    height: 17px;
    padding: 0 5px;
    font-size: 0.62rem;
  }
  .cat-pill-star {
    width: 16px;
    height: 16px;
    font-size: 0.5rem;
    top: -6px;
    right: -4px;
  }
  .hero-float-card,
  .hero-feature {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-text {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .hero-title {
    font-size: clamp(1.55rem, 7.5vw, 2.4rem);
  }
  .hero-sub {
    font-size: 0.92rem;
  }
  .about-cards,
  .reviews-grid,
  .teasers,
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-thumbs {
    flex-direction: row;
  }
}
/* ---------- Densidad / espaciado en móvil ---------- */
@media (max-width: 980px) {
  .section {
    padding: 64px 20px;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 50px 16px;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .hero-inner {
    padding: 34px 18px 46px;
    gap: 26px;
  }
  .fx-divider {
    margin-top: 22px !important;
  }
  .features {
    padding-top: 22px;
  }
  .promo {
    padding-top: 28px;
  }
  .show-viewport {
    margin-top: 30px;
  }
  .show-dots {
    margin-top: 18px;
  }
  .show-cta {
    margin-top: 24px;
  }
  .pay-marquee-wrap {
    margin-top: 30px;
  }
  .footer-inner {
    padding: 40px 20px;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  body::before {
    animation: none !important;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   CUENTAS Y COMPRAS (cuenta.html + botón del header)
   ========================================================= */

/* ---- Botón "Cuenta" del header ---- */
.account-btn {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(238, 241, 244, 0.22);
  color: var(--text);
  font-size: 0.85rem;
}
.account-btn:hover {
  border-color: var(--neon);
  box-shadow: 0 0 16px -5px rgba(238, 241, 244, 0.7);
}
.account-btn.logged {
  border-color: rgba(238, 241, 244, 0.5);
  color: var(--neon);
}
.account-btn span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- Botón secundario del modal de producto ---- */
.modal-cta-alt {
  margin-top: 10px;
}

/* ---- Página Mi cuenta ---- */
.acc-section {
  min-height: 60vh;
}
.acc-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.acc-alert {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 77, 94, 0.12);
  border: 1px solid rgba(255, 77, 94, 0.45);
  color: #ffb3bb;
}
.acc-alert.ok {
  background: rgba(57, 217, 138, 0.1);
  border-color: rgba(57, 217, 138, 0.45);
  color: #8df0c0;
}
.acc-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.acc-card-head {
  text-align: center;
  margin-bottom: 18px;
}
.acc-card-head h3 {
  margin: 10px 0 4px;
  font-size: 1.25rem;
}
.acc-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.acc-big-ico {
  font-size: 2rem;
  color: var(--neon);
  filter: drop-shadow(0 0 12px rgba(238, 241, 244, 0.6));
}

/* tabs */
.acc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.acc-tab {
  padding: 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.acc-tab.active {
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  border-color: transparent;
}

.acc-discord {
  width: 100%;
  justify-content: center;
}
.acc-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.acc-or::before,
.acc-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* formularios */
.acc-form {
  display: grid;
  gap: 14px;
}
.acc-label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.acc-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.acc-input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(238, 241, 244, 0.15);
}
.acc-code {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 12px;
  font-weight: 800;
}
.acc-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.acc-submit {
  width: 100%;
  justify-content: center;
}
.acc-link {
  background: none;
  border: none;
  color: var(--neon);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px;
  justify-self: center;
}
.acc-link:hover {
  text-decoration: underline;
}

/* checkout */
.acc-product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.acc-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}
.acc-product-name {
  font-weight: 700;
}
.acc-product-price {
  color: var(--neon);
  font-weight: 800;
  margin-top: 2px;
}
.acc-usd {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}
.acc-methods {
  display: grid;
  gap: 8px;
}
.acc-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.acc-method i:first-child {
  color: var(--neon);
  width: 20px;
  text-align: center;
}
.acc-method-check {
  margin-left: auto;
  opacity: 0;
  color: var(--neon);
  transition: opacity 0.2s ease;
}
.acc-method.active {
  border-color: var(--neon);
  background: rgba(238, 241, 244, 0.07);
}
.acc-method.active .acc-method-check {
  opacity: 1;
}

/* instrucciones de pago */
.acc-inst {
  margin-bottom: 18px;
}
.acc-inst-amount {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(238, 241, 244, 0.08);
  border: 1px solid rgba(238, 241, 244, 0.35);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.acc-inst-amount b {
  color: var(--neon);
}
.acc-inst-body {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #c7d3de;
}
.acc-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px;
  border-radius: 12px;
  border: 2px dashed rgba(238, 241, 244, 0.35);
  background: rgba(238, 241, 244, 0.04);
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  transition: all 0.2s ease;
}
.acc-file:hover {
  border-color: var(--neon);
  color: var(--text);
}
.acc-file i {
  font-size: 1.6rem;
  color: var(--neon);
}

/* perfil + pedidos */
.acc-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.acc-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 22px -6px rgba(238, 241, 244, 0.8);
  flex-shrink: 0;
}
.acc-profile-info {
  min-width: 0;
  flex: 1;
}
.acc-email {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.acc-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.acc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}
.acc-chip.discord {
  color: #aeb6ff;
  border-color: rgba(88, 101, 242, 0.5);
}
.acc-chip.ok {
  color: var(--ok);
  border-color: rgba(57, 217, 138, 0.4);
}
.acc-logout {
  padding: 10px 16px;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.acc-orders-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.acc-orders-head h3 {
  margin: 0;
  font-size: 1.05rem;
}
.acc-orders-head h3 i {
  color: var(--neon);
  margin-right: 6px;
}
.acc-shop-more {
  padding: 9px 16px;
  font-size: 0.8rem;
}
.acc-orders {
  display: grid;
  gap: 12px;
}
.acc-order {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.acc-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.acc-order-id {
  font-weight: 800;
  color: var(--neon);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.acc-status {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid;
}
.acc-status.st-pend {
  color: #ffd166;
  border-color: rgba(255, 209, 102, 0.45);
  background: rgba(255, 209, 102, 0.08);
}
.acc-status.st-rev {
  color: var(--brand);
  border-color: rgba(214, 218, 222, 0.4);
  background: rgba(214, 218, 222, 0.07);
}
.acc-status.st-paid {
  color: var(--neon);
  border-color: rgba(238, 241, 244, 0.45);
  background: rgba(238, 241, 244, 0.08);
}
.acc-status.st-done {
  color: var(--ok);
  border-color: rgba(57, 217, 138, 0.45);
  background: rgba(57, 217, 138, 0.08);
}
.acc-status.st-cancel {
  color: var(--danger);
  border-color: rgba(255, 77, 94, 0.45);
  background: rgba(255, 77, 94, 0.08);
}
.acc-order-name {
  font-weight: 700;
  margin-bottom: 8px;
}
.acc-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.acc-order-meta i {
  color: var(--neon);
  margin-right: 4px;
}
.acc-order-pay {
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 0.82rem;
}
.acc-empty {
  text-align: center;
  padding: 34px 20px;
  color: var(--muted);
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.7;
}
.acc-empty i {
  display: block;
  font-size: 1.6rem;
  color: var(--neon);
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .account-btn span {
    display: none;
  }
  .account-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .acc-card {
    padding: 20px 16px;
  }
  .acc-profile {
    flex-wrap: wrap;
  }
}

/* =========================================================
   PANEL DE PEDIDOS v2 (resumen + pestañas + progreso)
   ========================================================= */

/* la vista de cuenta usa un ancho mayor para el panel */
.acc-wrap:has(#accountView:not([hidden])) {
  max-width: 780px;
}

/* ---- resumen con contadores ---- */
.ord-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.ord-sum {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.ord-sum i {
  font-size: 1rem;
  margin-bottom: 2px;
}
.ord-sum-n {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.ord-sum-l {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.ord-sum.empty {
  opacity: 0.45;
}
.ord-sum.t-pend i { color: #ffd166; }
.ord-sum.t-rev i  { color: var(--brand); }
.ord-sum.t-paid i { color: var(--neon); }
.ord-sum.t-done i { color: var(--ok); }
.ord-sum.t-pend:not(.empty) { border-color: rgba(255, 209, 102, 0.35); }
.ord-sum.t-rev:not(.empty)  { border-color: rgba(214, 218, 222, 0.35); }
.ord-sum.t-paid:not(.empty) { border-color: rgba(238, 241, 244, 0.35); }
.ord-sum.t-done:not(.empty) { border-color: rgba(57, 217, 138, 0.35); }

/* ---- pestañas ---- */
.ord-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ord-tab {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ord-tab:hover {
  border-color: var(--neon);
  color: var(--text);
}
.ord-tab.active {
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  border-color: transparent;
}
.ord-tab-n {
  display: inline-block;
  min-width: 20px;
  padding: 1px 6px;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  text-align: center;
}
.ord-tab.active .ord-tab-n {
  background: rgba(16, 18, 20, 0.18);
}

/* ---- tarjeta de pedido ---- */
.ord-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(6px);
}
.ord-card.st-pend  { border-left: 3px solid rgba(255, 209, 102, 0.7); }
.ord-card.st-rev   { border-left: 3px solid rgba(214, 218, 222, 0.7); }
.ord-card.st-paid  { border-left: 3px solid rgba(238, 241, 244, 0.7); }
.ord-card.st-done  { border-left: 3px solid rgba(57, 217, 138, 0.7); }
.ord-card.st-cancel { border-left: 3px solid rgba(255, 77, 94, 0.7); }

.ord-head {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ord-head .acc-order-id i {
  margin-right: 4px;
}
.ord-date {
  color: var(--muted);
  font-size: 0.78rem;
}
.ord-date i {
  margin-right: 4px;
}
.ord-head .acc-status {
  margin-left: auto;
}
.ord-product {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ord-product .acc-order-name {
  margin-bottom: 0;
}
.ord-price {
  color: var(--neon);
  font-weight: 800;
}

/* ---- barra de progreso ---- */
.ord-steps {
  display: flex;
  align-items: flex-start;
  margin: 8px 0 2px;
}
.ord-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 68px;
  flex-shrink: 0;
}
.ord-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s ease;
}
.ord-step-label {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.ord-step-line {
  flex: 1;
  height: 2px;
  min-width: 8px;
  margin-top: 16px;
  border-radius: 2px;
  background: var(--border);
}
.ord-step-line.done {
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 8px -2px var(--neon);
}
.ord-step.done .ord-step-dot {
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  border-color: transparent;
  box-shadow: 0 0 14px -5px rgba(238, 241, 244, 0.8);
}
.ord-step.done .ord-step-label {
  color: var(--text);
}
.ord-step.current .ord-step-dot {
  border-color: var(--neon);
  color: var(--neon);
  animation: ordPulse 1.6s ease-in-out infinite;
}
.ord-step.current .ord-step-label {
  color: var(--neon);
}
@keyframes ordPulse {
  0%, 100% { box-shadow: 0 0 8px -4px var(--neon); }
  50%      { box-shadow: 0 0 18px -2px var(--neon); }
}

/* ---- cancelado / nota / acciones ---- */
.ord-cancel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin: 6px 0;
  border-radius: 12px;
  background: rgba(255, 77, 94, 0.08);
  border: 1px solid rgba(255, 77, 94, 0.4);
  color: #ffb3bb;
  font-weight: 700;
  font-size: 0.9rem;
}
.ord-note {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
.ord-reupload {
  padding: 10px 18px;
  font-size: 0.82rem;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .ord-summary {
    grid-template-columns: repeat(2, 1fr);
  }
  .ord-step {
    width: 56px;
  }
  .ord-step-dot {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }
  .ord-head .ord-date {
    order: 3;
    width: 100%;
  }
  .ord-card {
    padding: 16px;
  }
}

/* ---- Carrito del header: acceso a "Mis pedidos" con contador ---- */
.cart-btn {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  box-shadow: 0 0 10px -2px rgba(238, 241, 244, 0.9);
}

/* =========================================================
   ANIMACIONES DEL PANEL DE CUENTA Y PEDIDOS
   (las entradas solo corren con la clase .in / .view-in;
    el auto-refresh silencioso no re-anima nada)
   ========================================================= */

/* entrada de cada vista (login, pedidos, checkout, pago…) */
@keyframes accViewIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.view-in {
  animation: accViewIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* tarjetas de pedido: aparecen en cascada */
@keyframes ordFadeUp {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.ord-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ord-card.in {
  animation: ordFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ord-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 241, 244, 0.4);
  box-shadow: 0 14px 34px -18px rgba(238, 241, 244, 0.55);
}

/* tarjetitas del resumen: pop + hover */
@keyframes ordPop {
  from { opacity: 0; transform: scale(0.8); }
  70%  { transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
.ord-sum {
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ord-sum.in {
  animation: ordPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ord-sum:hover {
  transform: translateY(-3px);
}

/* barra de progreso: los puntos brotan y la línea se llena */
@keyframes ordDotPop {
  from { transform: scale(0.35); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes ordLineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.ord-card.in .ord-step-dot {
  animation: ordDotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ord-card.in .ord-step-line.done {
  transform-origin: left center;
  animation: ordLineGrow 0.45s ease both;
}
/* el paso actual: brota y luego sigue pulsando */
.ord-card.in .ord-step.current .ord-step-dot {
  animation:
    ordDotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    ordPulse 1.6s 0.7s ease-in-out infinite;
}

/* aviso (errores / éxito): entra deslizando */
@keyframes alertIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.acc-alert {
  animation: alertIn 0.3s ease both;
}

/* avatar del perfil: halo que respira */
@keyframes avatarGlow {
  0%, 100% { box-shadow: 0 0 22px -6px rgba(238, 241, 244, 0.8); }
  50%      { box-shadow: 0 0 32px -4px rgba(238, 241, 244, 1); }
}
.acc-avatar {
  animation: avatarGlow 3.5s ease-in-out infinite;
}

/* contador del carrito: pop al aparecer */
@keyframes badgePop {
  from { transform: scale(0); }
  70%  { transform: scale(1.25); }
  to   { transform: scale(1); }
}
.cart-badge {
  animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* estado vacío: la cajita flota suave */
@keyframes emptyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.acc-empty i {
  animation: emptyFloat 3s ease-in-out infinite;
}

/* accesibilidad: sin animaciones si el sistema las desactiva */
@media (prefers-reduced-motion: reduce) {
  .view-in,
  .ord-card.in,
  .ord-sum.in,
  .ord-card.in .ord-step-dot,
  .ord-card.in .ord-step-line.done,
  .ord-card.in .ord-step.current .ord-step-dot,
  .acc-alert,
  .acc-avatar,
  .cart-badge,
  .acc-empty i {
    animation: none !important;
  }
  .ord-card,
  .ord-sum {
    transition: none;
  }
}

/* =========================================================
   PANEL DE ADMINISTRACIÓN (admin.html)
   ========================================================= */

.adm-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.adm-nav {
  margin-bottom: 24px;
}
.adm-block {
  margin-bottom: 18px;
}
.adm-block-title {
  margin: 0 0 16px;
  font-size: 1rem;
}
.adm-block-title i {
  color: var(--neon);
  margin-right: 6px;
}
.adm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
textarea.acc-input {
  resize: vertical;
  font-family: inherit;
}

/* enlace dorado "Panel admin" en la cuenta */
.acc-chip.adm {
  color: #ffd166;
  border-color: rgba(255, 209, 102, 0.5);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.acc-chip.adm:hover {
  box-shadow: 0 0 14px -4px rgba(255, 209, 102, 0.8);
  transform: translateY(-1px);
}

/* ---- pedidos (vista staff) ---- */
.adm-order-grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 10px 0;
}
.adm-proof img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.adm-proof img:hover {
  transform: scale(1.05);
  border-color: var(--neon);
}
.adm-noproof {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
  padding: 8px;
}
.adm-order-info {
  flex: 1;
  min-width: 0;
}
.adm-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.adm-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.adm-btn {
  padding: 9px 16px;
  font-size: 0.8rem;
}
.adm-danger {
  color: #ffb3bb;
  border-color: rgba(255, 77, 94, 0.4);
}
.adm-danger:hover {
  border-color: var(--danger);
  box-shadow: 0 0 14px -5px rgba(255, 77, 94, 0.8);
}
.adm-danger.adm-confirm {
  background: rgba(255, 77, 94, 0.15);
  border-color: var(--danger);
}
.adm-inline {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border);
}

/* ---- stock ---- */
.adm-stock-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.adm-stock-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.adm-stock-info {
  flex: 1;
  min-width: 150px;
}
.adm-stock-ctl {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.adm-stock-n {
  display: grid;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.adm-stock-n .acc-input {
  width: 84px;
  padding: 8px 10px;
}

/* ---- clientes ---- */
.adm-search {
  margin-bottom: 14px;
}
.adm-table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.adm-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.adm-table th {
  text-align: left;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.adm-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.adm-table tbody tr:hover {
  background: rgba(238, 241, 244, 0.04);
}
.adm-ok {
  color: var(--ok);
  font-size: 0.7rem;
}

/* ---- estadísticas ---- */
.adm-rev {
  margin-top: 4px;
}
.adm-recent {
  display: grid;
  gap: 8px;
}
.adm-recent-row {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}
.adm-recent-name {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 640px) {
  .adm-grid-2 {
    grid-template-columns: 1fr;
  }
  .adm-order-grid {
    flex-direction: column;
  }
  .adm-proof img,
  .adm-noproof {
    width: 100%;
    height: 160px;
  }
}

/* =========================================================
   AVISOS EN VIVO: toasts, confeti y compras recientes
   ========================================================= */

/* toasts (arriba a la derecha) */
#fsToasts {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  z-index: 9999;
  display: grid;
  gap: 10px;
  max-width: min(340px, calc(100vw - 32px));
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: none; }
}
.fs-toast {
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(11, 18, 30, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 241, 244, 0.45);
  box-shadow: 0 10px 34px -12px rgba(238, 241, 244, 0.5);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  animation: toastIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fs-toast b {
  color: var(--neon);
}
.fs-toast.err {
  border-color: rgba(255, 77, 94, 0.5);
  box-shadow: 0 10px 34px -12px rgba(255, 77, 94, 0.5);
}
.fs-toast.out {
  opacity: 0;
  transform: translateX(40px);
}

/* confeti */
.fs-confetti {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* compras recientes (abajo a la izquierda) */
@keyframes socialIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
.fs-social {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 18, 30, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px -14px rgba(0, 0, 0, 0.8);
  animation: socialIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fs-social.out {
  opacity: 0;
  transform: translateY(24px);
}
.fs-social-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  font-size: 0.85rem;
  box-shadow: 0 0 16px -5px rgba(238, 241, 244, 0.9);
}
.fs-social-txt {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  min-width: 0;
}
.fs-social-txt b {
  color: var(--text);
}
.fs-social-prod {
  color: var(--neon);
  font-weight: 700;
}
.fs-social-time {
  font-size: 0.72rem;
}
.fs-social-x {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 6px;
  align-self: flex-start;
}
.fs-social-x:hover {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .fs-toast,
  .fs-social {
    animation: none !important;
  }
}

/* ---- Conexiones de la cuenta (correo / contraseña / Discord) ---- */
.conn-card {
  margin-bottom: 24px;
}
.conn-title {
  margin: 0 0 14px;
  font-size: 1rem;
}
.conn-title i {
  color: var(--neon);
  margin-right: 6px;
}
.conn-list {
  display: grid;
  gap: 10px;
}
.conn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.conn-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(238, 241, 244, 0.08);
  border: 1px solid rgba(238, 241, 244, 0.3);
  color: var(--neon);
  font-size: 0.9rem;
}
.conn-ico.conn-dc {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.45);
  color: #aeb6ff;
}
.conn-info {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}
.conn-info b {
  font-size: 0.88rem;
}
.conn-info span {
  font-size: 0.76rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
}
.conn-btn {
  padding: 9px 14px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .conn-row {
    flex-wrap: wrap;
  }
  .conn-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- Productos que se entregan por Discord (ticket en tienda) ---- */
.dc-hint {
  color: #aeb6ff;
}
.dc-hint i {
  margin-right: 4px;
}
.dc-step {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.45);
}
.dc-step-head {
  font-weight: 800;
  margin-bottom: 8px;
}
.dc-step-head i {
  color: #aeb6ff;
  margin-right: 6px;
}
.dc-step p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: #c7d3de;
  line-height: 1.6;
}
.dc-step .btn {
  width: 100%;
  justify-content: center;
}
.adm-dc {
  color: #aeb6ff;
}

/* =========================================================
   BOOST — followers, likes, vistas (boost.html)
   ========================================================= */

.boost-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}
.boost-plat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.22s ease;
}
.boost-plat i {
  color: var(--pc);
  font-size: 1rem;
}
.boost-plat:hover {
  border-color: var(--pc);
  color: var(--text);
  transform: translateY(-2px);
}
.boost-plat.active {
  border-color: var(--pc);
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 18px -6px var(--pc);
}

.boost-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.boost-config,
.boost-summary {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
}

.boost-step-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 10px;
}
.boost-step-label:first-child {
  margin-top: 0;
}
.boost-qty-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.boost-qty-n {
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0;
}

.boost-services {
  display: grid;
  gap: 8px;
}
.boost-svc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.boost-svc-info {
  display: grid;
  gap: 2px;
}
.boost-svc-info b {
  font-size: 0.92rem;
}
.boost-svc-info span {
  font-size: 0.76rem;
  color: var(--muted);
}
.boost-svc-check {
  opacity: 0;
  color: var(--neon);
  transition: opacity 0.2s ease;
}
.boost-svc.active {
  border-color: var(--neon);
  background: rgba(238, 241, 244, 0.07);
}
.boost-svc.active .boost-svc-check {
  opacity: 1;
}

.boost-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.boost-link:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(238, 241, 244, 0.15);
}
.boost-link i {
  color: var(--muted);
  font-size: 0.85rem;
}
.boost-link input {
  flex: 1;
  min-width: 0;
  padding: 13px 0;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}

.boost-range {
  width: 100%;
  accent-color: var(--neon);
  margin: 4px 0 10px;
  cursor: pointer;
}
.boost-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.boost-preset {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.boost-preset:hover {
  border-color: var(--neon);
  color: var(--text);
}
.boost-preset.active {
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  color: var(--brand-ink);
  border-color: transparent;
}

/* resumen */
.boost-receive {
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(238, 241, 244, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(238, 241, 244, 0.3);
  margin-bottom: 16px;
}
.boost-receive-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.boost-receive-n {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}
.boost-receive-svc {
  font-size: 0.85rem;
  color: var(--neon);
  font-weight: 700;
  margin-bottom: 12px;
}
.boost-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 68px;
}
@keyframes boostBarIn {
  from { transform: scaleY(0.2); opacity: 0.4; }
  to   { transform: scaleY(1); opacity: 1; }
}
.boost-bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 12px -4px rgba(238, 241, 244, 0.8);
  transform-origin: bottom;
  animation: boostBarIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.boost-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--muted);
}
.boost-total-row b {
  font-size: 1.7rem;
  color: var(--neon);
}
.boost-total-usd {
  text-align: right;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.boost-perks {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}
.boost-perks i {
  color: var(--neon);
  margin-right: 6px;
}
.boost-buy {
  width: 100%;
  justify-content: center;
}
.boost-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}
.boost-hint {
  text-align: center;
  margin-top: 10px;
}

/* enlace mostrado en el checkout */
.acc-product-link {
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--muted);
  word-break: break-all;
}
.acc-product-link i {
  color: var(--neon);
  margin-right: 4px;
}

@media (max-width: 760px) {
  .boost-panel {
    grid-template-columns: 1fr;
  }
  .boost-plat {
    padding: 9px 13px;
    font-size: 0.8rem;
  }
  .boost-config,
  .boost-summary {
    padding: 18px;
  }
}

/* =========================================================
   BOOST v2: colores por plataforma + avisos + acceso catálogo
   ========================================================= */

/* El panel toma el color de la red elegida (--pc lo pone boost.js).
   En navegadores sin color-mix se mantiene el look neón de base. */
.boost-panel {
  --pc: var(--neon);
}
.boost-receive {
  background:
    radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--pc) 18%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border-color: color-mix(in srgb, var(--pc) 45%, transparent);
}
.boost-receive-svc {
  color: var(--pc);
}
.boost-bars span {
  background: linear-gradient(180deg, var(--pc), color-mix(in srgb, var(--pc) 55%, #04141a));
  box-shadow: 0 0 12px -4px var(--pc);
}
.boost-total-row b {
  color: var(--pc);
}
.boost-range {
  accent-color: var(--pc);
}
.boost-svc.active {
  border-color: var(--pc);
  background: color-mix(in srgb, var(--pc) 9%, transparent);
}
.boost-svc.active .boost-svc-check {
  color: var(--pc);
}
.boost-preset.active {
  background: var(--pc);
  color: #06131a;
  border-color: transparent;
}
.boost-buy:not(:disabled) {
  background: linear-gradient(120deg, var(--pc), color-mix(in srgb, var(--pc) 65%, #ffffff));
  color: #06131a;
  box-shadow: 0 0 22px -6px var(--pc);
}
.boost-buy:not(:disabled):hover {
  box-shadow: 0 0 32px -4px var(--pc);
}

/* aviso de la plataforma (ej: Instagram en público) */
.boost-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.45);
  color: #ffd166;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}
.boost-warn i {
  margin-top: 2px;
}

/* aviso en el checkout (viene con el producto) */
.acc-product-warn {
  margin-top: 6px;
  font-size: 0.74rem;
  color: #ffd166;
  line-height: 1.5;
}
.acc-product-warn i {
  margin-right: 4px;
}

/* píldora "Followers" dentro de las categorías del catálogo */
.cat-pill-boost {
  color: #ff7ab8;
  border-color: rgba(255, 122, 184, 0.4);
}
.cat-pill-boost:hover {
  color: #fff;
  background: rgba(255, 122, 184, 0.12);
  box-shadow: 0 0 14px -5px rgba(255, 122, 184, 0.7);
  transform: translateY(-2px);
}
.cat-pill-ext {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* Regla global: el atributo hidden SIEMPRE gana, aunque el elemento
   tenga display:flex/grid en su clase (arregla recuadros "fantasma") */
[hidden] {
  display: none !important;
}

/* ---- Página Robux (reusa el diseño Boost en dorado) ---- */
.rbx-guide {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(242, 185, 12, 0.07);
  border: 1px solid rgba(242, 185, 12, 0.45);
}
.rbx-guide-head {
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffd166;
}
.rbx-guide-head i {
  margin-right: 6px;
}
.rbx-guide-head b {
  color: #fff;
  font-size: 1.05rem;
}
.rbx-guide-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: #c7d3de;
  line-height: 1.55;
}

/* píldora "Robux" en las categorías del catálogo */
.cat-pill-robux {
  color: #ffd166;
  border-color: rgba(242, 185, 12, 0.4);
}
.cat-pill-robux:hover {
  color: #fff;
  background: rgba(242, 185, 12, 0.12);
  box-shadow: 0 0 14px -5px rgba(242, 185, 12, 0.7);
  transform: translateY(-2px);
}

.rbx-guide-note {
  margin: -4px 0 10px;
  font-size: 0.8rem;
  color: #c7d3de;
  line-height: 1.5;
}
.rbx-guide-note b {
  color: #ffd166;
}

/* ---- Página Server Boosts (boosts.html) ---- */
.sb-guide {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(209, 109, 255, 0.07);
  border: 1px solid rgba(209, 109, 255, 0.45);
}
.sb-guide-head {
  font-weight: 800;
  margin-bottom: 10px;
  color: #e3a7ff;
}
.sb-guide-head i {
  margin-right: 6px;
}
.sb-level {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.sb-level i {
  color: var(--pc, #d16dff);
  margin-right: 6px;
}
.sb-level b {
  color: var(--text);
}

/* píldora "Server Boosts" en las categorías del catálogo */
.cat-pill-sboost {
  color: #e3a7ff;
  border-color: rgba(209, 109, 255, 0.4);
}
.cat-pill-sboost:hover {
  color: #fff;
  background: rgba(209, 109, 255, 0.12);
  box-shadow: 0 0 14px -5px rgba(209, 109, 255, 0.7);
  transform: translateY(-2px);
}

/* ---- Barra "Objetivo de mejora" estilo Discord (boosts.html) ---- */
.sb-goal {
  position: relative;
  height: 36px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(209, 109, 255, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sb-goal-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b845ff, #ff73fa);
  box-shadow: 0 0 18px -4px #ff73fa;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sb-goal-label {
  position: relative;
  z-index: 1;
  margin-left: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}
.sb-goal-label i {
  margin-right: 5px;
}
.sb-goal-count {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

/* ---- Tarjeta "Personalizable" del catálogo (abre configurador) ---- */
.pc-badge.cfg {
  background: linear-gradient(120deg, #5865f2, #d16dff);
  color: #fff;
  box-shadow: 0 0 14px -4px rgba(136, 101, 247, 0.8);
}

/* ---- Zona "Servicios personalizables" (categoría Discord) ---- */
.cfg-zone {
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(88, 101, 242, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(136, 101, 247, 0.35);
}
.cfg-zone-head {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aeb6ff;
  margin-bottom: 14px;
}
.cfg-zone-head i {
  margin-right: 6px;
}
.cfg-zone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cfg-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.cfg-card:hover {
  transform: translateY(-3px);
  border-color: #a970ff;
  box-shadow: 0 14px 32px -14px rgba(136, 101, 247, 0.7);
}
.cfg-card-img {
  width: 112px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cfg-card-body {
  min-width: 0;
  display: grid;
  gap: 5px;
  justify-items: start;
}
.cfg-card-body .pc-badge {
  position: static;
}
.cfg-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
}
.cfg-card-body p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}
.cfg-card-go {
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #aeb6ff;
  transition: color 0.2s ease;
}
.cfg-card-go i {
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.cfg-card:hover .cfg-card-go {
  color: #fff;
}
.cfg-card:hover .cfg-card-go i {
  transform: translateX(3px);
}
@media (max-width: 700px) {
  .cfg-zone-cards {
    grid-template-columns: 1fr;
  }
  .cfg-zone {
    padding: 14px;
  }
}

/* =========================================================
   DECORACIONES DE DISCORD (decoraciones.html)
   ========================================================= */
.deco-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.deco-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.deco-search {
  flex: 1;
  min-width: 240px;
}
.deco-updated {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
}
.deco-updated i {
  color: var(--neon);
  margin-right: 4px;
}

/* colecciones desplegables */
.deco-col {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}
.deco-col-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.deco-col-head:hover {
  background: rgba(255, 255, 255, 0.04);
}
.deco-col-count {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.deco-chev {
  color: var(--muted);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.deco-col.open .deco-chev {
  transform: rotate(180deg);
}
.deco-col.open .deco-col-head {
  border-bottom: 1px solid var(--border);
}

/* cuadrícula de decos */
.deco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  padding: 16px;
}
.deco-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.deco-card:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 182, 255, 0.6);
  box-shadow: 0 12px 28px -14px rgba(136, 101, 247, 0.6);
}
.deco-thumb {
  position: relative;
  width: 96px;
  height: 96px;
}
.deco-av {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b2230;
}
.deco-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.deco-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deco-price {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--neon);
  text-align: center;
}
.deco-buy {
  padding: 8px 14px;
  font-size: 0.74rem;
  width: 100%;
  justify-content: center;
}
@media (max-width: 560px) {
  .deco-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    padding: 12px;
    gap: 10px;
  }
}

/* =========================================================
   FORTNITE — V-Bucks (fortnite.html)
   ========================================================= */
.fn-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.fn-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fn-step-n {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--pc, #00b4ff), #7b5cff);
  color: #04131c;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 0 14px -5px var(--pc, #00b4ff);
}
.fn-step b {
  font-size: 0.9rem;
}
.fn-step p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* cuentas oficiales para agregar */
.fn-accounts {
  display: grid;
  gap: 8px;
  margin: -2px 0 2px 38px;
}
.fn-acc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 255, 0.35);
  background: rgba(0, 180, 255, 0.06);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fn-acc:hover {
  border-color: var(--pc, #00b4ff);
  box-shadow: 0 0 16px -6px var(--pc, #00b4ff);
}
.fn-acc i:first-child {
  color: var(--pc, #00b4ff);
}
.fn-acc-name {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.fn-acc-copy {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.fn-acc.copied {
  border-color: var(--ok);
  background: rgba(57, 217, 138, 0.1);
}
.fn-acc.copied .fn-acc-copy {
  color: var(--ok);
}
.fn-warn {
  margin-bottom: 4px;
}

/* bolsa de pavos (barra de progreso) */
.fn-vb {
  position: relative;
  height: 36px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 180, 255, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fn-vb-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b4ff, #7b5cff);
  box-shadow: 0 0 18px -4px #00b4ff;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.fn-vb-label,
.fn-vb-count {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.fn-vb-label {
  margin-left: 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.fn-vb-label i {
  margin-right: 5px;
}
.fn-vb-count {
  margin-left: auto;
  margin-right: 12px;
  color: var(--text);
}
@media (max-width: 560px) {
  .fn-accounts {
    margin-left: 0;
  }
}

/* =========================================================
   ICONOS Y DETALLES DE LOS CONFIGURADORES
   ========================================================= */

/* marca de agua del panel resumen */
.boost-summary {
  position: relative;
  overflow: hidden;
}
.boost-wm {
  position: absolute;
  right: -16px;
  bottom: -18px;
  font-size: 7rem;
  color: var(--pc, var(--neon));
  opacity: 0.07;
  pointer-events: none;
  transform: rotate(-12deg);
}
.boost-receive,
.boost-total-row,
.boost-perks,
.boost-buy,
.boost-hint {
  position: relative;
  z-index: 1;
}
.boost-receive-svc i {
  margin-right: 5px;
}

/* pasos con icono (guías de gamepass / enlace permanente) */
.cfg-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cfg-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #c7d3de;
  line-height: 1.55;
}
.cfg-step-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--pc, var(--neon));
  font-size: 0.72rem;
}

/* símbolo de Robux */
.rbx-sym,
.rbx-sym-big {
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #f2b90c;
  background: rgba(242, 185, 12, 0.12);
  border: 1px solid rgba(242, 185, 12, 0.5);
  border-radius: 7px;
}
.rbx-sym {
  width: 26px;
  height: 20px;
  font-size: 0.68rem;
}
.rbx-sym-big {
  width: 40px;
  height: 32px;
  font-size: 1rem;
  margin-right: 8px;
  vertical-align: 6px;
}

/* emblemas de nivel de Discord (Server Boosts) */
.sb-levels {
  display: grid;
  gap: 8px;
  margin: 14px 0 4px;
}
.sb-lvl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.22s ease;
}
.sb-lvl:hover {
  border-color: var(--pc, #d16dff);
}
.sb-lvl-badge {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  transition: all 0.25s ease;
}
.sb-lvl-txt {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.sb-lvl-txt b {
  font-size: 0.86rem;
}
.sb-lvl-txt span {
  font-size: 0.72rem;
}
.sb-lvl-ok {
  margin-left: auto;
  color: var(--ok);
  font-size: 0.85rem;
}
.sb-lvl.on {
  color: var(--text);
  border-color: rgba(209, 109, 255, 0.5);
  background: rgba(209, 109, 255, 0.08);
}
.sb-lvl.on .sb-lvl-badge {
  background: linear-gradient(135deg, #b845ff, #ff73fa);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 14px -4px #ff73fa;
}

/* avatar y punto de estado (Miembros) */
.mb-ava {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}
.mb-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #0d1014;
  vertical-align: -1px;
}
.mb-ava .mb-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
}
.mb-dot.on {
  background: #23a55a;
  box-shadow: 0 0 8px -1px #23a55a;
}
.mb-dot.off {
  background: #80848e;
}

/* =========================================================
   FORTNITE v2 — Regalos (fortnite.html)
   Interfaz por pasos + ticket de regalo
   ========================================================= */
.fn2-section {
  --fn: #00b4ff;
  --fn2: #7b5cff;
}

/* ---- barra de progreso de los 3 pasos ---- */
.fn2-track {
  position: relative;
  max-width: 560px;
  margin: 0 auto 30px;
}
.fn2-track-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 21px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.fn2-track-line span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--fn), var(--fn2));
  box-shadow: 0 0 12px -2px var(--fn);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.fn2-track-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.fn2-tstep {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.fn2-tdot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0e141c;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.fn2-tlabel {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}
.fn2-tstep.done .fn2-tdot {
  background: linear-gradient(135deg, var(--fn), var(--fn2));
  border-color: transparent;
  color: #04131c;
  box-shadow: 0 0 18px -4px var(--fn);
  transform: scale(1.06);
}
.fn2-tstep.done .fn2-tlabel {
  color: var(--text);
}

/* ---- layout ---- */
.fn2-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.fn2-main {
  display: grid;
  gap: 14px;
}

/* ---- tarjetas de paso ---- */
.fn2-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fn2-card.ok {
  border-color: rgba(0, 180, 255, 0.45);
  box-shadow: 0 0 26px -18px var(--fn);
}
.fn2-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.fn2-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.3s ease;
}
.fn2-card.ok .fn2-num {
  background: linear-gradient(135deg, var(--fn), var(--fn2));
  border-color: transparent;
  color: #04131c;
}
.fn2-head h3 {
  margin: 0;
  font-size: 1.02rem;
}
.fn2-head p {
  margin: 3px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- cuentas oficiales ---- */
.fn2-accounts {
  display: grid;
  gap: 8px;
}
.fn2-acc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 255, 0.3);
  background: rgba(0, 180, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fn2-acc:hover {
  border-color: var(--fn);
  transform: translateX(3px);
  box-shadow: 0 0 18px -8px var(--fn);
}
.fn2-acc-ava {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fn), var(--fn2));
  color: #04131c;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fn2-acc-name {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.fn2-acc-copy {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.fn2-acc.copied {
  border-color: var(--ok);
  background: rgba(57, 217, 138, 0.1);
}
.fn2-acc.copied .fn2-acc-copy {
  color: var(--ok);
}
.fn2-note,
.fn2-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.55;
}
.fn2-note {
  background: rgba(0, 180, 255, 0.07);
  border: 1px solid rgba(0, 180, 255, 0.35);
  color: #c7e6ff;
}
.fn2-note i {
  color: var(--fn);
  margin-top: 2px;
}
.fn2-warn {
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.45);
  color: #ffd166;
  font-weight: 600;
}
.fn2-warn i {
  margin-top: 2px;
}

/* ---- campos ---- */
.fn2-field {
  display: grid;
  gap: 7px;
}
.fn2-field-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.fn2-field-label i {
  color: var(--fn);
  margin-right: 5px;
}
.fn2-mt {
  display: block;
  margin: 18px 0 8px;
}
.fn2-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fn2-field input:focus {
  border-color: var(--fn);
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.15);
}
.fn2-help {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}
.fn2-help i {
  color: var(--fn);
  margin-right: 4px;
}

/* ---- packs de pavos ---- */
.fn2-sub {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0 10px;
}
.fn2-qty {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fn);
}
.fn2-packs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 8px;
}
.fn2-pack {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fn2-pack:hover {
  border-color: var(--fn);
  transform: translateY(-2px);
}
.fn2-pack-n {
  font-size: 1rem;
  font-weight: 800;
}
.fn2-pack-t {
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.3;
}
.fn2-pack-p {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fn);
  margin-top: 2px;
}
.fn2-pack.active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.22), rgba(123, 92, 255, 0.22));
  box-shadow: 0 0 20px -8px var(--fn);
}
.fn2-pack.active .fn2-pack-p {
  color: #fff;
}
.fn2-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.8rem;
  color: var(--muted);
}
.fn2-custom input {
  width: 92px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  outline: none;
}
.fn2-custom input:focus {
  border-color: var(--fn);
}
.fn2-custom-unit {
  font-weight: 700;
}

/* ---- chips de cuenta ---- */
.fn2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fn2-chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fn2-chip i {
  opacity: 0.35;
  margin-right: 5px;
}
.fn2-chip:hover {
  border-color: var(--fn);
  color: var(--text);
}
.fn2-chip.active {
  border-color: var(--fn);
  background: rgba(0, 180, 255, 0.12);
  color: #fff;
}
.fn2-chip.active i {
  opacity: 1;
  color: var(--fn);
}

/* ---- ticket ---- */
.fn2-ticket {
  position: sticky;
  top: calc(var(--header-h) + 14px);
  padding: 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(0, 180, 255, 0.14), transparent 58%),
    rgba(11, 18, 30, 0.9);
  border: 1px solid rgba(0, 180, 255, 0.32);
  backdrop-filter: blur(8px);
}
.fn2-ticket-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fn2-ticket-ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fn), var(--fn2));
  color: #04131c;
  font-size: 0.9rem;
}
.fn2-ticket-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fn2-ticket-item {
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fn2-ticket-star {
  color: #ffd166;
}
.fn2-ticket-empty {
  color: var(--muted);
  font-size: 0.82rem;
}
.fn2-vb {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
}
.fn2-vb-n {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--fn), var(--fn2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fn2-vb-t {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.fn2-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-bottom: 16px;
}
.fn2-bar-fill {
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fn), var(--fn2));
  box-shadow: 0 0 12px -2px var(--fn);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fn2-rows {
  display: grid;
  gap: 8px;
}
.fn2-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.fn2-row i {
  color: var(--fn);
  margin-right: 5px;
}
.fn2-row b {
  color: var(--text);
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fn2-cut {
  position: relative;
  height: 1px;
  margin: 16px -22px;
  border-top: 2px dashed rgba(255, 255, 255, 0.14);
}
.fn2-cut::before,
.fn2-cut::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
}
.fn2-cut::before {
  left: -9px;
}
.fn2-cut::after {
  right: -9px;
}
.fn2-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}
.fn2-total b {
  font-size: 1.6rem;
  background: linear-gradient(120deg, var(--fn), var(--fn2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fn2-total-usd {
  text-align: right;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.fn2-buy {
  width: 100%;
  justify-content: center;
  background: linear-gradient(120deg, var(--fn), var(--fn2));
  color: #04131c;
  box-shadow: 0 0 22px -6px var(--fn);
}
.fn2-buy:not(:disabled):hover {
  box-shadow: 0 0 32px -4px var(--fn);
}
.fn2-buy:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}
.fn2-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.fn2-perks {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--muted);
}
.fn2-perks i {
  color: var(--fn);
  margin-right: 6px;
}

@media (max-width: 900px) {
  .fn2-layout {
    grid-template-columns: 1fr;
  }
  .fn2-ticket {
    position: static;
  }
}
@media (max-width: 560px) {
  .fn2-card {
    padding: 18px 16px;
  }
  .fn2-packs {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .fn2-tdot {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .fn2-track-line {
    top: 18px;
  }
}

/* ---- Aviso "solo por ticket" en el modal del producto ---- */
.pc-badge.tk {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 0 14px -4px var(--discord);
}
.modal-cta.is-off {
  opacity: 0.45;
  pointer-events: none;
}
@keyframes tkIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.tk-panel {
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(88, 101, 242, 0.09);
  border: 1px solid rgba(88, 101, 242, 0.5);
  animation: tkIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tk-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.tk-head > i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--discord);
  color: #fff;
  font-size: 0.95rem;
}
.tk-head b {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.tk-head span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.tk-head span b {
  display: inline;
  color: #aeb6ff;
  font-size: inherit;
}
.tk-steps {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.tk-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #c7d3de;
  line-height: 1.5;
}
.tk-n {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.25);
  border: 1px solid rgba(88, 101, 242, 0.6);
  color: #aeb6ff;
  font-size: 0.68rem;
  font-weight: 800;
}
.tk-cta {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   DECORACIONES DE DISCORD (decoraciones.html)
   ========================================================= */
.dc-tiers {
  display: grid;
  gap: 8px;
}
.dc-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dc-tier:hover {
  border-color: #5865f2;
  transform: translateX(3px);
}
.dc-tier.active {
  border-color: #5865f2;
  background: rgba(88, 101, 242, 0.12);
  box-shadow: 0 0 20px -8px #5865f2;
}
.dc-tier-eur {
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  min-width: 62px;
}
.dc-tier-arrow {
  color: #aeb6ff;
  font-size: 0.7rem;
}
.dc-tier-usd {
  font-weight: 800;
  color: var(--neon);
}
.dc-tier-save {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(57, 217, 138, 0.14);
  border: 1px solid rgba(57, 217, 138, 0.45);
  color: var(--ok);
  font-size: 0.68rem;
  font-weight: 800;
}
.dc-result {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.45);
  animation: tkIn 0.3s ease both;
}
.dc-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 3px 0;
}
.dc-result-row b {
  color: var(--text);
}
.dc-yours b {
  font-size: 1.25rem;
  color: var(--neon);
}
.dc-save {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--ok);
}
.dc-save i {
  margin-right: 5px;
}
.dc-save b {
  color: var(--ok);
}
.dc-warn {
  background: rgba(88, 101, 242, 0.08);
  border-color: rgba(88, 101, 242, 0.45);
  color: #c9cfff;
  font-weight: 500;
}
.dc-warn i {
  color: #aeb6ff;
}
.dc-big {
  display: grid;
  gap: 2px;
  margin: 16px 0 4px;
}
.dc-big-n {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #5865f2, #aeb6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dc-big-t {
  font-size: 0.76rem;
  color: var(--muted);
}
.dc-note {
  margin: 0 0 14px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.dc-note i {
  color: #aeb6ff;
  margin-right: 4px;
}
@media (max-width: 480px) {
  .dc-tier {
    flex-wrap: wrap;
    gap: 8px;
  }
  .dc-tier-save {
    margin-left: 0;
  }
}

/* ---- Decoraciones: sin calculadora, precio por ticket ---- */
.dc-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dc-feats span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.32);
  font-size: 0.8rem;
  font-weight: 600;
}
.dc-feats i {
  color: #aeb6ff;
}
.dc-price-box {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.45);
  text-align: center;
}
.dc-price-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.dc-price-value {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(120deg, #5865f2, #aeb6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dc-price-sub {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .dc-feats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TARJETA CONFIGURABLE (doble ancho, dentro de la cuadrícula)
   ========================================================= */
.product-card.cfg-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: stretch;
  border-color: rgba(136, 101, 247, 0.4);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(88, 101, 242, 0.12), transparent 60%),
    var(--panel);
}
.product-card.cfg-wide:hover {
  border-color: #a970ff;
  box-shadow: 0 16px 36px -18px rgba(136, 101, 247, 0.75);
}
.product-card.cfg-wide .pc-media {
  height: 100%;
  min-height: 168px;
}
.product-card.cfg-wide .pc-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  text-align: left;
}
.product-card.cfg-wide .pc-name {
  font-size: 1.05rem;
}
.pc-sub {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.product-card.cfg-wide .pc-cta {
  margin-top: 6px;
  align-self: flex-start;
  padding: 11px 20px;
  background: linear-gradient(120deg, #5865f2, #a970ff);
  color: #fff;
  box-shadow: 0 0 20px -8px #a970ff;
}
.product-card.cfg-wide .pc-cta i {
  margin-right: 6px;
}

/* en pantallas estrechas vuelve a ocupar una sola columna, apilada */
@media (max-width: 620px) {
  .product-card.cfg-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .product-card.cfg-wide .pc-media {
    min-height: 150px;
  }
  .product-card.cfg-wide .pc-body {
    text-align: center;
  }
  .product-card.cfg-wide .pc-cta {
    align-self: stretch;
  }
}

/* =========================================================
   TARJETA PERSONALIZABLE v2 — destacada, animada y móvil
   ========================================================= */

/* etiqueta "Más pedido" del destacado */
@keyframes cfgTopPulse {
  0%, 100% { box-shadow: 0 0 14px -5px #ff8a3d; }
  50%      { box-shadow: 0 0 22px -3px #ff8a3d; }
}
.cfg-top {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff8a3d, #ffd166);
  color: #2a1400;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: cfgTopPulse 2.4s ease-in-out infinite;
}

/* el destacado brilla un poco más */
.product-card.cfg-star {
  border-color: rgba(169, 112, 255, 0.65);
  box-shadow: 0 0 30px -20px #a970ff;
}

/* barrido de luz que recorre la tarjeta */
@keyframes cfgSheen {
  0%   { transform: translateX(-120%) rotate(8deg); opacity: 0; }
  12%  { opacity: 0.5; }
  35%  { transform: translateX(220%) rotate(8deg); opacity: 0; }
  100% { transform: translateX(220%) rotate(8deg); opacity: 0; }
}
.product-card.cfg-wide::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 42%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );
  animation: cfgSheen 6s ease-in-out infinite;
}
.product-card.cfg-star::after {
  animation-duration: 4.5s;
}

/* imagen con vida propia */
.product-card.cfg-wide .pc-media img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card.cfg-wide:hover .pc-media img {
  transform: scale(1.07);
}

/* botón: degradado animado + flecha que avanza */
@keyframes cfgBtnFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.product-card.cfg-wide .pc-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #5865f2, #a970ff, #5865f2);
  background-size: 200% 100%;
  animation: cfgBtnFlow 5s linear infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card.cfg-wide:hover .pc-cta {
  transform: translateY(-2px);
  box-shadow: 0 0 26px -6px #a970ff;
}
.product-card.cfg-wide .pc-cta i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card.cfg-wide:hover .pc-cta i {
  transform: rotate(-12deg) scale(1.12);
}

/* respuesta al toque (móvil) en TODAS las tarjetas */
.product-card.available:active {
  transform: scale(0.985);
}
.product-card.cfg-wide:active .pc-cta {
  transform: scale(0.97);
}

/* badge que entra con pop */
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
.pc-badge {
  animation: badgeIn 0.4s 0.15s ease backwards;
}

/* ---------- MÓVIL: tarjeta personalizable a lo grande ---------- */
@media (max-width: 620px) {
  .product-card.cfg-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
    border-width: 1px;
  }
  .product-card.cfg-wide .pc-media {
    height: 150px;
    min-height: 0;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
  .product-card.cfg-wide .pc-body {
    text-align: left;
    padding: 16px 16px 18px;
    gap: 6px;
  }
  .product-card.cfg-wide .pc-name {
    font-size: 1rem;
    line-height: 1.3;
  }
  .product-card.cfg-wide .pc-sub {
    font-size: 0.76rem;
  }
  .product-card.cfg-wide .pc-cta {
    align-self: stretch;
    padding: 13px 18px;
    font-size: 0.82rem;
  }
  .cfg-top {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.6rem;
  }
  /* el sheen molesta menos en pantallas chicas */
  .product-card.cfg-wide::after {
    width: 60%;
    animation-duration: 7s;
  }
}

/* ---------- accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  .cfg-top,
  .product-card.cfg-wide::after,
  .product-card.cfg-wide .pc-cta,
  .pc-badge {
    animation: none !important;
  }
  .product-card.cfg-wide .pc-media img,
  .product-card.cfg-wide .pc-cta i {
    transition: none;
  }
}

/* =========================================================
   IMÁGENES DE MARCA: banners, logos y marcas de agua
   ========================================================= */

/* ---- Banner superior de página (Robux / Fortnite) ---- */
@keyframes pgBannerIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.pg-banner {
  position: relative;
  max-width: 980px;
  margin: 0 auto 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  animation: pgBannerIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pg-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.1);
  transform: scale(1.06);
  transition: transform 0.9s ease, opacity 0.5s ease;
}
.pg-banner:hover .pg-banner-bg {
  transform: scale(1.12);
  opacity: 0.42;
}
.pg-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 13, 17, 0.94) 0%,
    rgba(10, 13, 17, 0.7) 45%,
    rgba(10, 13, 17, 0.35) 100%
  );
}
.pg-banner-in {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}
@keyframes pgLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-7px) rotate(-3deg); }
}
.pg-banner-logo {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
  animation: pgLogoFloat 4s ease-in-out infinite;
}
.pg-banner-txt {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.pg-banner-txt b {
  font-size: 1.02rem;
}
.pg-banner-txt span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.pg-banner-rbx {
  border-color: rgba(242, 185, 12, 0.4);
  box-shadow: 0 18px 40px -26px rgba(242, 185, 12, 0.6);
}
.pg-banner-fn {
  border-color: rgba(0, 180, 255, 0.4);
  box-shadow: 0 18px 40px -26px rgba(0, 180, 255, 0.6);
}

/* ---- Marca de agua con imagen (reemplaza el icono) ---- */
@keyframes wmFloat {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50%      { transform: rotate(-10deg) translateY(-10px); }
}
.boost-wm-img {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 132px;
  height: 132px;
  object-fit: contain;
  opacity: 0.12;
  pointer-events: none;
  animation: wmFloat 6s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.boost-summary:hover .boost-wm-img,
.fn2-ticket:hover .boost-wm-img {
  opacity: 0.2;
}
/* solo recorta la marca de agua: NO tocar position (el ticket es sticky) */
.fn2-ticket {
  overflow: hidden;
}

/* ---- Logos de plataforma (Followers) ---- */
.boost-plat-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.boost-plat:hover .boost-plat-logo {
  transform: scale(1.18) rotate(-6deg);
}
.boost-plat.active .boost-plat-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--pc));
}
.boost-svc-logo {
  width: 17px;
  height: 17px;
  object-fit: contain;
  vertical-align: -3px;
  margin-right: 6px;
}

/* ---- Logo de Robux junto al número ---- */
@keyframes rbxSpin {
  0%, 88%, 100% { transform: rotateY(0deg); }
  94%           { transform: rotateY(180deg); }
}
.rbx-logo-big {
  width: 36px;
  height: 36px;
  object-fit: contain;
  vertical-align: -3px;
  margin-right: 10px;
  filter: drop-shadow(0 0 10px rgba(242, 185, 12, 0.55));
  animation: rbxSpin 7s ease-in-out infinite;
}

/* ---- Icono V-Bucks (Fortnite) ---- */
@keyframes vbPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(0, 180, 255, 0.5)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(0, 180, 255, 0.9)); }
}
.fn2-vb-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  animation: vbPulse 2.6s ease-in-out infinite;
}
/* con el icono al lado, el número se centra en vez de alinearse por su base */
.fn2-vb {
  align-items: center;
}

/* ---- Tarjeta destacada del catálogo ("Más pedido") ---- */
/* ---- Animaciones generales de los configuradores ---- */
@keyframes cfgIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.boost-config,
.boost-summary,
.fn2-card,
.fn2-ticket,
.boost-platforms {
  animation: cfgIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.boost-platforms { animation-delay: 0.05s; }
.boost-config,
.fn2-main > .fn2-card:nth-child(1) { animation-delay: 0.1s; }
.fn2-main > .fn2-card:nth-child(2) { animation-delay: 0.16s; }
.fn2-main > .fn2-card:nth-child(3) { animation-delay: 0.22s; }
.fn2-main > .fn2-card:nth-child(4) { animation-delay: 0.28s; }
.boost-summary,
.fn2-ticket { animation-delay: 0.18s; }

/* feedback al tocar (importante en celular, donde no hay :hover) */
.boost-plat:active,
.boost-svc:active,
.boost-preset:active,
.fn2-pack:active,
.fn2-acc:active,
.fn2-chip:active,
.dc-tier:active,
.sb-lvl:active,
.product-card:active {
  transform: scale(0.97);
}

/* =========================================================
   ADAPTACIÓN A CELULAR
   ========================================================= */
@media (max-width: 720px) {
  .pg-banner {
    margin-bottom: 16px;
    border-radius: 14px;
  }
  .pg-banner-in {
    padding: 14px 16px;
    gap: 12px;
  }
  .pg-banner-logo {
    width: 50px;
    height: 50px;
  }
  .pg-banner-txt b {
    font-size: 0.9rem;
  }
  .pg-banner-txt span {
    font-size: 0.75rem;
  }
  .boost-wm-img {
    width: 96px;
    height: 96px;
    opacity: 0.1;
  }
  .rbx-logo-big {
    width: 28px;
    height: 28px;
    margin-right: 7px;
  }
  .fn2-vb-ico {
    width: 28px;
    height: 28px;
  }
  .boost-plat-logo {
    width: 18px;
    height: 18px;
  }
  /* las plataformas se acomodan en filas, todas visibles */
  .boost-platforms {
    gap: 6px;
  }
  .boost-plat {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pg-banner,
  .pg-banner-logo,
  .boost-wm-img,
  .rbx-logo-big,
  .fn2-vb-ico,
  .product-card.cfg-star,
  .boost-config,
  .boost-summary,
  .fn2-card,
  .fn2-ticket,
  .boost-platforms {
    animation: none !important;
  }
}

/* Los logos de marca sobre fondo oscuro necesitan su chip claro para leerse
   (TikTok es negro sobre transparente y desaparecería) */
.boost-svc-logo {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.boost-plat-logo {
  padding: 2px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-sizing: content-box;
}
.boost-plat.active .boost-plat-logo {
  background: #fff;
}

/* En la tarjeta ancha, "Más pedido" baja a la esquina inferior de la imagen
   para no solaparse con el badge "Personalizable" (que va arriba) */
.product-card.cfg-wide .cfg-top {
  top: auto;
  right: auto;
  left: 10px;
  bottom: 10px;
}
/* un poco más de ancho para que la imagen se recorte menos */
.product-card.cfg-wide {
  grid-template-columns: 210px 1fr;
}
@media (max-width: 620px) {
  .product-card.cfg-wide {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ICONO AL COSTADO DE LA CANTIDAD ("Vas a recibir")
   El reset del sitio pone display:block a las imágenes, así que
   la fila se arma con flex para que el icono quede AL LADO.
   ========================================================= */
.boost-receive-n {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.recv-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}
/* versión con icono de Font Awesome dentro de un círculo */
.recv-ico-fa {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pc, var(--neon)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc, var(--neon)) 45%, transparent);
  color: var(--pc, var(--neon));
  font-size: 1.15rem;
}
.recv-ico-fa .mb-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
}
/* el logo de Robux ya no necesita margen: lo pone el gap del flex */
.rbx-logo-big {
  width: 46px;
  height: 46px;
  margin-right: 0;
  vertical-align: baseline;
}

/* ---- Logos de plataforma más grandes y legibles (Followers) ---- */
.boost-plat {
  padding: 10px 16px;
  gap: 10px;
}
.boost-plat-logo {
  width: 26px;
  height: 26px;
  padding: 3px;
  border-radius: 7px;
}
/* el logo pequeño del texto de servicio ya no se usa (va el grande arriba) */
.boost-svc-logo {
  display: none;
}

@media (max-width: 720px) {
  .recv-ico,
  .rbx-logo-big {
    width: 38px;
    height: 38px;
  }
  .recv-ico-fa {
    font-size: 1rem;
  }
  .boost-plat {
    padding: 8px 13px;
    gap: 8px;
  }
  .boost-plat-logo {
    width: 23px;
    height: 23px;
  }
}

/* ---- Insignia oficial del Nivel 3 (Server Boosts) ---- */
.sb-lvl-img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 115, 250, 0.7));
}

/* ---- Miembros: la estadística cambia de color según el tipo ---- */
[data-page="miembros"] .boost-bars span {
  background: linear-gradient(
    180deg,
    var(--stat, var(--pc)),
    color-mix(in srgb, var(--stat, var(--pc)) 45%, #0b1220)
  );
  box-shadow: 0 0 14px -4px var(--stat, var(--pc));
}
[data-page="miembros"] .boost-receive {
  background:
    radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--stat) 16%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border-color: color-mix(in srgb, var(--stat) 42%, transparent);
  transition: border-color 0.35s ease, background 0.35s ease;
}
[data-page="miembros"] .boost-receive-svc {
  color: var(--stat);
}
[data-page="miembros"] .recv-ico-fa {
  background: color-mix(in srgb, var(--stat) 18%, transparent);
  border-color: color-mix(in srgb, var(--stat) 50%, transparent);
  color: var(--stat);
}

/* =========================================================
   PROOFS — pruebas de entregas
   ========================================================= */

/* ---- Pasarela del inicio (desfila sola) ---- */
.pf-strip {
  position: relative;
  overflow: hidden;
  padding: 4px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@keyframes pfScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pf-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: pfScroll 48s linear infinite;
}
.pf-strip:hover .pf-track {
  animation-play-state: paused;
}
.pf-card {
  position: relative;
  width: 230px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pf-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 14px 32px -18px rgba(238, 241, 244, 0.7);
}
.pf-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}
.pf-card figcaption {
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.pf-card figcaption i,
.pf-item figcaption i {
  color: var(--ok);
  margin-right: 5px;
}

/* ---- Galería (Nosotros) ---- */
.pf-filters {
  justify-content: center;
  margin-bottom: 18px;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
@keyframes pfIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.pf-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: zoom-in;
  animation: pfIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pf-item:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 16px 34px -18px rgba(238, 241, 244, 0.65);
}
.pf-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pf-item:hover img {
  transform: scale(1.06);
}
.pf-item figcaption {
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}

/* ---- Visor ampliado ---- */
@keyframes pfViewIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pf-view {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background: rgba(6, 9, 13, 0.94);
  backdrop-filter: blur(6px);
  animation: pfViewIn 0.25s ease both;
}
.pf-view img {
  max-width: min(1000px, 92vw);
  max-height: 82vh;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -30px #000;
}
.pf-view-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pf-view-close:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.pf-view-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pf-view-nav:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(238, 241, 244, 0.12);
}
.pf-view-nav.prev { left: 16px; }
.pf-view-nav.next { right: 16px; }
.pf-view-cap {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

/* ---- Panel admin: cuadrícula de proofs ---- */
.adm-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.adm-proof {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.adm-proof img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.adm-proof figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.adm-proof-del {
  background: none;
  border: none;
  color: #ffb3bb;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.adm-proof-del:hover {
  color: var(--danger);
  background: rgba(255, 77, 94, 0.12);
}
.adm-proof-del.adm-confirm {
  color: #fff;
  background: var(--danger);
}
select.acc-input {
  cursor: pointer;
}

@media (max-width: 720px) {
  .pf-card {
    width: 172px;
  }
  .pf-card img {
    height: 112px;
  }
  .pf-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .pf-item img {
    height: 130px;
  }
  .pf-view {
    padding: 24px 10px;
  }
  .pf-view-nav {
    width: 40px;
    height: 40px;
  }
  .pf-view-nav.prev { left: 8px; }
  .pf-view-nav.next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .pf-track { animation: none; }
  .pf-item { animation: none; }
}

/* =========================================================
   PULIDO GENERAL: confianza, formalidad y animación
   ========================================================= */

/* ---- Barra de progreso de lectura ---- */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
}
.scroll-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--neon), var(--neon-2), #a970ff);
  box-shadow: 0 0 12px -2px var(--neon);
  transition: width 0.1s linear;
}

/* ---- Header: se compacta al bajar ---- */
.site-header {
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease,
    background-color 0.3s ease;
}
body.scrolled .site-header {
  background: rgba(10, 13, 18, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}
body.scrolled .header-row {
  height: 56px;
  transition: height 0.3s ease;
}

/* ---- Botón volver arriba ---- */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9990;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(238, 241, 244, 0.35);
  background: rgba(11, 18, 30, 0.9);
  backdrop-filter: blur(8px);
  color: var(--neon);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}
.to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  border-color: var(--neon);
  box-shadow: 0 0 22px -6px var(--neon);
  transform: translateY(-3px);
}

/* ---- Franja de sellos de confianza (portada) ---- */
.trust-bar {
  margin: 26px auto 0;
  max-width: var(--maxw);
  padding: 0 20px;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(238, 241, 244, 0.05), transparent 70%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
}
.trust-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  padding: 6px 8px;
  border-radius: 12px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.trust-item i {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(238, 241, 244, 0.1);
  border: 1px solid rgba(238, 241, 244, 0.3);
  color: var(--neon);
  font-size: 0.9rem;
}
.trust-item b {
  font-size: 0.82rem;
  line-height: 1.3;
}
.trust-item small {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

/* ---- Estadísticas con contador (Nosotros) ---- */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.stat {
  display: grid;
  gap: 2px;
}
.stat b {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--neon), var(--neon-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---- Brillo que recorre los botones principales ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before {
  left: 130%;
}

/* ---- Tarjetas de producto: acabado más fino ---- */
.product-card {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.product-card.available:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -24px rgba(238, 241, 244, 0.55);
}

/* ---- Skeletons mientras carga el catálogo ---- */
@keyframes skPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.85; }
}
.sk-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  animation: skPulse 1.4s ease-in-out infinite;
}
.sk-img {
  height: 168px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
}
.sk-body {
  padding: 14px;
  display: grid;
  gap: 9px;
}
.sk-line {
  height: 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}
.sk-line.short { width: 55%; }
.sk-btn {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

/* ---- Campos de formulario con foco más claro ---- */
.acc-input:focus,
.boost-link:focus-within,
.fn2-field input:focus {
  outline: none;
}

/* ---- Footer: sellos de seguridad ---- */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 18px 20px;
  margin: 0 auto;
  max-width: var(--maxw);
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
}
.footer-trust i {
  color: var(--ok);
  margin-right: 6px;
}
.footer-bottom a {
  color: var(--neon);
}
.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .trust-inner {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .trust-item small {
    font-size: 0.7rem;
  }
  .stat-row {
    gap: 18px;
  }
  .stat b {
    font-size: 1.5rem;
  }
  .to-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
  }
  .footer-trust {
    gap: 8px 16px;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-bar span,
  .to-top,
  .trust-item,
  .product-card,
  .sk-card {
    transition: none;
    animation: none;
  }
  .btn-primary::before {
    display: none;
  }
}

/* =========================================================
   PROOFS: mostrar las capturas COMPLETAS (sin recorte)
   Las pruebas de entrega vienen en tamaños muy distintos, así
   que se respeta su proporción en vez de recortarlas.
   ========================================================= */

/* --- Galería (Nosotros): columnas tipo mosaico, altura libre --- */
/* 3 columnas: las capturas se ven más grandes y se lee lo que prueban */
.pf-grid {
  display: block;
  columns: 3 260px;
  column-gap: 14px;
}
.pf-item {
  break-inside: avoid;
  margin: 0 0 14px;
  display: inline-block;
  width: 100%;
}
.pf-item img {
  width: 100%;
  height: auto;          /* imagen completa */
  object-fit: contain;
  background: #0a0d11;
}
.pf-item:hover img {
  transform: none;       /* sin zoom al pasar el mouse */
}

/* --- Pasarela (portada): altura fija pero sin recortar --- */
.pf-card img {
  height: 150px;
  object-fit: contain;
  background: #0a0d11;
  padding: 6px;
}

/* --- Panel admin --- */
.adm-proof img {
  height: 130px;
  object-fit: contain;
  background: #0a0d11;
  padding: 5px;
}

@media (max-width: 720px) {
  .pf-grid {
    columns: 2 150px;
    column-gap: 10px;
  }
  .pf-item {
    margin-bottom: 10px;
  }
  .pf-card img {
    height: 120px;
  }
}

/* =========================================================
   HERO v2 — texto a la izquierda, mosaico de productos reales
   ========================================================= */
.hero2 .hero-inner {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 30px;
}

/* --- Chip superior con el dato real --- */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  animation: heroUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-chip-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* --- Titular y texto --- */
.hero2 .hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  animation: heroUp 0.6s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero2 .hero-sub {
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 26px;
  animation: heroUp 0.6s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero2 .hero-cta {
  animation: heroUp 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero2 .hero-cta .btn {
  padding: 14px 26px;
}

/* --- Datos de confianza bajo los botones --- */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  animation: heroUp 0.6s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-facts i {
  color: var(--neon);
  margin-right: 6px;
}
.hero-facts span:first-child i {
  color: #ffd166;
}

/* --- Mosaico de productos en perspectiva --- */
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 520px;
  overflow: hidden;
  perspective: 1200px;
  transform: rotate(-8deg) scale(1.06);
  -webkit-mask-image: radial-gradient(120% 85% at 50% 50%, #000 55%, transparent 92%);
  mask-image: radial-gradient(120% 85% at 50% 50%, #000 55%, transparent 92%);
  animation: heroUp 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hm-col {
  overflow: hidden;
}
@keyframes hmUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes hmDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
.hm-run {
  display: grid;
  gap: 14px;
}
.hm-col-1 .hm-run { animation: hmUp 46s linear infinite; }
.hm-col-2 .hm-run { animation: hmDown 54s linear infinite; }
.hm-col-3 .hm-run { animation: hmUp 62s linear infinite; }
.hero-mosaic:hover .hm-run {
  animation-play-state: paused;
}

.hm-card {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.9);
}
.hm-media {
  height: 108px;
  background: #0a0d11;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hm-info {
  display: grid;
  gap: 2px;
  padding: 9px 11px 11px;
}
.hm-name {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hm-price {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--neon);
}

/* --- Adaptación a pantallas medianas y celular --- */
@media (max-width: 980px) {
  .hero2 .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-mosaic {
    height: 300px;
    transform: rotate(-4deg) scale(1.04);
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .hero2 .hero-title {
    font-size: clamp(1.75rem, 8.4vw, 2.4rem);
  }
  .hero2 .hero-sub {
    font-size: 0.9rem;
  }
  .hero-chip {
    font-size: 0.72rem;
    margin-bottom: 16px;
  }
  .hero-facts {
    gap: 8px 14px;
    font-size: 0.74rem;
  }
  .hero-mosaic {
    height: 250px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transform: rotate(-4deg) scale(1.08);
  }
  .hm-run { gap: 10px; }
  .hm-media { height: 84px; }
  .hm-name { font-size: 0.66rem; }
  .hm-price { font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip,
  .hero2 .hero-title,
  .hero2 .hero-sub,
  .hero2 .hero-cta,
  .hero-facts,
  .hero-mosaic,
  .hm-run {
    animation: none !important;
  }
}

/* Más profundidad en el mosaico del hero (efecto 3D como en las tiendas grandes) */
.hero-mosaic {
  transform: perspective(1400px) rotateY(-14deg) rotate(-6deg) scale(1.12);
  transform-origin: 60% 50%;
}
@media (max-width: 980px) {
  .hero-mosaic {
    transform: perspective(1200px) rotateY(-6deg) rotate(-3deg) scale(1.06);
  }
}
@media (max-width: 640px) {
  .hero-mosaic {
    transform: perspective(1000px) rotateY(-5deg) rotate(-3deg) scale(1.1);
  }
}

/* =========================================================
   SECCIONES DESTACADAS (Followers y Robux en la portada)
   ========================================================= */
.spot {
  --sc: var(--neon); /* color de acento de la sección */
}
.spot-social { --sc: #ff5db1; }
.spot-robux  { --sc: #f2b90c; }

.spot-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sc) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 45%, transparent);
  color: var(--sc);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.spot .section-title .grad {
  background: linear-gradient(120deg, var(--sc), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Panel contenedor --- */
.spot-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(90% 120% at 0% 0%, color-mix(in srgb, var(--sc) 10%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}
.spot-flip .spot-card { order: 2; }

/* --- Tarjeta visual --- */
.spot-card {
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--sc) 12%, transparent), transparent 65%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid color-mix(in srgb, var(--sc) 30%, transparent);
  box-shadow: 0 22px 50px -34px color-mix(in srgb, var(--sc) 80%, transparent);
}
.spot-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.spot-logos {
  display: flex;
}
.spot-logos img {
  width: 38px;
  height: 38px;
  padding: 5px;
  border-radius: 11px;
  background: #fff;
  border: 2px solid #10151c;
  object-fit: contain;
  margin-left: -10px;
  transition: transform 0.25s ease;
}
.spot-logos img:first-child { margin-left: 0; }
.spot-logos img:hover {
  transform: translateY(-4px) scale(1.08);
  z-index: 2;
}
.spot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 40%, transparent);
  color: var(--sc);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.spot-card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.spot-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 2px;
}

/* --- Barras del gráfico --- */
@keyframes spotBar {
  from { height: 12%; opacity: 0.35; }
  to   { height: var(--h); opacity: 1; }
}
.spot-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 118px;
  margin-top: 22px;
}
.spot-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--sc), color-mix(in srgb, var(--sc) 35%, #10151c));
  box-shadow: 0 0 18px -6px var(--sc);
  animation: spotBar 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.spot-bars span:nth-child(1) { animation-delay: 0.05s; }
.spot-bars span:nth-child(2) { animation-delay: 0.12s; }
.spot-bars span:nth-child(3) { animation-delay: 0.19s; }
.spot-bars span:nth-child(4) { animation-delay: 0.26s; }
.spot-bars span:nth-child(5) { animation-delay: 0.33s; }
.spot-bars span:nth-child(6) { animation-delay: 0.4s; }
.spot-bars span:nth-child(7) { animation-delay: 0.47s; }
.spot-bars span:nth-child(8) { animation-delay: 0.54s; }

/* --- Lado de ventajas --- */
.spot-side {
  display: grid;
  gap: 20px;
  align-content: center;
}
.spot-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.spot-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.spot-feat > i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--sc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 32%, transparent);
  color: var(--sc);
  font-size: 0.92rem;
}
.spot-feat b {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.spot-feat span {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}
.spot-cta {
  justify-self: start;
  padding: 14px 26px;
  background: linear-gradient(120deg, var(--sc), color-mix(in srgb, var(--sc) 55%, #fff));
  color: #10060f;
  font-weight: 800;
  box-shadow: 0 0 26px -8px var(--sc);
}
.spot-cta:hover {
  box-shadow: 0 0 34px -6px var(--sc);
}

/* --- Robux: pasos y tarjeta --- */
.rbx-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.rbx-flow li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rbx-step {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sc) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 45%, transparent);
  color: var(--sc);
  font-size: 0.8rem;
  font-weight: 800;
}
.rbx-flow b {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.rbx-flow span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.rbx-card {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 4px;
}
@keyframes rbxFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.rbx-card-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 20px rgba(242, 185, 12, 0.45));
  animation: rbxFloat 4s ease-in-out infinite;
}
.rbx-card-n {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--sc);
}
.rbx-card-n small {
  font-size: 1.1rem;
  opacity: 0.75;
}
.rbx-card-note {
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 35%, transparent);
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8dfc4;
}
.rbx-card-note i { color: var(--sc); margin-right: 6px; }
.rbx-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 12px;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
}
.rbx-card-tags i { color: var(--ok); margin-right: 5px; }

@media (max-width: 900px) {
  .spot-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 20px;
  }
  .spot-flip .spot-card { order: 0; }
  .spot-feats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .spot-cta {
    justify-self: stretch;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .spot-logos img {
    width: 32px;
    height: 32px;
    margin-left: -8px;
  }
  .spot-card-title { font-size: 1.25rem; }
  .spot-bars { height: 92px; gap: 6px; }
  .rbx-card-n { font-size: 2rem; }
  .rbx-card-logo { width: 60px; height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .spot-bars span,
  .rbx-card-logo {
    animation: none;
    height: var(--h);
  }
}

/* =========================================================
   ACCESOS RÁPIDOS DE CATEGORÍA (packs más pedidos)
   ========================================================= */
.qk-wrap {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(0, 180, 255, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}
.qk-head h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.qk-head h3 i {
  color: var(--neon);
  margin-right: 7px;
}
.qk-head p {
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: var(--muted);
}
.qk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.qk-card {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.qk-card:hover {
  transform: translateY(-4px);
  border-color: #00b4ff;
  box-shadow: 0 16px 34px -20px rgba(0, 180, 255, 0.8);
}
.qk-n {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #00b4ff, #7b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.qk-u {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.qk-t {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #c7d3de;
}
.qk-p {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}
.qk-go {
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #6fd0ff;
}
.qk-go i {
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.qk-card:hover .qk-go i {
  transform: translateX(3px);
}
.qk-note {
  margin: 16px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.qk-note i {
  color: var(--neon);
  margin-right: 5px;
}
@media (max-width: 560px) {
  .qk-wrap { padding: 16px; }
  .qk-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .qk-card { padding: 13px; }
  .qk-n { font-size: 1.3rem; }
}

/* =========================================================
   MOSAICO DEL HERO: tarjetas clicables con efecto
   ========================================================= */
.hm-card {
  display: block;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.hm-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--neon);
  box-shadow: 0 20px 44px -22px rgba(238, 241, 244, 0.85);
  z-index: 3;
}
.hm-media {
  position: relative;
}
.hm-card img {
  transition: transform 0.4s ease, filter 0.3s ease;
}
.hm-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}
/* etiqueta "Ver producto" que aparece sobre la imagen */
.hm-go {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--neon);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.hm-card:hover .hm-go {
  opacity: 1;
  transform: none;
}
.hm-card:hover .hm-price {
  color: #fff;
}
/* al tocar en celular */
.hm-card:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .hm-card,
  .hm-card img,
  .hm-go {
    transition: none;
  }
}

/* =========================================================
   MICRO-INTERACCIONES: movimiento sutil al pasar el mouse
   (nada invasivo: desplazamientos de 2-4px y 0,25 s)
   ========================================================= */

/* --- Paneles destacados (Followers / Robux) --- */
.spot-panel {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.spot-panel:hover {
  border-color: color-mix(in srgb, var(--sc) 35%, transparent);
  box-shadow: 0 24px 60px -40px color-mix(in srgb, var(--sc) 90%, transparent);
}
.spot-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.spot-panel:hover .spot-card {
  transform: translateY(-4px);
}

/* --- Barras: cada una reacciona por separado --- */
.spot-bars span {
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.25s ease;
  transform-origin: bottom;
  cursor: default;
}
.spot-bars:hover span {
  filter: saturate(0.75) brightness(0.85);
}
.spot-bars span:hover {
  transform: scaleY(1.09);
  filter: saturate(1.2) brightness(1.15);
}

/* --- Ventajas: el icono se inclina un poco --- */
.spot-feat {
  transition: transform 0.25s ease;
}
.spot-feat:hover {
  transform: translateX(3px);
}
.spot-feat > i {
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease;
}
.spot-feat:hover > i {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 18px -6px var(--sc);
}
.spot-feat:hover b {
  color: var(--sc);
}

/* --- Logos de plataforma: se abren en abanico --- */
.spot-logos:hover img {
  margin-left: -4px;
}
.spot-logos img {
  transition: transform 0.25s ease, margin 0.3s ease, box-shadow 0.25s ease;
}
.spot-logos:hover img:first-child {
  margin-left: 0;
}
.spot-logos img:hover {
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.8);
}

/* --- Pasos de Robux --- */
.rbx-flow li {
  transition: transform 0.25s ease;
}
.rbx-flow li:hover {
  transform: translateX(4px);
}
.rbx-step {
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease,
    background-color 0.25s ease;
}
.rbx-flow li:hover .rbx-step {
  transform: scale(1.12);
  background: color-mix(in srgb, var(--sc) 26%, transparent);
  box-shadow: 0 0 16px -5px var(--sc);
}
.rbx-flow li:hover b {
  color: var(--sc);
}

/* --- Tarjeta de Robux --- */
.rbx-card-n,
.rbx-card-note {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.rbx-card:hover .rbx-card-n {
  transform: scale(1.04);
}
.rbx-card:hover .rbx-card-note {
  box-shadow: 0 0 20px -8px var(--sc);
}
.rbx-card:hover .rbx-card-logo {
  animation-play-state: paused;
  transform: scale(1.06) rotate(-4deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* --- Botones de sección: la flecha avanza --- */
.spot-cta i,
.hero-cta .btn i.fa-arrow-right {
  transition: transform 0.25s ease;
}
.spot-cta:hover i,
.hero-cta .btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* --- Estadísticas de los configuradores (Followers, Robux, Miembros) --- */
.boost-bars span {
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.25s ease;
  transform-origin: bottom;
}
.boost-bars:hover span {
  filter: brightness(0.82);
}
.boost-bars span:hover {
  transform: scaleY(1.1);
  filter: brightness(1.2);
}

/* --- Fortnite: packs y tarjetas de paso --- */
.fn2-pack {
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.fn2-pack:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -18px var(--pc);
}
.fn2-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fn2-card:hover {
  border-color: color-mix(in srgb, var(--pc) 35%, transparent);
}
.fn2-acc {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.fn2-acc:hover {
  transform: translateX(3px);
}

/* --- Sellos de confianza y estadísticas de Nosotros --- */
.trust-item i {
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.trust-item:hover i {
  transform: rotate(-8deg) scale(1.08);
}
.stat {
  transition: transform 0.25s ease;
}
.stat:hover {
  transform: translateY(-3px);
}
.stat:hover b {
  filter: brightness(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .spot-card,
  .spot-bars span,
  .spot-feat,
  .spot-feat > i,
  .spot-logos img,
  .rbx-flow li,
  .rbx-step,
  .rbx-card-n,
  .boost-bars span,
  .fn2-pack,
  .fn2-acc,
  .trust-item i,
  .stat {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   AVISO "¿NO VES TU PAÍS?" (checkout y sección de pagos)
   Países con moneda inestable: sin precio fijo, se atiende
   por ticket en Discord.
   ========================================================= */
.pay-help {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(88, 101, 242, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(88, 101, 242, 0.38);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.pay-help:hover {
  border-color: rgba(88, 101, 242, 0.7);
  box-shadow: 0 18px 40px -30px rgba(88, 101, 242, 0.9);
}
.pay-help-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.16);
  border: 1px solid rgba(88, 101, 242, 0.45);
  color: #aeb6ff;
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}
.pay-help:hover .pay-help-ico {
  transform: rotate(-8deg) scale(1.06);
}
.pay-help-body {
  min-width: 0;
}
.pay-help-body > b {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.pay-help-body p {
  margin: 0 0 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #c7d3de;
}
.pay-help-body p b {
  color: #aeb6ff;
}
.pay-help-btn {
  justify-content: center;
}
.pay-help-btn i {
  transition: transform 0.25s ease;
}
.pay-help-btn:hover i {
  transform: scale(1.12);
}

/* variante ancha de la sección "Métodos de pago" */
.pay-help-wide {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 20px 22px;
}
.pay-help-wide .pay-help-btn {
  display: inline-flex;
}

@media (max-width: 560px) {
  .pay-help {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .pay-help-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pay-help,
  .pay-help-ico,
  .pay-help-btn i {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   PANEL — ALTA DE STOCK DE MINECRAFT
   Nombre con prefijo fijo, imágenes que se suman de una en
   una y descripción generada desde la plantilla de siempre.
   ========================================================= */

/* --- Nombre: MC STOCK | VARIANTE --- */
.adm-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.adm-name-pre {
  flex: 0 0 150px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}
.adm-name-sep {
  color: var(--muted);
  font-weight: 800;
  opacity: 0.6;
}
.adm-name-suf {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
}
.adm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}
.adm-chip {
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.adm-chip:hover {
  color: var(--neon);
  border-color: color-mix(in srgb, var(--neon) 55%, transparent);
  transform: translateY(-2px);
}

/* --- Bandeja de imágenes --- */
.adm-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.adm-img {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.adm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adm-img-tag {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--neon);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.adm-img-x {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.adm-img:hover .adm-img-x,
.adm-img:focus-within .adm-img-x {
  opacity: 1;
}
.adm-img-x:hover {
  background: var(--danger);
}
.adm-img-add {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 12px;
  border: 1px dashed color-mix(in srgb, var(--neon) 40%, var(--border));
  background: rgba(238, 241, 244, 0.04);
  color: var(--neon);
  font-size: 1.05rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.adm-img-add span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}
.adm-img-add:hover {
  background: rgba(238, 241, 244, 0.09);
  border-color: var(--neon);
  transform: translateY(-2px);
}
.adm-url-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.adm-url-row .acc-input {
  flex: 1 1 auto;
  min-width: 0;
}
.adm-url-row .adm-btn {
  white-space: nowrap;
}

/* --- Subtítulo de bloque --- */
.adm-sub {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-weight: 800;
  font-size: 0.9rem;
}
.adm-sub i {
  color: var(--neon);
  margin-right: 7px;
}

/* --- Estado de cada fila del almacén --- */
.adm-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.adm-stock-badge.ok {
  background: rgba(57, 217, 138, 0.12);
  border: 1px solid rgba(57, 217, 138, 0.4);
  color: var(--ok);
}
.adm-stock-badge.out {
  background: rgba(255, 77, 94, 0.12);
  border: 1px solid rgba(255, 77, 94, 0.4);
  color: var(--danger);
}
.adm-stock-row.is-out {
  border-color: rgba(255, 77, 94, 0.32);
}
.adm-stock-row.is-out .adm-stock-img {
  filter: grayscale(0.75) brightness(0.75);
}

/* Aviso "ya se vendió" dentro de la fila */
.adm-sold {
  flex: 1 1 100%; /* la fila es flex-wrap: cae en su propia línea */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 77, 94, 0.07);
  border: 1px solid rgba(255, 77, 94, 0.28);
}
.adm-sold > i {
  color: var(--danger);
  font-size: 1rem;
}
.adm-sold p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #c7d3de;
}

/* --- Barra de limpieza de agotadas --- */
.adm-purge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(255, 77, 94, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 94, 0.3);
}
.adm-purge-txt {
  flex: 1 1 260px;
  display: grid;
  gap: 2px;
}
.adm-purge-txt b {
  font-size: 0.95rem;
}
.adm-purge-txt span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .adm-name-row {
    flex-wrap: wrap;
  }
  .adm-name-pre {
    flex: 1 1 100%;
  }
  .adm-name-sep {
    display: none;
  }
  .adm-url-row {
    flex-direction: column;
  }
  .adm-img,
  .adm-img-add {
    width: 84px;
    height: 84px;
  }
  .adm-img-x {
    opacity: 1;
  }
  .adm-purge .adm-btn,
  .adm-sold .adm-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adm-chip,
  .adm-img-add {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   DESCUENTOS — precio tachado, precio nuevo e insignia
   ========================================================= */
.pr-old {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.85em;
  margin-right: 5px;
}
.pr-new {
  color: var(--ok);
  font-weight: 800;
}
.pc-off {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ok);
  color: #04241a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px -8px var(--ok);
}

/* =========================================================
   CHECKOUT — elegir método de pago
   ========================================================= */
.pm-opt {
  display: grid;
  grid-template-columns: 42px 1fr auto 20px;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.pm-opt + .pm-opt {
  margin-top: 9px;
}
.pm-opt:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--neon) 45%, transparent);
}
.pm-opt.active {
  border-color: var(--neon);
  background:
    radial-gradient(90% 160% at 0% 50%, rgba(238, 241, 244, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--neon) 30%, transparent);
}
.pm-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(238, 241, 244, 0.08);
  border: 1px solid rgba(238, 241, 244, 0.22);
  color: var(--neon);
  font-size: 1rem;
}
.pm-txt {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.pm-pais {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}
.pm-medio {
  font-size: 0.76rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pm-monto {
  text-align: right;
  display: grid;
  gap: 1px;
  white-space: nowrap;
}
.pm-monto b {
  font-size: 0.98rem;
  color: var(--neon);
}
.pm-cur {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--muted);
}
.pm-check {
  color: var(--border);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.pm-opt.active .pm-check {
  color: var(--neon);
}

/* Plazo de 24 h para subir el comprobante */
.ord-ttl {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  padding: 10px 13px;
  border-radius: 11px;
  background: rgba(238, 241, 244, 0.06);
  border: 1px solid rgba(238, 241, 244, 0.24);
  font-size: 0.81rem;
  line-height: 1.5;
  color: #c7d3de;
}
.ord-ttl i {
  color: var(--neon);
}
.ord-ttl.urge {
  background: rgba(255, 77, 94, 0.08);
  border-color: rgba(255, 77, 94, 0.34);
}
.ord-ttl.urge i {
  color: var(--danger);
}

/* =========================================================
   PANEL — foto del producto comprado
   ========================================================= */
.adm-shot {
  position: relative;
  flex-shrink: 0;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.adm-shot img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--neon) 35%, transparent);
  display: block;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.adm-shot:hover img {
  transform: scale(1.05);
  border-color: var(--neon);
}
.adm-shot-tag {
  position: absolute;
  left: 6px;
  bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--neon);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Conmutador de tipo de entrega */
.adm-seg {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.adm-seg-b {
  flex: 1 1 auto;
  padding: 10px 14px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.adm-seg-b i {
  margin-right: 7px;
}
.adm-seg-b.active {
  color: var(--brand-ink);
  background: var(--neon);
  border-color: var(--neon);
}
.adm-deliver-mc,
.adm-deliver-free {
  display: grid;
  gap: 10px;
}

/* =========================================================
   PANEL — descuentos por categoría
   ========================================================= */
.adm-off-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.adm-off {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.adm-off.on {
  border-color: color-mix(in srgb, var(--ok) 55%, transparent);
  background:
    radial-gradient(90% 160% at 0% 50%, rgba(57, 217, 138, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.03);
}
.adm-off-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.adm-off.on .adm-off-ico {
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 45%, transparent);
}
.adm-off-name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}
.adm-off-in {
  display: flex;
  align-items: center;
  gap: 6px;
}
.adm-off-in .acc-input {
  width: 74px;
  padding: 9px 10px;
  text-align: center;
  font-weight: 800;
}
.adm-off-in b {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   PANEL — gráficos de evolución
   ========================================================= */
.ch-wrap {
  position: relative;
  margin-bottom: 22px;
}
.ch-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.88rem;
}
.ch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.ch-sub {
  color: var(--muted);
  font-size: 0.74rem;
}
.ch-last {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}
.ch-last b {
  color: var(--text);
}
.ch-svg {
  width: 100%;
  height: 170px;
  display: block;
  overflow: visible;
}
.ch-grid {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}
.ch-ytick,
.ch-xtick {
  fill: var(--muted);
  font-size: 10px;
  font-family: inherit;
}
.ch-cross {
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.ch-hit {
  cursor: crosshair;
}
.ch-tip {
  position: absolute;
  top: 26px;
  transform: translateX(-50%);
  padding: 7px 11px;
  border-radius: 9px;
  background: #10151c;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px -18px #000;
  pointer-events: none;
  white-space: nowrap;
  display: grid;
  gap: 1px;
  text-align: center;
}
.ch-tip b {
  font-size: 0.88rem;
}
.ch-tip span {
  font-size: 0.68rem;
  color: var(--muted);
}
.ch-table {
  margin-top: 6px;
}
.ch-table summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 8px 0;
}
.ch-table summary i {
  margin-right: 7px;
  color: var(--neon);
}
.ch-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-top: 8px;
}
.ch-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 700;
  padding: 7px 8px;
  border-bottom: 1px solid var(--border);
}
.ch-table td {
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 560px) {
  .pm-opt {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding: 11px 12px;
  }
  .pm-check {
    display: none;
  }
  .pm-ico {
    width: 38px;
    height: 38px;
  }
  .adm-shot,
  .adm-shot img {
    width: 86px;
  }
  .adm-shot img {
    height: 86px;
  }
  .ch-svg {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-opt,
  .adm-off,
  .adm-shot img,
  .adm-seg-b {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   FICHA DE PRODUCTO (producto.html)
   Sustituye a la antigua ventana flotante: cada producto
   tiene su propia pantalla, con galería y compra directa.
   ========================================================= */

/* --- entrada escalonada de cada bloque --- */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}
.rv.in {
  opacity: 1;
  transform: none;
}

.pdp-section {
  position: relative;
  padding-top: 26px;
}
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.pdp-back:hover {
  color: var(--neon);
  gap: 12px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* ---------- Galería ---------- */
.pdp-gallery {
  position: relative;
  perspective: 1100px;
}
.pdp-gallery::before {
  /* aura suave detrás de la imagen */
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(
    60% 60% at 50% 45%,
    rgba(238, 241, 244, 0.22),
    transparent 70%
  );
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}
.pdp-stage {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.pdp-stage:hover {
  border-color: color-mix(in srgb, var(--neon) 45%, transparent);
  box-shadow: 0 40px 90px -50px rgba(238, 241, 244, 0.8);
}
@keyframes pdpIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pdp-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: pdpIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition:
    opacity 0.16s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp-stage:hover img {
  transform: scale(1.04);
}
.pdp-stage img.swap {
  opacity: 0;
}
.pdp-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(6, 10, 14, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}
.pdp-count b {
  color: var(--neon);
}
.pdp-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(6, 10, 14, 0.66);
  backdrop-filter: blur(6px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
.pdp-nav.prev {
  left: 12px;
  transform: translateY(-50%) translateX(-6px);
}
.pdp-nav.next {
  right: 12px;
  transform: translateY(-50%) translateX(6px);
}
.pdp-stage:hover .pdp-nav,
.pdp-nav:focus-visible {
  opacity: 1;
  transform: translateY(-50%);
}
.pdp-nav:hover {
  background: var(--neon);
  color: var(--brand-ink);
}

.pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: none;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-thumb:hover {
  transform: translateY(-3px);
}
.pdp-thumb.active {
  border-color: var(--neon);
  box-shadow: 0 0 18px -6px var(--neon);
}

/* ---------- Información ---------- */
.pdp-info {
  display: grid;
  gap: 18px;
  align-content: start;
}
.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pdp-tag.cat {
  color: var(--neon);
  border-color: color-mix(in srgb, var(--neon) 40%, transparent);
  background: rgba(238, 241, 244, 0.09);
}
.pdp-tag.ok,
.pdp-tag.few {
  color: var(--ok);
  border-color: rgba(57, 217, 138, 0.4);
  background: rgba(57, 217, 138, 0.1);
}
.pdp-tag.few .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: pdpPulse 1.6s ease-in-out infinite;
}
@keyframes pdpPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}
.pdp-tag.out {
  color: var(--danger);
  border-color: rgba(255, 77, 94, 0.4);
  background: rgba(255, 77, 94, 0.1);
}
.pdp-tag.off {
  color: #04241a;
  background: var(--ok);
  border-color: var(--ok);
}
.pdp-tag.tk {
  color: #aeb6ff;
  border-color: rgba(88, 101, 242, 0.45);
  background: rgba(88, 101, 242, 0.12);
}

.pdp-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp-price b {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--neon), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pdp-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 600;
}
.pdp-save {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(57, 217, 138, 0.14);
  border: 1px solid rgba(57, 217, 138, 0.4);
  color: var(--ok);
  font-size: 0.74rem;
  font-weight: 800;
}
.pdp-price.tk {
  font-size: 1.2rem;
  font-weight: 800;
  color: #aeb6ff;
}

/* --- Qué incluye --- */
.pdp-box {
  padding: 20px 22px;
  border-radius: 16px;
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(238, 241, 244, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.pdp-box-h {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 13px;
}
.pdp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.pdp-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #d3dde6;
  transition: transform 0.2s ease;
}
.pdp-list li:hover {
  transform: translateX(3px);
}
.pdp-list i {
  flex-shrink: 0;
  margin-top: 3px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 217, 138, 0.15);
  color: var(--ok);
  font-size: 0.62rem;
}

/* --- Botones --- */
.pdp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-buy {
  position: relative;
  overflow: hidden;
  flex: 1 1 240px;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 800;
}
/* destello que recorre el botón al pasar el ratón */
.pdp-buy::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.pdp-buy:hover::after {
  left: 140%;
}
.pdp-buy.is-off {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 77, 94, 0.35);
  color: var(--muted);
  box-shadow: none;
}
.pdp-buy.is-off i {
  color: var(--danger);
}
.pdp-buy.is-off::after {
  display: none;
}
.pdp-alt {
  flex: 0 1 auto;
  justify-content: center;
  padding: 16px 22px;
}

/* --- Sellos de confianza --- */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pdp-trust-i {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 15px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  text-align: center;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.pdp-trust-i i {
  color: var(--neon);
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}
.pdp-trust-i span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.pdp-trust-i:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--neon) 40%, transparent);
}
.pdp-trust-i:hover i {
  transform: scale(1.15) rotate(-6deg);
}

/* ---------- Relacionados ---------- */
.pdp-rel-head {
  margin: 64px auto 22px;
  max-width: 1120px;
  text-align: center;
}
.pdp-rel-head .section-title {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}
.pdp-rel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.pdp-rel-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.pdp-rel-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--neon) 45%, transparent);
  box-shadow: 0 30px 60px -40px rgba(238, 241, 244, 0.9);
}
.pdp-rel-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pdp-rel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp-rel-card:hover .pdp-rel-media img {
  transform: scale(1.07);
}
.pdp-rel-body {
  display: grid;
  gap: 5px;
  padding: 14px 15px 16px;
  text-align: center;
}
.pdp-rel-name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}
.pdp-rel-price {
  font-size: 0.9rem;
  color: var(--neon);
  font-weight: 800;
}

/* ---------- Producto no encontrado ---------- */
.pdp-404 {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 70px 20px;
  text-align: center;
}
.pdp-404 i {
  font-size: 2.6rem;
  color: var(--muted);
}
.pdp-404 h2 {
  margin: 0;
  font-size: 1.4rem;
}
.pdp-404 p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pdp-nav {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@media (max-width: 560px) {
  .pdp-thumb {
    width: 58px;
    height: 58px;
  }
  .pdp-actions {
    display: grid;
  }
  .pdp-alt {
    padding: 14px 18px;
  }
  .pdp-trust-i {
    padding: 12px 6px;
  }
  .pdp-trust-i span {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pdp-stage,
  .pdp-stage img,
  .pdp-rel-card,
  .pdp-rel-media img,
  .pdp-trust-i,
  .pdp-trust-i i,
  .pdp-list li,
  .pdp-thumb {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .pdp-buy::after {
    display: none;
  }
  .pdp-tag.few .dot {
    animation: none;
  }
}

/* =========================================================
   Ficha: capturas a partir de la 2.ª imagen
   La portada llena el marco, pero las capturas (lista de capas,
   inventario…) se muestran ENTERAS para que no se corte nada.
   ========================================================= */
.pdp-stage img.fit {
  object-fit: contain;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.pdp-stage:hover img.fit {
  transform: scale(1.015);
}

/* =========================================================
   Arrastrar y soltar imágenes en el panel
   ========================================================= */
.adm-imgs.is-dropzone {
  position: relative;
  min-height: 96px;
  padding: 4px;
  border-radius: 14px;
  border: 1px dashed transparent;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.adm-imgs.is-drag {
  border-color: var(--neon);
  background: rgba(238, 241, 244, 0.07);
}
/* velo con el mensaje mientras se arrastra encima */
.adm-imgs.is-drag::after {
  content: "Suelta aquí tus imágenes";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(13, 16, 20, 0.86);
  color: var(--neon);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.adm-imgs.is-drag * {
  pointer-events: none;
}
