/* =========================================================
   RESET / BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden; /* iOS Safari necesita esto en html, no solo en body */
}

body {
  background: #0b0c10;
  color: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

/* =========================================================
   VARIABLES DE COLOR
========================================================= */
:root {
  --blue: #007bff;
  --blue-glow: #4aa3ff;
  --red: #ff3b3b;
  --green: #00c46a;

  --card-bg: #111318;
  --card-border: #1f2230;
  --text-dim: #cfcfcf;
}

/* =========================================================
   HEADER GAMER PRO — NEON + GLASS + ANIMACIONES
========================================================= */
.site-header {
  width: 100%;
  padding: 15px 40px;
  background: rgba(14, 16, 24, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2f3a55;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 25px #00000070;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #005eff, #9d00ff);
  box-shadow: 0 0 12px #0040ff99;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  box-shadow: 0 0 10px #0040ff99;
  transition: .3s ease;
}

.nav-logo:hover {
  transform: scale(1.06);
  box-shadow: 0 0 18px #0051ffa1;
}

.nav-title {
  font-size: 24px;
  font-weight: 800;
  color: #dfe4ff;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #0030ff;
}

/* NAV MENU */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  font-size: 16px;
  color: #cfd5ff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: .3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #9d00ff);
  border-radius: 20px;
  transition: width .3s ease;
  box-shadow: 0 0 8px #005eff;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #ffffff;
}

/* ICONOS DERECHA */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-box {
  min-width: 42px;
  /* Cambiado de width fijo a min-width */
  height: 42px;
  background: #1a1e2b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #2a3350;
  box-shadow: 0 0 10px #00000060;
  transition: .3s ease;
  padding: 0 10px;
  /* Padding extra para texto */
  white-space: nowrap;
  /* Evitar saltos de linea */
}

.icon-box i {
  font-size: 20px;
  color: #9ebaff;
  transition: .3s ease;
}

.icon-box span {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.icon-box:hover {
  transform: translateY(-4px) scale(1.02);
  /* Escala mas suave */
  border-color: #006dff;
  background: #1b2338;
  box-shadow: 0 0 18px #006cffbb;
}

.icon-box:hover i {
  color: #fff;
}

/* =========================================================
   HERO — CARRUSEL COMPLETO
========================================================= */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
  border-bottom: 2px solid #007bff55;
}

.hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.6);
  transition: opacity 1.1s ease-in-out;
}

.hero .slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  z-index: 10;
  left: 8%;
  bottom: 20%;
  max-width: 520px;
}

#hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

#hero-desc {
  font-size: 20px;
  margin: 8px 0 25px;
  color: #e9e9e9;
  opacity: 0;
  animation: fadeIn 1.3s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
  transition: .3s;
}

