/* css variables */
:root {
  --bg-color: #000000;
  --text-primary: #F2F2F2;
  --text-secondary: #aaaaaa;

  --cyan-accent: #18EAF7;
  --blue-accent: #55AAE0;
  --purple-accent: #A15AC8;
  --magenta-accent: #DE16B3;

  /* Aliasing old variables to new neon palette */
  --red-accent: var(--magenta-accent);
  --red-hover: var(--purple-accent);
  --green-accent: var(--cyan-accent);

  --font-oswald: 'Inter', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-inter);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* LAYOUT GRIDS & CONTAINERS */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 60px 0;
}

/* NAVBAR */
.navbar {
  position: fixed;
  /* Mantiene la barra siempre en la pantalla */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  background: rgba(5, 5, 7, 0.7);
  /* Transparencia oscura */
  backdrop-filter: blur(12px);
  /* Efecto vidrio (Glassmorphism) */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo a {
  font-family: var(--font-oswald);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--cyan-accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-icons button {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-icons button:hover {
  transform: scale(1.1);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('./assets/hero-hype.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  color: var(--purple-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: float-subtitle 4s ease-in-out infinite;
}

@keyframes float-subtitle {
  0% {
    transform: translateY(0);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  50% {
    transform: translateY(-8px);
    text-shadow: 0 10px 15px rgba(161, 90, 200, 0.4);
  }

  100% {
    transform: translateY(0);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
}

.hero-title {
  font-family: var(--font-inter);
  font-size: 96px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--cyan-accent);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta-accent), var(--cyan-accent));
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(222, 22, 179, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  transition: width 0.4s ease;
  z-index: 0;
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(24, 234, 247, 0.4);
  transform: translateY(-4px);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline:active {
  transform: translateY(1px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}


/* SECTIONS GENERAL */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.section-tag {
  color: var(--red-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.view-more {
  color: var(--red-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.view-more:hover {
  text-decoration: underline;
}

/* REELS VIRALES SECTION */
.reels-section {
  background-color: var(--bg-color);
}

.reels-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  /* hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reels-carousel::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  min-width: 280px;
  height: 480px;
  border-radius: 12px;
  background-color: #1a1a1a;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.reel-card:hover .reel-img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.reel-card:hover .reel-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--cyan-accent);
}

.reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.reel-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 5;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.reel-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.reel-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #ccc;
  align-items: center;
}

.reel-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

/* CINEMA MODAL LIGHTBOX */
.cinema-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cinema-modal.active {
  opacity: 1;
  visibility: visible;
}

.close-cinema-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
}

.close-cinema-btn:hover {
  color: var(--cyan-accent);
}

.cinema-content {
  width: 100%;
  max-width: 400px;
  /* Tamaño ideal vertical de reels */
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinema-content iframe,
.cinema-content blockquote {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
  background: #000;
}

/* PRODUCTOS DESTACADOS SECTION */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #111;
  /* fallback */
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* BADGES */
.product-badges-top {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.product-badges-bottom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.badge.red {
  background-color: var(--red-accent);
  color: white;
}

.badge.green {
  background-color: var(--green-accent);
  color: #000;
}

.badge.red-outline {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--red-accent);
  border: 1px solid var(--red-accent);
}

/* DISCOUNT BADGE */
.discount-pop {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--magenta-accent), var(--cyan-accent));
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(222, 22, 179, 0.6);
  animation: discount-pulse 2s ease-in-out infinite;
}

@keyframes discount-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(222, 22, 179, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 25px rgba(24, 234, 247, 0.8);
    transform: scale(1.08);
  }
}

/* PRODUCT INFO */
.product-info .brand {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-info .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-info .prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info .price {
  font-weight: 700;
  font-size: 18px;
}

.product-info .old-price {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: line-through;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

/* ===== BURGER — oculto en desktop ===== */
.burger { display: none; }

@media (max-width: 768px) {

  /* Navbar fijo */
  .navbar {
    padding: 0 15px;
    height: 60px;
    z-index: 9999;
  }

  /* Centrado perfecto del logo estilo App */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo a { font-size: 17px; }

  /* Botón hamburguesa visible y pegado a la izquierda */
  .burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    padding: 4px;
    z-index: 10001;
    order: -1; /* Ponerlo primero a la izquierda */
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  /* X cuando está abierto */
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; width: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Menú desplegable */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 7, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    /* Estado cerrado: slide hacia arriba y transparente */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
    z-index: 9998;
  }
  /* Estado abierto */
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ccc;
    text-align: left;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: #fff; background: rgba(222,22,179,0.08); }

  /* Ocultar íconos extra si los hay, salvo carrito */
  .nav-icons { gap: 6px; }

  /* Secciones hero */
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ADD TO CART BUTTON */
.add-to-cart-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, var(--magenta-accent), var(--cyan-accent));
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(222, 22, 179, 0.3);
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--cyan-accent), var(--magenta-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.add-to-cart-btn:hover::before {
  opacity: 1;
}

.add-to-cart-btn span {
  position: relative;
  z-index: 1;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 234, 247, 0.4);
}

/* CART BADGE */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--red-accent);
  color: white;
  font-size: 10px;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CART SIDEBAR */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #111;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-open .cart-sidebar {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.close-cart-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
}

.close-cart-btn:hover {
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  gap: 16px;
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: #2a2a2a;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--red-accent);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  border-radius: 4px;
  padding: 2px 6px;
}

.qty-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

.remove-btn:hover {
  color: var(--red-hover);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid #222;
  background-color: #0a0a0a;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.checkout-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-btn {
  background-color: #009ee3;
  /* MercadoPago blue */
  border-color: #009ee3;
  width: 100%;
}

.mp-btn:hover {
  background-color: #0087c1;
  border-color: #0087c1;
}

.transfer-btn {
  width: 100%;
}

/* TRANSFER MODAL */
.transfer-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.transfer-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  border: 1px solid #333;
}

.modal-content h3 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.modal-content p {
  color: #ccc;
  margin-bottom: 8px;
  font-size: 15px;
}

.mt-4 {
  margin-top: 16px;
}

.text-sm {
  font-size: 13px !important;
  color: #888 !important;
}

/* WHY CHOOSE US */
.why-choose-us {
  background-color: var(--bg-color);
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #111111;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: #333;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: #1a1a1c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  color: var(--cyan-accent);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 1px;
}

.feature-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* INFINITE BRAND MARQUEE */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--cyan-accent);
    color: #000;
    padding: 15px 0;
    position: relative;
    margin: 40px 0 60px 0;
    border-top: 3px solid #111;
    border-bottom: 3px solid #111;
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 40px;
    padding-right: 40px;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-brand {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-style: italic;
}

.marquee-separator {
    font-size: 18px;
    color: #ffffff;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.feature-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* FOOTER CTA */
.footer-cta {
  background: linear-gradient(135deg, var(--magenta-accent), var(--purple-accent));
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.4;
}

.btn-outline-white {
  display: inline-block;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: white;
  color: var(--red-accent);
  border: 1px solid white;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: transparent;
  color: white;
}

/* MAIN FOOTER */
.main-footer {
  background-color: #111111;
  color: #dddddd;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-family: var(--font-oswald);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-col h3 span {
  color: var(--red-accent);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--cyan-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #666;
}

/* --- FORMS AND INPUTS --- */
.search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  transition: border-color 0.3s;
}
.search-input:focus { border-color: var(--red-accent); outline: none; }

.sort-select {
  padding: 14px 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
}
.sort-select:focus { border-color: var(--red-accent); outline: none; }

.pill {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.pill:hover { border-color: var(--text-primary); color: white; }
.pill.active { background: var(--red-accent); border-color: var(--red-accent); color: white; }

.form-input {
  width: 100%;
  padding: 16px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--red-accent); outline: none; }
/* CYBERDAY ANIMATION */
.cyber-banner {
    animation: pulse-cyber 1.5s infinite;
}

@keyframes pulse-cyber {
    0% {
        box-shadow: 0 0 20px rgba(233, 30, 140, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(233, 30, 140, 0.9), 0 0 20px rgba(0, 210, 255, 0.8);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 20px rgba(233, 30, 140, 0.5);
        transform: scale(1);
    }
}