.hero-btn.blue {
  background: linear-gradient(90deg, #005eff, #3f8aff);
}

.hero-btn.red {
  background: linear-gradient(90deg, #ff0033, #ff5577);
}

.hero-btn.green {
  background: linear-gradient(90deg, #0bcf65, #09a44e);
}

.hero-btn.orange {
  background: linear-gradient(90deg, #ff9d00, #ff4da6);
  box-shadow: 0 4px 20px rgba(255,157,0,.4);
}

.hero-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 14px;
  height: 14px;
  background: #ffffff55;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}

.dot.active {
  background: #007bff;
  box-shadow: 0 0 12px #007bff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   POPULARES — CARRUSEL (OPTIMIZADO + INTERACTIVO)
========================================================= */

.populares {
  margin: 80px auto;
  padding: 50px 40px;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

/* IZQUIERDA */
.pop-left {
  width: 25%; /* Reducimos el banner para dar espacio al carrusel */
}

.pop-banner {
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 25px #00000080;
  transition: transform .35s ease, box-shadow .35s ease;
}

.pop-banner:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px #009dff55;
}

.banner-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}

.pop-banner:hover .banner-img {
  transform: scale(1.12);
}

/* TEXTOS IZQUIERDA */
.banner-info {
  padding: 24px;
}

.banner-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.banner-sub {
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.4;
}

/* BOTÓN DEL BANNER */
.banner-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #0066ff, #00c3ff);
  box-shadow: 0 0 14px #008cff75;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.banner-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #ffffff55, transparent);
  transform: skewX(-20deg);
}

.banner-btn:hover::after {
  animation: shine .7s linear;
}

.banner-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 0 25px #00c3ffbb;
}

@keyframes shine {
  0% {
    left: -80%;
  }

  100% {
    left: 140%;
  }
}

/* BOTÓN VER MÁS */
.ver-mas {
  margin-top: auto;
  padding: 10px 20px;
  border: none;
  background: linear-gradient(90deg, #0066ff, #1aacff);
  color: #fff;
  border-radius: 0 0 20px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s ease;
  width: 100%;
}

.ver-mas:hover {
  transform: scale(1.07);
  box-shadow: 0 0 14px #1aacffcc;
}

/* ESTILO PARA PRODUCTOS INACTIVOS (AGOTADOS) */
.pop-item.is-inactive, .oferta-item.is-inactive, .card.is-inactive {
    opacity: 0.6;
    pointer-events: none; /* Deshabilita clics en toda la tarjeta */
}
/* MINI GALERÍA EN CARDS */
.card-img-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.mini-gallery {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 5px;
    opacity: 0;
    transition: 0.3s ease;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.pop-item:hover .mini-gallery, .oferta-item:hover .mini-gallery {
    opacity: 1;
}

.mini-thumb {
    width: 35px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

/* DERECHA */
.pop-right {
  width: 72%; /* Aumentamos el espacio para las 3 cards */
  position: relative;
}

.subtitulo {
  font-size: 24px;
  margin-bottom: 18px;
}

/* SLIDER */
.pop-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pop-track {
  display: flex;
  transition: transform .6s ease;
  min-height: 520px; /* Aumentado para que no se corte por abajo */
  /* Evita colapso si no hay img */
}

/* GRUPOS */
.pop-group {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: space-between; /* Distribuye las 3 cards equitativamente */
  align-items: stretch;
  gap: 20px;
  padding: 20px 0; /* Eliminamos padding lateral para que el cálculo sea exacto */
  box-sizing: border-box;
  flex-wrap: nowrap;
}

.ver-mas.btn-agotado {
  background: #6c757d !important;
  border-color: #6c757d !important;
}

/* =========================================================
   CARD INTERACTIVA (MEJORADA)
========================================================= */

/* CARD INTERACTIVA (MEJORADA) */
.pop-item {
  flex: 0 0 calc(33.33% - 14px);
  background: #161820;
  border: 1px solid #20242f;
  border-radius: 20px;
  overflow: visible;
  text-align: center;
  box-shadow: 0 0 16px #00000060;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.pop-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 26px #2f77ff80;
}

/* TAG NUEVO */
.tag-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #ff0044, #ff7b00);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 0 10px #ff450070;
  animation: pulseTag 1.5s infinite ease-in-out;
}

@keyframes pulseTag {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.pop-item img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  background-color: #20242f;
  display: block;
}

/* TITULO */
.pop-item h4 {
  font-size: 18px;
  margin: 12px 0 6px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

/* PLATAFORMAS */
.platforms {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px 0;
}

.platforms span {
  background: #0d6efd33;
  color: #5bb7ff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #0d6efd55;
  transition: .3s ease;
}

.platforms span:hover {
  background: #0d6efd88;
  color: #fff;
}

/* RATING */
.rating {
  margin: 6px 0;
  color: #ffd60a;
  text-shadow: 0 0 8px #ffd60a55;
  letter-spacing: 1px;
}

/* PRECIO ANTES + DESCUENTO */
.price-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.old-price {
  color: #ffffff77;
  text-decoration: line-through;
  font-size: 14px;
}

.discount {
  color: #00ff9d;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 0 10px #00ff9d55;
}

/* PRECIO FINAL */
.price {
  font-size: 18px;
  color: #21ffe2;
  font-weight: 700;
  margin: 10px 0;
  text-shadow: 0 0 8px #21ffe280;
}

/* FLECHAS */
.pop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 15, 30, 0.8) !important;
  backdrop-filter: blur(15px);
  border: 2px solid var(--blue-glow) !important;
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  cursor: pointer;
  font-size: 22px !important;
  z-index: 15;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  padding: 0 !important;
}

.pop-arrow:hover {
  background: var(--blue) !important;
  color: #fff;
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-50%) scale(1.2) rotate(360deg) !important;
  border-color: #fff !important;
}

.pop-arrow.left {
  left: -20px;
}

.pop-arrow.right {
  right: -20px;
}

/* DOTS */
.pop-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.pop-dot {
  width: 14px;
  height: 14px;
  background: #ffffff44;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s ease;
}

.pop-dot.active {
  background: #007bff;
  box-shadow: 0 0 10px #007bff;
}

/* =========================================================
   SECCIÓN PRIMARIA VS SECUNDARIA
========================================================= */

.venta-tipos {
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.tipos-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 12px #005effaa;
}

.tipos-sub {
  color: #cfcfcf;
  font-size: 16px;
  margin-bottom: 45px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tipo-card {
  background: #161820;
  border: 1px solid #20242f;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 0 18px #00000070;
  transition: .3s ease;
  position: relative;
}

.tipo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px #008cff66;
}

.tipo-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.tipo-desc {
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.tipo-list {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.tipo-list li {
  margin: 8px 0;
  color: #b8c7ff;
  font-weight: 500;
}

.tipo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 0 12px #ffffff50;
}

.tipo-badge.primary {
  background: linear-gradient(90deg, #005eff, #00aaff);
  color: #fff;
}

.tipo-badge.secondary {
  background: linear-gradient(90deg, #ff0033, #ff7700);
  color: #fff;
}

/* Responsive */
@media (max-width: 450px) {
  .tipos-title {
    font-size: 28px;
  }
}

/* =========================================================
   OFERTAS — 4x4
========================================================= */
.ofertas-section {
  position: relative;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 10px;
}

.section-head {
  text-align: center;
  margin-bottom: 25px;
}

.title-glow {
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 15px #ff4d4daa;
}

.section-desc {
  font-size: 16px;
  color: #cfcfcf;
}

.oferta-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 15, 30, 0.9) !important;
  backdrop-filter: blur(15px);
  border: 2px solid var(--blue-glow) !important;
  color: #fff;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
}

.oferta-btn:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-50%) scale(1.2) rotate(360deg);
  border-color: #fff;
}

.oferta-btn i {
  transition: transform 0.3s;
}

.oferta-btn:hover i { transform: scale(1.2); }

#ofertaPrev {
  left: -35px;
}

#ofertaNext {
  right: -35px;
}

.ofertas-carousel {
  overflow: hidden;
}

.ofertas-track {
  display: flex;
  transition: transform .6s ease-in-out;
}

.oferta-group {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 15px;
  padding: 15px 0;
  box-sizing: border-box;
}

.oferta-group .oferta-item {
  flex: 0 0 calc(33.33% - 15px);
  max-width: 380px;
}

.oferta-group .card {
  background: #16161f;
  border-radius: 16px;
  border: 1px solid #1f2230;
  overflow: hidden;
  text-align: center;
  transition: .3s ease;
}

.oferta-group .card img {
  height: 160px;
  object-fit: cover;
}

.oferta-group .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px #60aaff88;
}

.buy-btn {
  margin-bottom: 14px;
  padding: 10px 20px;
  border: none;
  background: linear-gradient(90deg, #ff0077, #ff46cc);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.buy-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 18px #ff4dbb;
}

.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.tag-featured {
  background: linear-gradient(90deg, #ffd700, #ffa500) !important;
}

.tag-limited {
  background: rgba(0,0,0,0.85) !important;
  border: 1px solid #ff4d4d !important;
  color: #ff4d4d !important;
}

/* COUNTDOWN */
#countdown {
  margin: 12px auto;
  padding: 8px 20px;
  font-size: 26px;
  font-weight: bold;
  border: 3px solid #008cff55;
  width: max-content;
  border-radius: 12px;
  transition: .3s;
}

#countdown.warn {
  border-color: #ff3b3b;
  color: #ff3b3b;
}

/* =========================================================
   OFERTAS — CARDS IGUAL ESTILO POPULARES
========================================================= */

.oferta-item {
  position: relative;
  background: #161820;
  border: 1px solid #20242f;
  border-radius: 18px;
  padding-bottom: 12px;
  overflow: hidden;
  transition: .3s ease;
}

.oferta-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 26px rgba(139,92,246,.4);
}

/* Imagen */
.oferta-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Título */
.oferta-item h4 {
  font-size: 17px;
  margin: 10px 0 4px;
  padding: 0 10px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLATAFORMAS */
.oferta-item .platforms {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 6px 0;
}

.oferta-item .platforms span {
  background: rgba(255,255,255,.07);
  color: #c8cfe0;
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}

/* RATING */
.oferta-item .rating {
  color: #c8a840;
  margin: 6px 0;
  opacity: .85;
}

/* PRECIOS */
.oferta-item .price-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.oferta-item .old-price {
  text-decoration: line-through;
  color: #ffffff77;
  font-size: 14px;
}

.oferta-item .discount {
  color: #00ff9d;
  font-weight: 700;
}

/* PRECIO */
.oferta-item .price {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  margin: 10px 0;
}

/* TAG NUEVO */
.tag-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(90deg, #ff0044, #ff7b00);
  padding: 4px 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 10px #ff450070;
}

/* BOTÓN */
.buy-btn {
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #0066ff, #1aacff);
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.buy-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 14px #1aacffcc;
}

/* =========================================================
   ACCESSORY CARDS — REDISEÑO
========================================================= */
.accessory-card {
  background: linear-gradient(145deg, #0c1520 0%, #101a28 100%);
  border: 1px solid rgba(0, 196, 106, 0.14);
  border-radius: 16px;
  overflow: hidden;
  padding: 0 !important;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.accessory-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0, 196, 106, 0.22), 0 0 0 1px rgba(0, 196, 106, 0.28);
  border-color: rgba(0, 196, 106, 0.38);
}
.accessory-card .card-img-wrap {
  height: 165px;
  background: rgba(0, 10, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 196, 106, 0.08);
}
.accessory-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .55));
}
.accessory-card:hover .card-img-wrap img {
  transform: scale(1.07);
}
.accessory-card .card-body {
  padding: 12px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.accessory-card .card-body h4 {
  font-size: 13px;
  color: #d0e8ff;
  font-weight: 700;
  margin: 0;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}
.accessory-card .card-body .price {
  color: #00e57a !important;
  font-size: 1.1rem !important;
  font-weight: 900 !important;
  margin: 5px 0 0 !important;
}
.accessory-card .buy-btn {
  margin: 8px 12px 12px;
  width: calc(100% - 24px);
  padding: 9px;
  font-size: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00a352, #00cc6a);
  box-shadow: 0 4px 14px rgba(0, 196, 106, 0.28);
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.accessory-card .buy-btn:hover {
  background: linear-gradient(90deg, #00ba5e, #00e87a);
  box-shadow: 0 4px 20px rgba(0, 196, 106, 0.48);
  transform: translateY(-1px) scale(1.02);
}
.accessory-card.is-inactive {
  opacity: 0.65;
}
.accessory-card.is-inactive .buy-btn {
  background: #1a2030;
  box-shadow: none;
  color: #4a5568;
}

/* =========================================================
   OFERTAS — RESPONSIVE MÓVIL
========================================================= */

/* Tablet: 2 columnas, imagen compacta */
@media (max-width: 850px) {
  .ofertas-section { padding: 0 20px; margin: 50px auto; }
  #ofertaPrev { left: -10px; }
  #ofertaNext { right: -10px; }
}

/* Móvil: cards horizontales (imagen izq, contenido der) */
@media (max-width: 600px) {
  .ofertas-section { padding: 0; margin: 40px 12px; }
  #ofertaPrev { left: 2px; width: 30px; height: 30px; font-size: 12px; }
  #ofertaNext { right: 2px; width: 30px; height: 30px; font-size: 12px; }

  /* Cada card ocupa el ancho completo */
  .oferta-group .oferta-item {
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto 1fr;
    height: auto !important;
    min-height: 105px;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 0 !important;
  }
  /* Imagen: ocupa la columna izquierda en ambas filas */
  .oferta-item .card-img-container {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 105px !important;
    width: 90px !important;
    overflow: hidden;
  }
  .oferta-item .card-img-container .main-img,
  .oferta-item .card-img-container img.main-img {
    height: 105px !important;
    width: 90px !important;
    object-fit: cover;
  }
  /* Ocultar flechas internas de la imagen en móvil */
  .oferta-item .card-nav-arrow { display: none !important; }
  .oferta-item .card-dots { display: none !important; }
  /* Contenido: columna derecha fila 1 */
  .oferta-item .card-body {
    grid-column: 2;
    grid-row: 1;
    padding: 8px 10px 2px !important;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .oferta-item .card-body h4 {
    font-size: 12px !important;
    height: auto !important;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: flex-start !important;
  }
  .oferta-item .card-body .platforms { margin: 1px 0; }
  .oferta-item .card-body .platforms span { font-size: 9px; padding: 1px 5px; }
  .oferta-item .card-body .price-box  { margin: 0; font-size: 10px; }
  .oferta-item .card-body .price      { font-size: 12px !important; margin: 1px 0 0 !important; }
  /* Ocultar elementos secundarios */
  .oferta-item .rating,
  .oferta-item .save-badge,
  .oferta-item .psplus-card-note { display: none !important; }
  /* Botón: columna derecha fila 2 */
  .oferta-item .buy-btn {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 8px 6px !important;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 8px;
    align-self: end;
  }
  /* Badge de oferta más pequeño */
  .oferta-badge { font-size: 8px !important; padding: 2px 5px !important; }
}

/* =========================================================
   DIVIDER — CARRUSEL GRANDE
========================================================= */
.divider-carousel {
  margin-top: 80px;
  height: 90vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--blue-glow);
  border-bottom: 4px solid var(--blue-glow);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.9);
}

.divider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%; /* Ajuste para que no se corte lo importante arriba */
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s linear;
  transform: scale(1);
}

.divider-slide.active {
  opacity: 1;
  transform: scale(1.1); /* Efecto de zoom lento e interactivo */
}

.divider-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0,0,0,0.2), transparent);
  z-index: 2;
}

.divider-text {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 700px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

.divider-text h2 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--blue);
  color: #fff;
}

.divider-text p {
  font-size: 22px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.divider-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}

.divider-dot {
  width: 12px;
  height: 12px;
  background: #ffffff55;
  border-radius: 50%;
  cursor: pointer;
}

.divider-dot.active {
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

/* =========================================================
   ACCESORIOS
========================================================= */
.accesorios-section {
  margin-top: 100px;
  max-width: 1300px;
  margin-inline: auto;
  padding: 80px 40px;
  background: radial-gradient(circle at center, rgba(0, 196, 106, 0.08), transparent 70%);
  border-radius: 60px;
  position: relative;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  text-align: center;
  transition: .35s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px #61aaffaa;
}

.ver-todo {
  display: inline-block;
  margin: 35px auto 0;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00d46e, #00ff9d);
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 16px #00ff9d55;
}

.ver-todo:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 22px #00ff9da0;
}

/* --- HACER LAS CARDS SIMÉTRICAS --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Cada card tendrá misma altura y distribución */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Empuja el botón al fondo */
  padding: 18px 15px;
  height: 100%;
  /* OBLIGATORIO para que todas midan igual */
}

/* Imagen centrada y tamaño uniforme */
.card-img-wrap {
  width: 100%;
  height: 180px;
  /* Controla la altura exacta de las imágenes */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Mantiene proporciones sin deformar */
}

/* Ajuste de los textos */
.card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.card .price {
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 700;
}

/* Asegura que el botón quede siempre abajo */
.card .buy-btn {
  margin-top: auto;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #0c0d11;
  padding: 60px 20px;
  margin-top: 80px;
  text-align: center;
  color: #d1d1d1;
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  filter: blur(40px);
  animation: floatGlow 6s infinite alternate ease-in-out;
}

.site-footer::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 98, 255, 0.35), transparent 70%);
  top: -80px;
  left: -80px;
}

.site-footer::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168, 0, 255, 0.25), transparent 70%);
  bottom: -60px;
  right: -60px;
  animation-duration: 7s;
}

/* MÉTODOS DE PAGO */
.footer-pay {
  margin: 40px auto 20px;
}

.pay-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.pay-item {
  background: #161821;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d1d1;
  border: 1px solid #2a3350;
  box-shadow: 0 0 12px #00000060;
  transition: .3s;
}

.pay-item:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1c2030;
  box-shadow: 0 0 16px #005eff77;
}


.footer-title {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.social {
  font-size: 28px;
  padding: 14px;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #161821;
  border-radius: 14px;
  color: #bfcfff;
  transition: .3s ease;
  border: 1px solid transparent;
}

.social:hover {
  transform: translateY(-6px) scale(1.12);
  border-color: #3c6aff;
  color: #fff;
  background: #1c1f2d;
  box-shadow: 0 0 18px #3c6aff90;
}

.social.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 0 18px #25d366aa;
}

.social.tiktok:hover {
  border-color: #ff0050;
  box-shadow: 0 0 18px #ff0050aa;
}

.social.facebook:hover {
  border-color: #1877ff;
  box-shadow: 0 0 18px #1877ffaa;
}

.social.instagram:hover {
  border-color: #d6249f;
  box-shadow: 0 0 18px #d6249faa;
}

.footer-map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 20px #00000055;
}

.footer-copy {
  font-size: 15px;
  color: #8489a3;
  margin-top: 20px;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
  }
}

/* =========================================================
   RESPONSIVE FINAL
========================================================= */
@media (max-width: 950px) {
  .populares {
    flex-direction: column;
    text-align: center;
  }

  .pop-left,
  .pop-right {
    width: 100%;
  }

}

@media (max-width: 600px) {
  .divider-text {
    left: 20px;
    max-width: 300px;
  }

  .divider-text h2 {
    font-size: 30px;
  }
}

/* =========================================================
   📱 RESPONSIVE COMPLETO
========================================================= */

/* Tablets grandes / Laptops pequeñas */
@media (max-width: 1024px) {

  .site-header {
    padding: 12px 20px;
  }

  .nav-menu ul {
    gap: 18px;
  }

  .hero-content {
    left: 5%;
    bottom: 18%;
    max-width: 420px;
  }

  #hero-title {
    font-size: 42px;
  }

  #hero-desc {
    font-size: 18px;
  }

  /* POPULARES */
  .populares {
    padding: 40px 20px;
    gap: 30px;
  }

  .pop-left {
    width: 45%;
  }

  .pop-right {
    width: 55%;
  }

  .pop-item {
    width: 220px;
  }

}

/* Tablets verticales */
@media (max-width: 850px) {

  /* HEADER — hamburguesa */
  .nav-menu { display: none; }
  .auth-nav-btns { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-icons { gap: 8px; }

  .site-header {
    justify-content: space-between;
  }

  /* HERO */
  #hero-title {
    font-size: 34px;
  }

  #hero-desc {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* POPULARES → column */
  .populares {
    flex-direction: column;
    text-align: center;
  }

  .pop-left,
  .pop-right {
    width: 100%;
  }

  .pop-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pop-item {
    width: 45%;
  }

  /* OFERTAS → 2 columnas reales (flex-based) */
  .oferta-group {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .oferta-group .oferta-item {
    flex: 0 0 calc(50% - 6px);
    max-width: none;
  }
  .oferta-item img {
    height: 180px;
  }
}

/* Celulares grandes */
@media (max-width: 600px) {

  .site-header {
    padding: 10px 15px;
  }

  .nav-title {
    font-size: 18px;
  }

  /* HERO */
  .hero {
    height: 75vh;
  }

  .hero-content {
    left: 5%;
    bottom: 12%;
    max-width: 300px;
  }

  #hero-title {
    font-size: 28px;
  }

  #hero-desc {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .dots {
    bottom: 16px;
  }

  /* POPULARES → 1 columna */
  .pop-item {
    width: 80%;
    margin: 0 auto;
  }

  .pop-group {
    flex-direction: column;
    gap: 25px;
  }

  .pop-arrow.left {
    left: -10px;
  }

  .pop-arrow.right {
    right: -10px;
  }

  /* OFERTAS → 1 columna en móviles pequeños */
  .oferta-group .oferta-item {
    flex: 0 0 100%;
  }
  .oferta-item img {
    height: 160px;
  }
}

/* Celulares pequeños */
@media (max-width: 430px) {

  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .site-header {
    padding: 8px 12px;
  }

  /* HERO */
  #hero-title {
    font-size: 24px;
  }

  #hero-desc {
    font-size: 13px;
  }

  .hero-btn {
    font-size: 13px;
  }

  /* POPULARES */
  .pop-item {
    width: 95%;
  }

  /* OFERTAS */
  .oferta-item h4 {
    font-size: 15px;
  }
}

/* =========================================================
   INDEX ONLY — cards de Populares (.pop-group)
   Aplica solo al índex, no afecta el catálogo
========================================================= */
.pop-group .pop-item {
  min-height: 540px;
}
.pop-group .pop-item:hover {
  box-shadow: 0 0 28px rgba(139,92,246,.45);
}
.pop-group .card-img-container {
  height: 240px;
}
.pop-group .pop-item img {
  height: 240px;
}
.pop-group .platforms span {
  background: rgba(255,255,255,.07);
  color: #c8cfe0;
  border: 1px solid rgba(255,255,255,.12);
}
.pop-group .platforms span:hover {
  background: rgba(139,92,246,.2);
  color: #e0d0ff;
  border-color: rgba(139,92,246,.4);
}
.pop-group .rating {
  color: #c8a840;
  text-shadow: none;
  opacity: .85;
}
.pop-group .price {
  color: #ffffff;
  text-shadow: none;
}
.pop-group .ver-mas {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}
.pop-group .ver-mas:hover {
  box-shadow: 0 0 18px rgba(139,92,246,.6);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* =========================================================
   HAMBURGER MENU + MOBILE NAV PANEL
========================================================= */

/* Hamburger button — hidden by default, shown via media query */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #1a1e2b;
  border: 1px solid #2a3350;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 42px;
  box-shadow: 0 0 10px #00000060;
  transition: border-color .3s, box-shadow .3s;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #9ebaff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger:hover { border-color: #006dff; box-shadow: 0 0 14px #006cff66; }
.nav-hamburger:hover span { background: #fff; }

/* Animated X when open */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown panel — fixed so iOS Safari doesn't clip it */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; /* overridden by JS with actual header height */
  left: 0;
  right: 0;
  background: rgba(8, 10, 18, 0.98);
  backdrop-filter: blur(18px);
  border-top: 1px solid #1e2a40;
  border-bottom: 2px solid #1e2a40;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
  animation: mobileNavSlideDown 0.22s ease;
}
.mobile-nav.is-open { display: flex; }

@keyframes mobileNavSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  color: #cfd5ff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a:active {
  background: rgba(0, 110, 255, 0.1);
  color: #fff;
}
.mobile-nav ul li a i {
  width: 20px;
  text-align: center;
  color: #5ab4ff;
  font-size: 15px;
}

.mobile-nav-divider {
  height: 1px;
  background: #1e2a40;
  margin: 10px 4px;
}

.mobile-nav-auth {
  display: flex;
  gap: 10px;
  padding: 4px 4px 0;
}
.mobile-nav-auth .auth-nav-btn {
  flex: 1;
  text-align: center;
  padding: 11px 10px;
  font-size: 13px;
  border-radius: 10px;
}

/* ═══════════════════════════════════════════════════
   SECCIÓN PÚBLICA — RESEÑAS & ENTREGAS
   Diseño de dos columnas al final de la página
   ═══════════════════════════════════════════════════ */
.reviews-section {
    padding: 56px 24px;
    background: #060810;
    border-top: 1px solid #0f1525;
}
.reviews-container {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Columna izquierda */
.rv-left-col { position: sticky; top: 24px; }
.rv-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,196,106,.08); border: 1px solid rgba(0,196,106,.18);
    color: #00c46a; border-radius: 999px; padding: 5px 14px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px;
}
.rv-col-title {
    font-size: 26px; font-weight: 900; color: #fff; line-height: 1.2;
    margin-bottom: 10px;
}
.rv-col-title span { color: #4a9eff; }
.rv-col-sub { font-size: 12px; color: #4a5a70; line-height: 1.6; margin-bottom: 22px; }

/* Mini stats en columna izquierda */
.rv-mini-stats {
    display: flex; gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.rv-mini-stat { text-align: center; }
.rv-mini-stat span {
    display: block; font-size: 22px; font-weight: 900; color: #fff; line-height: 1;
}
.rv-mini-stat small { font-size: 10px; color: #4a5a70; display: block; margin-top: 3px; }

/* Botón abrir formulario */
.rv-open-form-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.2);
    color: #ffd700; border-radius: 12px; padding: 10px 18px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    font-family: 'Poppins', sans-serif; transition: all .2s;
    width: 100%; justify-content: center;
}
.rv-open-form-btn:hover { background: rgba(255,215,0,.14); border-color: rgba(255,215,0,.4); }

/* Panel formulario colapsable */
.rv-form-panel {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
    opacity: 0; margin-top: 0;
}
.rv-form-panel.open {
    max-height: 500px; opacity: 1; margin-top: 14px;
}
.rv-leave-form  { display: flex; flex-direction: column; gap: 10px; }
.rv-pub-input {
    width: 100%; background: #07090f; border: 1px solid #131c2c;
    border-radius: 10px; padding: 10px 14px; color: #ccd;
    font-size: 12px; font-family: 'Poppins', sans-serif; outline: none;
    transition: border-color .2s; resize: none; box-sizing: border-box;
}
.rv-pub-input::placeholder { color: #2a3a50; }
.rv-pub-input:focus { border-color: rgba(255,215,0,.35); }
.rv-stars-select {
    display: flex; align-items: center; gap: 8px; font-size: 11px; color: #556;
    flex-wrap: wrap;
}
.star-btns { display: flex; gap: 4px; flex-wrap: wrap; }
.star-btn {
    background: #07090f; border: 1px solid #131c2c; border-radius: 7px;
    padding: 5px 8px; font-size: 11px; cursor: pointer; color: #2a3a50;
    font-family: inherit; transition: all .18s;
}
.star-btn.active { background: rgba(255,215,0,.1); border-color: rgba(255,215,0,.45); color: #ffd700; }
.star-btn:hover  { border-color: rgba(255,215,0,.3); color: #ffd700aa; }
.rv-submit-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #ffd700, #f5a623); color: #080808;
    border: none; border-radius: 10px; padding: 10px 20px;
    font-size: 12px; font-weight: 800; cursor: pointer;
    font-family: 'Poppins', sans-serif; transition: opacity .2s, transform .15s;
    align-self: flex-start;
}
.rv-submit-btn:hover    { opacity: .9; transform: translateY(-1px); }
.rv-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.rv-sent-msg {
    text-align: center; padding: 18px 0;
    color: #00c46a; font-weight: 700; font-size: 13px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.rv-sent-msg i { font-size: 24px; }

/* ── Columna derecha */
.rv-right-col { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

/* Etiqueta de bloque */
.rv-block-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 10px; font-weight: 700; color: #354560; text-transform: uppercase;
    letter-spacing: 1.4px; margin-bottom: 12px;
}

/* ── Fotos de entregas — grid destacado */
.pub-proofs-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.pub-proof-item {
    position: relative; cursor: pointer; border-radius: 12px; overflow: hidden;
    border: 1px solid #131c2e; aspect-ratio: 16/10;
    transition: transform .22s, border-color .22s, box-shadow .22s;
    background: #0a0d18;
}
.pub-proof-item:hover {
    transform: translateY(-3px) scale(1.015);
    border-color: #2a4a7a;
    box-shadow: 0 10px 34px rgba(0,0,0,.55);
}
.pub-proof-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.pub-proof-item:hover img { transform: scale(1.04); }
.pub-proof-item .proof-caption-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 100%);
    padding: 26px 12px 10px; font-size: 11px; color: #dde; font-weight: 600;
    opacity: 0; transition: opacity .22s;
}
.pub-proof-item:hover .proof-caption-overlay { opacity: 1; }
.pub-proof-zoom-icon {
    position: absolute; top: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(0,0,0,.6); color: #fff; font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .22s;
}
.pub-proof-item:hover .pub-proof-zoom-icon { opacity: 1; }

/* Lightbox */
.proof-lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.92); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 24px;
}
.proof-lightbox.open { display: flex; }
.proof-lightbox-inner {
    position: relative; max-width: 860px; width: 100%;
    animation: lbIn .22s ease;
}
@keyframes lbIn { from { opacity:0; transform: scale(.94); } to { opacity:1; transform: scale(1); } }
.proof-lightbox-inner img {
    width: 100%; border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.7);
    display: block; max-height: 80vh; object-fit: contain;
}
.proof-lightbox-caption {
    text-align: center; color: #aab; font-size: 13px; margin-top: 14px; font-weight: 600;
}
.proof-lightbox-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #1a2a40; border: 1px solid #2a3a55;
    color: #aab; font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.proof-lightbox-close:hover { background: #ff5c5c; color: #fff; border-color: #ff5c5c; }
.proof-lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    color: #fff; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.proof-lightbox-nav:hover { background: rgba(255,255,255,.2); }
.proof-lightbox-nav.prev { left: -52px; }
.proof-lightbox-nav.next { right: -52px; }
@media (max-width: 600px) {
    .proof-lightbox-nav.prev { left: 4px; }
    .proof-lightbox-nav.next { right: 4px; }
}

/* Reseñas — scroll horizontal */
.pub-reviews-scroll {
    display: flex; gap: 12px;
    overflow-x: auto; padding-bottom: 6px;
    scrollbar-width: thin; scrollbar-color: #1a2a40 transparent;
}
.pub-reviews-scroll::-webkit-scrollbar { height: 4px; }
.pub-reviews-scroll::-webkit-scrollbar-track { background: transparent; }
.pub-reviews-scroll::-webkit-scrollbar-thumb { background: #1a2a40; border-radius: 4px; }
.pub-review-card {
    flex-shrink: 0; width: 240px;
    background: #09010d10; background: #08091210;
    background: linear-gradient(145deg, #0c0f1e, #080b16);
    border: 1px solid #131c2e; border-radius: 14px;
    padding: 16px 18px;
    transition: border-color .2s, transform .2s;
}
.pub-review-card:hover { border-color: rgba(255,215,0,.18); transform: translateY(-2px); }
.pub-review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pub-review-avatar {
    width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
    background: linear-gradient(135deg, #14203a, #0d1528);
    border: 1px solid #1a2a40;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #4a9eff;
}
.pub-review-name  { font-size: 13px; font-weight: 700; color: #ccd; margin-bottom: 2px; }
.pub-review-stars { font-size: 11px; color: #ffd700; letter-spacing: 1.5px; }
.pub-review-text  { font-size: 12px; color: #667; line-height: 1.6; font-style: italic; }
.pub-review-date  { font-size: 10px; color: #253240; margin-top: 8px; }

/* Placeholder vacío */
.rv-placeholder {
    text-align: center; padding: 50px 24px; color: #253040;
}
.rv-placeholder p { font-size: 13px; line-height: 1.7; color: #2a3a50; }

/* Responsive */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .rv-left-col { position: static; }
    .rv-col-title { font-size: 22px; }
    .rv-open-form-btn { width: auto; }
}

/* ═══════════════════════════════════════════════════
   BANNER GTA VI PRE-ORDER (index.html)
   ═══════════════════════════════════════════════════ */
.gta6-banner-strip {
    display: block; position: relative; overflow: hidden;
    min-height: 130px; text-decoration: none; cursor: pointer;
    border-top: 1px solid rgba(255,157,0,.15);
    border-bottom: 1px solid rgba(255,157,0,.15);
    transition: filter .25s;
}
.gta6-banner-strip:hover { filter: brightness(1.08); }
.gta6-strip-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.gta6-banner-strip:hover .gta6-strip-bg { transform: scale(1.08); }
.gta6-strip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,3,12,.95) 0%,
        rgba(10,5,20,.85) 40%,
        rgba(20,8,5,.6) 75%,
        rgba(5,3,12,.85) 100%
    );
}
.gta6-strip-content {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 40px; gap: 20px; flex-wrap: wrap;
}
.gta6-strip-left { display: flex; flex-direction: column; gap: 6px; }
.gta6-strip-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,77,166,.12); border: 1px solid rgba(255,77,166,.3);
    color: #ff4da6; border-radius: 999px; padding: 3px 12px;
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    width: fit-content;
    animation: gta6-pulse-badge 2.5s ease-in-out infinite;
}
@keyframes gta6-pulse-badge {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,77,166,.35); }
    50%      { box-shadow: 0 0 0 8px rgba(255,77,166,0); }
}
.gta6-strip-title {
    font-size: clamp(18px, 3vw, 26px); font-weight: 900; color: #fff;
    letter-spacing: -.3px; text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.gta6-strip-sub { font-size: 12px; color: #ff9d00; font-weight: 600; opacity: .9; }
.gta6-strip-right { flex-shrink: 0; }
.gta6-strip-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #ff9d00, #ff4da6);
    color: #fff; border-radius: 12px; padding: 12px 24px;
    font-size: 14px; font-weight: 800;
    box-shadow: 0 4px 20px rgba(255,77,166,.35);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.gta6-banner-strip:hover .gta6-strip-cta {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,77,166,.5);
}

/* Countdown dentro del banner */
.gta6-strip-countdown {
    position: absolute; right: 240px; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; gap: 6px; z-index: 2;
}
.gta6-scd-block {
    text-align: center;
    background: rgba(0,0,0,.5); border: 1px solid rgba(255,157,0,.25);
    border-radius: 8px; padding: 6px 10px; min-width: 44px;
    backdrop-filter: blur(4px);
}
.gta6-scd-block span { display: block; font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.gta6-scd-block small { font-size: 8px; color: #ff9d00; text-transform: uppercase; letter-spacing: .5px; }
.gta6-scd-sep { font-size: 16px; font-weight: 900; color: #ff9d00; opacity: .7; }

@media (max-width: 700px) {
    .gta6-strip-countdown { display: none; }
    .gta6-strip-content { padding: 18px 20px; }
    .gta6-strip-cta { padding: 10px 18px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   HERO INDEX — Solo GTA VI
   ═══════════════════════════════════════════════════ */
.gta6-hero-index .slide {
  background-position: center center;
  filter: brightness(0.85) !important;
}
.gta6-hero-index-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(4,2,10,.92) 0%, rgba(4,2,10,.1) 45%, transparent 100%),
    linear-gradient(to bottom, rgba(4,2,10,.6) 0%, transparent 30%);
}
.gta6-index-content {
  position: absolute; z-index: 10;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px;
  width: 100%; max-width: 720px;
  bottom: auto;
}

/* Badge pulsante */
.gta6-index-preorder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,77,166,.12); border: 1px solid rgba(255,77,166,.35);
  color: #ff4da6; border-radius: 999px; padding: 7px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 22px;
  animation: gta6-pulse-badge 2.5s ease-in-out infinite;
}
.gta6-dot-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #ff4da6; flex-shrink: 0;
  animation: dot-blink 1.2s ease-in-out infinite;
}
@keyframes dot-blink { 0%,100% { opacity:1; } 50% { opacity:.2; } }

/* Logo / Título */
.gta6-index-logo {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 10px;
}
.gta6-index-title-line1 {
  font-size: clamp(28px, 6vw, 58px); font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,.8);
}
.gta6-index-title-vi {
  font-size: clamp(72px, 18vw, 160px); font-weight: 900; line-height: .85;
  background: linear-gradient(135deg, #ff9d00 0%, #ff4da6 50%, #a855f7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 4px 24px rgba(255,157,0,.4));
  letter-spacing: -4px;
}

.gta6-index-desc {
  font-size: 14px; color: rgba(255,255,255,.55); letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 28px;
}

/* Countdown en el hero */
.gta6-index-countdown {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.gta6-icd-block {
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,157,0,.22);
  border-radius: 12px; padding: 12px 16px; min-width: 66px; text-align: center;
  backdrop-filter: blur(8px);
}
.gta6-icd-block span {
  display: block; font-size: 32px; font-weight: 900; color: #fff;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.gta6-icd-block small {
  font-size: 9px; color: #ff9d00; text-transform: uppercase;
  letter-spacing: 1px; margin-top: 3px; display: block;
}
.gta6-icd-sep { font-size: 24px; font-weight: 900; color: #ff9d00; opacity: .6; }

/* Precios */
.gta6-index-prices {
  display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center;
}
.gta6-idx-price {
  border-radius: 999px; padding: 6px 18px; font-size: 13px; font-weight: 600;
}
.gta6-idx-price strong { font-weight: 900; margin-left: 4px; }
.gta6-idx-price.std {
  background: rgba(74,158,255,.1); border: 1px solid rgba(74,158,255,.25); color: #aacfff;
}
.gta6-idx-price.ult {
  background: rgba(255,77,166,.1); border: 1px solid rgba(255,77,166,.3); color: #ffaad4;
}
.gta6-idx-price.ult strong { color: #ff4da6; }
.gta6-idx-price.std strong { color: #4a9eff; }

/* Botón */
.gta6-index-btn {
  font-size: 16px; padding: 16px 40px; border-radius: 14px;
  background: linear-gradient(135deg, #ff9d00, #ff4da6) !important;
  box-shadow: 0 8px 32px rgba(255,77,166,.4);
  transition: transform .2s, box-shadow .2s;
}
.gta6-index-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,77,166,.55);
}

@media (max-width: 600px) {
  .gta6-index-countdown { gap: 5px; }
  .gta6-icd-block { min-width: 54px; padding: 10px 10px; }
  .gta6-icd-block span { font-size: 24px; }
  .gta6-index-title-vi { font-size: clamp(60px, 22vw, 120px); }
}
