/* ==========================================================================
   FSTORE - Gamer Modern Dark Design System
   Inspired by hrventas.shop & recargape.com
   ========================================================================== */

:root {
  --bg-primary: #090b10;
  --bg-secondary: #11141e;
  --bg-card: rgba(22, 27, 39, 0.85);
  --bg-card-hover: rgba(30, 37, 54, 0.95);
  --bg-glass: rgba(18, 22, 33, 0.7);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.4);
  --border-active: #00f2fe;

  --neon-cyan: #00f2fe;
  --neon-purple: #8b5cf6;
  --neon-emerald: #10b981;
  --neon-amber: #f59e0b;
  --neon-rose: #f43f5e;
  --neon-gold: #fbbf24;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-card: linear-gradient(180deg, rgba(30, 38, 56, 0.5) 0%, rgba(15, 19, 29, 0.8) 100%);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-heading: 'Rajdhani', 'Outfit', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  overflow-x: clip !important;
  width: 100% !important;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 242, 254, 0.07) 0%, transparent 45%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e2638;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* ==========================================================================
   Header & Navbar (Rediseño Luxury Gamer con Topbar y Logo Prominente)
   ========================================================================== */

/* Top Utility Banner / Barra Superior de Confianza */
.header-topbar {
  background: rgba(7, 10, 18, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0;
  font-size: 0.78rem;
  color: #94a3b8;
  position: relative;
  z-index: 1001;
}

.topbar-container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.topbar-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.3px;
}

.topbar-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.topbar-item-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #cbd5e1;
  font-weight: 600;
}

.topbar-item-feature b {
  color: #00f2fe;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.15);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: #22c55e;
}

.topbar-link svg {
  fill: #22c55e;
}

.topbar-currency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  color: #f1f5f9;
  font-weight: 700;
}

/* ==========================================================================
   Header Principal AAA Gaming Store (Senior Master Architecture)
   ========================================================================== */
.site-header,
.site-header.master-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 80px !important;
  min-height: 80px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(10, 15, 26, 0.94) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5) !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  transition: background 0.3s ease !important;
}

.nav-container {
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 2rem !important;
  height: 100% !important;
}

/* Zona 1: Marca y Pestañas de Navegación */
.header-left-zone {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-shrink: 0 !important;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease !important;
}

.navbar-brand:hover {
  transform: scale(1.03) !important;
}

.navbar-brand-img,
.brand-logo-img,
img.brand-logo-img,
.brand-logo img {
  height: 72px !important;
  max-height: 74px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7)) brightness(1.15) !important;
}

.header-nav-divider {
  width: 1px !important;
  height: 26px !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.header-nav-tabs {
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.nav-tab-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  color: #94a3b8 !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  position: relative !important;
}

.nav-tab-item:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.nav-tab-item.active {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.08) !important;
}

.nav-tab-item.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -14px !important;
  left: 14px !important;
  right: 14px !important;
  height: 2px !important;
  background: #38bdf8 !important;
  box-shadow: 0 0 10px #38bdf8 !important;
  border-radius: 2px !important;
}

.tab-icon {
  color: currentColor !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Zona 2: Buscador Inteligente Central */
.header-center-zone {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.navbar-search-card {
  width: 100% !important;
  max-width: 480px !important;
  height: 42px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.25s ease !important;
}

.navbar-search-card:focus-within {
  background: rgba(20, 28, 48, 0.95) !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2), 0 0 16px rgba(2, 132, 199, 0.15) !important;
}

.navbar-search-icon {
  color: #38bdf8 !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.navbar-search-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  color: #f8fafc !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  outline: none !important;
  padding: 0 !important;
}

.navbar-search-input::placeholder {
  color: #64748b !important;
  font-size: 0.88rem !important;
}

.home-search-clear {
  display: none !important;
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  padding: 2px !important;
  font-size: 0.8rem !important;
}

.home-search-kbd {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #94a3b8 !important;
  padding: 2px 7px !important;
  border-radius: 5px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  user-select: none !important;
  flex-shrink: 0 !important;
}

/* Zona 3: Suite de Acciones y Usuario */
.header-right-zone {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  flex-shrink: 0 !important;
}

.nav-currency-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  padding: 0 12px !important;
  height: 40px !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  user-select: none !important;
  white-space: nowrap !important;
}

.btn-nav-search-toggle {
  display: none !important;
}

/* Botón Mis Compras VIP CTA */
.btn-nav-vip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border: 1px solid #38bdf8 !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  padding: 0 16px !important;
  height: 40px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 12px rgba(2, 132, 199, 0.35) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.btn-nav-vip:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.55) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* Botón Rastrear Pedido (Para clientes registrados y no registrados) */
.btn-nav-track {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(14, 165, 233, 0.1) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  color: #38bdf8 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  padding: 0 14px !important;
  height: 40px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.2) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.btn-nav-track:hover {
  background: rgba(14, 165, 233, 0.22) !important;
  border-color: #38bdf8 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* ==========================================================================
   MODAL DE BÚSQUEDA MÓVIL/TABLET DE ALTO IMPACTO (INFALIBLE & ROBUSTO)
   ========================================================================== */
.fstore-search-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: none;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.fstore-search-modal.is-active {
  display: flex !important;
}

.fstore-search-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(3, 7, 18, 0.88) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 1 !important;
}

.fstore-search-modal-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  background: #090f1d !important;
  border-bottom: 2px solid #38bdf8 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(56, 189, 248, 0.25) !important;
  padding: 12px 14px !important;
  box-sizing: border-box !important;
  animation: fstoreSearchSlideDown 0.22s ease-out !important;
}

@keyframes fstoreSearchSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fstore-search-modal-form {
  display: flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.45) !important;
  border-radius: 12px !important;
  padding: 0 10px !important;
  height: 48px !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

.fstore-search-modal-icon {
  color: #38bdf8 !important;
  flex-shrink: 0 !important;
}

.fstore-search-modal-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  font-weight: 500 !important;
}

.fstore-search-modal-input::placeholder {
  color: #64748b !important;
}

.fstore-search-modal-clear {
  background: none !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 1.25rem !important;
  cursor: pointer !important;
  padding: 4px 6px !important;
  line-height: 1 !important;
}

.fstore-search-modal-close {
  background: rgba(239, 68, 68, 0.16) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  color: #fca5a5 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.15s ease !important;
}

.fstore-search-modal-close:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  color: #ffffff !important;
}

/* En Móvil/Tablet: Cuando NO está logueado, Rastrear y Mis Compras se muestran CON ICONOS NO MÁS */
@media (max-width: 1024px) {
  .btn-nav-icon-only-mobile {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    justify-content: center !important;
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  .btn-nav-icon-only-mobile .btn-nav-label {
    display: none !important;
  }
}

/* Píldora de Billetera Gamer y Recarga de Saldo */
.nav-wallet-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(22, 31, 54, 0.95) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.45) !important;
  border-radius: 8px !important;
  padding: 0 10px 0 12px !important;
  height: 40px !important;
  color: #fbbf24 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2) !important;
  transition: all 0.22s ease !important;
  white-space: nowrap !important;
}

.nav-wallet-pill:hover {
  border-color: #f59e0b !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(22, 31, 54, 1) 100%) !important;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.btn-quick-recharge {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.15s ease !important;
  white-space: nowrap !important;
}

.nav-wallet-pill:hover .btn-quick-recharge {
  filter: brightness(1.15) !important;
  transform: scale(1.03) !important;
}

/* Botón Iniciar Sesión / Menú de Usuario */
.btn-nav-user {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #f8fafc !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  padding: 0 16px !important;
  height: 40px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  user-select: none !important;
}

.btn-nav-user:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* User Dropdown Component */
.user-nav-dropdown-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.btn-nav-user.logged-in {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.85)) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.15) !important;
  padding: 0 12px 0 8px !important;
  color: #ffffff !important;
}

.btn-nav-user.logged-in:hover,
.user-nav-dropdown-wrapper.active .btn-nav-user.logged-in {
  border-color: #38bdf8 !important;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.95)) !important;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25) !important;
}

.user-avatar-badge {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0284c7, #38bdf8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4) !important;
}

.user-avatar-badge.admin-badge {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5) !important;
}

.user-avatar-badge img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.online-indicator {
  position: absolute !important;
  bottom: -1px !important;
  right: -1px !important;
  width: 8px !important;
  height: 8px !important;
  background: #22c55e !important;
  border: 1.5px solid #0b101b !important;
  border-radius: 50% !important;
}

.user-display-name {
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  color: #f8fafc !important;
  max-width: 110px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.chevron-icon {
  transition: transform 0.25s ease !important;
  color: #94a3b8 !important;
}

.user-nav-dropdown-wrapper.active .chevron-icon {
  transform: rotate(180deg) !important;
  color: #38bdf8 !important;
}

/* Asegurar que la barra superior y el menú de usuario nunca se corten ni queden debajo */
.site-header,
.site-header.master-header,
.nav-container,
.header-right-zone,
.user-nav-dropdown-wrapper {
  overflow: visible !important;
}

.site-header:has(.user-nav-dropdown-wrapper.active),
.site-header.has-active-menu {
  z-index: 999999 !important;
}

/* Floating Menu */
.user-dropdown-floating-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  width: 270px !important;
  background: rgba(13, 19, 33, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(56, 189, 248, 0.25) !important;
  padding: 10px !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(0.98) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.user-nav-dropdown-wrapper.active .user-dropdown-floating-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.user-dropdown-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 8px 12px 8px !important;
}

.user-meta-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0284c7, #38bdf8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  flex-shrink: 0 !important;
}

.user-meta-avatar.admin-avatar {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
}

.user-meta-avatar img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.user-meta-info {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.user-full-name {
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.user-email-text {
  font-size: 0.75rem !important;
  color: #94a3b8 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 4px !important;
}

.user-role-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  width: fit-content !important;
}

.user-role-pill.role-customer {
  background: rgba(56, 189, 248, 0.15) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.user-role-pill.role-admin {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
}

.dropdown-menu-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  margin: 6px 0 !important;
}

.user-dropdown-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.user-dropdown-nav-list a.dropdown-item,
.dropdown-item.logout-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 12px !important;
  border-radius: 8px !important;
  color: #cbd5e1 !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.user-dropdown-nav-list a.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
  transform: translateX(3px) !important;
}

.user-dropdown-nav-list a.dropdown-item.admin-access {
  color: #fbbf24 !important;
}

.user-dropdown-nav-list a.dropdown-item.admin-access:hover {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #f59e0b !important;
}

.dropdown-item.logout-link {
  color: #ef4444 !important;
  margin-top: 4px !important;
}

.dropdown-item.logout-link:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #f87171 !important;
  transform: translateX(3px) !important;
}

@media (max-width: 1200px) {
  .navbar-search-wrapper {
    max-width: 380px;
  }
  .navbar-quick-trends {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-topbar {
    display: none;
  }
  .navbar-search-wrapper {
    max-width: 300px;
  }
  .nav-action-support {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    padding: 0.65rem 0;
  }
  .nav-container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .navbar-search-wrapper {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 0.35rem;
  }
  .nav-action-link span:not(.nav-action-icon) {
    display: none;
  }
}

/* ==========================================================================
   Compact Header Strip & Multigame Bar
   ========================================================================== */
.compact-hero-strip {
  max-width: 1200px;
  margin: 0.75rem auto 1.25rem;
  padding: 0 1.25rem;
}

.compact-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  background: linear-gradient(90deg, rgba(23, 29, 44, 0.95) 0%, rgba(13, 16, 25, 0.98) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.compact-hero-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.compact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.compact-hero-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.compact-hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compact-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.compact-hero-trust span {
  color: var(--neon-emerald);
  font-weight: 700;
}

/* ==========================================================================
   Game Navigation Bar (Multigame Compact)
   ========================================================================== */
.games-tab-container {
  max-width: 1200px;
  margin: 0 auto 1.25rem;
  padding: 0 1.25rem;
}

.games-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.games-tabs::-webkit-scrollbar {
  display: none;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.game-tab.active, .game-tab:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
}

.game-tab-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
}

/* ==========================================================================
   Catalog & Purchase Step Layout
   ========================================================================== */
.main-content {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
  width: 92%;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Product Grid / Packages Grid (Balanced & Dynamic Grid)
   ========================================================================== */
.packages-grid,
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  padding-top: 8px;
}

@media (max-width: 1200px) {
  .packages-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 768px) {
  .packages-grid,
  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding-top: 6px !important;
  }
}

/* Compact & Elegant Product Package Card (Grandes y Elegantes) */
.product-pack-card,
.package-card,
.product-card {
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.10) 0%, rgba(11, 14, 20, 0.32) 25%, rgba(10, 10, 15, 0.88) 65%, rgba(10, 10, 15, 0.98) 100%), 
              url('../images/fondo_free.jpg') center 20px / 96% auto no-repeat #0b0e14;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.10) 0%, rgba(11, 14, 20, 0.32) 25%, rgba(10, 10, 15, 0.88) 65%, rgba(10, 10, 15, 0.98) 100%), 
              url('assets/images/fondo_free.jpg') center 20px / 96% auto no-repeat #0b0e14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px !important;
  min-height: 270px !important;
  padding: 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  cursor: pointer !important;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  user-select: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.product-pack-card:hover,
.package-card:hover,
.product-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(245, 158, 11, 0.8) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35), 0 10px 25px rgba(0, 0, 0, 0.6) !important;
}

.product-pack-card.selected,
.package-card.selected,
.product-card.selected {
  border-color: #f59e0b !important;
  border-width: 2px !important;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.15) 0%, rgba(11, 14, 20, 0.18) 25%, rgba(10, 10, 15, 0.82) 65%, rgba(10, 10, 15, 0.98) 100%), 
              url('assets/images/fondo_free.jpg') center 18px / 92% auto no-repeat #0b0e14 !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.45), 0 0 35px rgba(245, 158, 11, 0.25), inset 0 0 15px rgba(245, 158, 11, 0.12) !important;
}

.product-pack-card.selected::after,
.package-card.selected::after,
.product-card.selected::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #f59e0b;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.9);
  border: 2px solid #11141b;
  z-index: 10;
}

/* Render 3D de Diamantes y Pases (150px) */
.pack-render-wrap {
  width: 100% !important;
  height: 155px !important;
  min-height: 155px !important;
  flex: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px auto !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.product-pack-card img,
.package-card img,
.pack-render-img,
.product-card img {
  height: 150px !important;
  max-height: 150px !important;
  width: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.65)) !important;
  transition: transform 0.28s ease, filter 0.28s ease !important;
}

.product-pack-card:hover img,
.package-card:hover img,
.product-card:hover .pack-render-img {
  transform: translateY(-5px) scale(1.06) !important;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.85)) !important;
}

/* Abajo: Información de Diamantes y Precios */
.pack-info-bottom,
.pack-top {
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  gap: 6px !important;
  z-index: 2;
}

.pack-amount-line {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  line-height: 1.25 !important;
}

.pack-amount,
.package-amount {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9) !important;
  line-height: 1.1 !important;
}

.pack-unit,
.package-unit {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin-top: 3px !important;
}

.pack-pricing-line,
.pack-bottom {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 4px !important;
  width: 100% !important;
}

.pack-old-price {
  font-size: 15px !important;
  color: #64748b !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.pack-price,
.package-price {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #f59e0b !important;
  text-shadow: 0 0 14px rgba(245, 158, 11, 0.35) !important;
  line-height: 1.1 !important;
}


/* Fallback legacy classes */
.product-icon-wrap {
  width: 44px;
  height: 44px;
  margin: 0.4rem auto 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-diamond-img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.product-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
}

.price-original {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(13, 16, 25, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  background: rgba(18, 23, 35, 0.95);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Payment Method Selector */
.payment-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: rgba(15, 19, 29, 0.6);
  transition: var(--transition);
}

.payment-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.payment-card.selected {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
}

.payment-badge-yape {
  background: #742284;
  color: #fff;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
}

.payment-badge-plin {
  background: #00a9e0;
  color: #fff;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
}

/* ==========================================================================
   Order Summary Sticky Sidebar
   ========================================================================== */
.order-summary-card {
  position: sticky;
  top: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.summary-row.highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.summary-total {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0e14;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  padding: 1.05rem 1rem;
  margin-top: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 22px rgba(245, 158, 11, 0.45), 0 0 14px rgba(217, 119, 6, 0.3);
  transition: var(--transition);
}

.btn-checkout:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.65), 0 0 20px rgba(217, 119, 6, 0.5);
  color: #000;
}

.btn-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(1);
  box-shadow: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-disclaimer {
  max-width: 600px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Real-Time Player ID Validation Badges & Spinners
   ========================================================================== */
.validation-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 242, 254, 0.2);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spinLoader 0.75s linear infinite;
  display: inline-block;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

.validation-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  animation: fadeInValidation 0.25s ease-out forwards;
}

@keyframes fadeInValidation {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.validation-badge.loading {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
}

.validation-badge.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.2);
}

.validation-badge.success strong {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.validation-badge.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.2);
}

.validation-badge.warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

/* ==========================================================================
   Conditional Package Locking & Micro-Animations
   ========================================================================== */
.product-card.locked {
  opacity: 0.82;
  filter: saturate(0.85);
  cursor: pointer;
  position: relative;
}

.product-card.locked:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 113, 113, 0.45);
}

/* Shake Animation for Player ID Input */
@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-7px); }
  30%, 60%, 90% { transform: translateX(7px); }
}

.input-shake {
  animation: inputShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
  border-color: #f87171 !important;
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.6) !important;
}

/* Flash / Glow when packages unlock */
@keyframes unlockGlow {
  0% {
    box-shadow: 0 0 0 rgba(0, 242, 254, 0);
    border-color: var(--border-color);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.85);
    border-color: var(--neon-cyan);
    transform: translateY(-4px) scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 242, 254, 0);
    border-color: var(--border-color);
    transform: translateY(0) scale(1);
  }
}

.product-card.unlocked-pulse {
  animation: unlockGlow 0.9s ease-out;
}

/* ==========================================================================
   2-Column Split Layout (game.php) - Estilo Codashop / LootBar Pro
   ========================================================================== */
.game-split-main {
  width: 98% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.split-checkout-layout {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
}

.split-sidebar-column {
  position: sticky !important;
  top: 85px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  z-index: 10 !important;
}

.sidebar-game-card {
  background: rgba(18, 24, 38, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.sidebar-game-cover {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 14px !important;
}

.sidebar-game-icon {
  width: 60px !important;
  height: 60px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  border: 2px solid rgba(245, 158, 11, 0.6) !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3) !important;
}

.sidebar-game-title {
  font-family: var(--font-heading) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  letter-spacing: 0.5px !important;
}

.sidebar-game-region {
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.sidebar-game-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.sidebar-step-card {
  margin-bottom: 0 !important;
  padding: 20px !important;
  background: rgba(18, 22, 34, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.sidebar-summary-card {
  margin-bottom: 0 !important;
  padding: 22px 20px !important;
  background: linear-gradient(180deg, rgba(22, 28, 44, 0.95) 0%, rgba(14, 18, 30, 0.98) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.1) !important;
}

.btn-sidebar-checkout {
  width: 100% !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: var(--font-heading) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  color: #0b0f19 !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35) !important;
}

.btn-sidebar-checkout:hover:not(:disabled) {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.55) !important;
  filter: brightness(1.1) !important;
}

.btn-sidebar-checkout:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  background: #334155 !important;
  color: #64748b !important;
  box-shadow: none !important;
}

.split-catalog-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  width: 100% !important;
}

.catalog-main-card {
  margin-bottom: 0 !important;
  padding: 24px 28px !important;
  background: rgba(18, 22, 34, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

/* Grilla de Diamantes en Columna Derecha: 3 columnas grandes */
.packages-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
}

.packages-grid.is-hidden,
.products-grid.is-hidden,
#gridDiamonds.is-hidden,
#gridPasses.is-hidden,
.packages-grid[style*="display: none"],
.products-grid[style*="display: none"] {
  display: none !important;
}

/* Pestañas de Filtro Distribuidas al 50% - 50% (Diseño Gamer Pro) */
.package-filter-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  background: rgba(14, 18, 28, 0.75) !important;
  padding: 8px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box !important;
  margin-bottom: 24px !important;
}

.package-filter-btn {
  width: 100% !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  color: #94a3b8 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.package-filter-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.package-filter-btn.active#tabDiamonds {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(0, 200, 255, 0.08) 100%) !important;
  color: #00f2fe !important;
  border: 1.5px solid #00f2fe !important;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35) !important;
}

.package-filter-btn.active#tabPasses {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.20) 0%, rgba(217, 119, 6, 0.08) 100%) !important;
  color: #f59e0b !important;
  border: 1.5px solid #f59e0b !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35) !important;
}

/* Tarjetas de Diamantes GRANDES y MÁS ALTAS con fondo oficial Free Fire */
.package-card,
.product-pack-card,
.product-card {
  min-height: 560px !important;
  padding: 34px 24px 32px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: center !important;
  text-align: center !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.05) 0%, rgba(11, 14, 20, 0.25) 25%, rgba(10, 10, 15, 0.88) 65%, rgba(10, 10, 15, 0.98) 100%), 
              url('../images/fondo_free.jpg') center top / cover no-repeat #0b0e14 !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.package-card:hover,
.product-pack-card:hover,
.product-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 158, 11, 0.95) !important;
  box-shadow: 0 0 36px rgba(245, 158, 11, 0.55), 0 16px 40px rgba(0, 0, 0, 0.8) !important;
}

.package-card.selected,
.product-pack-card.selected,
.product-card.selected {
  border-color: #f59e0b !important;
  border-width: 2.5px !important;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18) 0%, rgba(11, 14, 20, 0.20) 25%, rgba(10, 10, 15, 0.86) 65%, rgba(10, 10, 15, 0.98) 100%), 
              url('../images/fondo_free.jpg') center top / cover no-repeat #0b0e14 !important;
  box-shadow: 0 0 36px rgba(245, 158, 11, 0.65), 0 0 55px rgba(245, 158, 11, 0.35), inset 0 0 22px rgba(245, 158, 11, 0.2) !important;
}

/* Render 3D de Diamantes CENTRADO MÁS ABAJO Y MÁS GRANDE */
.pack-render-wrap {
  width: 100% !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 330px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: auto auto 12px auto !important;
  padding-top: 45px !important;
}

.package-card img,
.product-pack-card img,
.pack-render-img,
.product-card img {
  height: 310px !important;
  max-height: 310px !important;
  width: auto !important;
  max-width: 95% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.65)) !important;
  transition: transform 0.28s ease, filter 0.28s ease !important;
}

.package-card:hover img,
.product-pack-card:hover img,
.product-card:hover .pack-render-img {
  transform: translateY(-8px) scale(1.08) !important;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.85)) !important;
}

.pack-amount,
.package-amount {
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95) !important;
}

.pack-unit,
.package-unit {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-top: 4px !important;
}

.pack-pricing-line {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 8px !important;
  width: 100% !important;
}

.pack-old-price {
  font-size: 18px !important;
  color: #64748b !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
}

.pack-price,
.package-price {
  font-size: 38px !important;
  font-weight: 900 !important;
  color: #f59e0b !important;
  text-shadow: 0 0 22px rgba(245, 158, 11, 0.5) !important;
  line-height: 1.1 !important;
}

.sticky-order-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.sticky-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sticky-info-label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.sticky-info-value {
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.92rem;
}

.sticky-info-sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  user-select: none;
}

.sticky-nick-val {
  color: #34d399 !important;
}

.sticky-action-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.sticky-total-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.sticky-total-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-total-price {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: #fbbf24;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.4);
  line-height: 1;
}

.btn-sticky-checkout {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0e14;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45), 0 0 12px rgba(217, 119, 6, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-sticky-checkout:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 6px 26px rgba(245, 158, 11, 0.65), 0 0 18px rgba(217, 119, 6, 0.5);
  color: #000;
}

.btn-sticky-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
  box-shadow: none;
  transform: none;
}

@media (max-width: 768px) {
  .sticky-checkout-bar {
    padding: 10px 16px env(safe-area-inset-bottom, 10px) 16px !important;
  }
  .sticky-checkout-container {
    gap: 0.85rem;
  }
  .sticky-order-info {
    font-size: 0.82rem;
    gap: 0.45rem;
  }
  .sticky-total-price {
    font-size: 1.35rem;
  }
  .btn-sticky-checkout {
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .sticky-checkout-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(11, 15, 25, 0.97) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 10px 14px env(safe-area-inset-bottom, 10px) 14px !important;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7) !important;
  }

  .sticky-checkout-container {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .sticky-order-info {
    display: none !important; /* Oculta textos secundarios para permitir comprar con una sola mano */
  }

  .sticky-action-group {
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .sticky-total-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1px !important;
  }

  .sticky-total-label {
    font-size: 0.72rem !important;
    color: #94a3b8 !important;
  }

  .sticky-total-price {
    font-size: 1.45rem !important;
  }

  .btn-sticky-checkout {
    flex: 1 !important;
    max-width: 210px !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
    border-radius: 9px !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   Home / Game Catalog Cards (index.php)
   ========================================================================== */
.home-hero-banner {
  max-width: 1200px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 1.25rem;
}

.home-hero-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.95) 0%, rgba(10, 13, 20, 0.98) 100%);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.home-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.home-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.home-hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}

.home-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.home-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.home-trust-pill svg {
  color: var(--neon-emerald);
}

/* Games Grid */
.games-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1.25rem;
}

.games-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.games-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.15rem;
    width: 100%;
    box-sizing: border-box;
  }
}

.game-card-link {
  text-decoration: none;
  display: block;
}

.game-catalog-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 26, 38, 0.9) 0%, rgba(12, 15, 22, 0.98) 100%);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-catalog-card.active-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.22);
}

.game-catalog-card.coming-soon-card {
  opacity: 0.78;
  filter: saturate(0.85);
  cursor: default;
}

.game-card-top {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.game-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.game-catalog-card.active-card:hover .game-card-icon {
  transform: scale(1.06);
}

.game-card-info {
  flex-grow: 1;
}

.game-card-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem 0;
  line-height: 1.2;
}

.game-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.45;
  flex-grow: 1;
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.btn-game-action {
  background: var(--gradient-primary);
  color: #040914;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
  transition: var(--transition);
}

.game-catalog-card.active-card:hover .btn-game-action {
  box-shadow: 0 0 22px rgba(0, 242, 254, 0.6);
  transform: translateY(-1px);
}

.btn-game-disabled {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Free Fire Recharge Page (game.php)
   ========================================================================== */
.game-hero-section {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 1.25rem 2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.game-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(11, 14, 20, 0.82) 65%, #0b0e14 100%);
  pointer-events: none;
}

.btn-back-home {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(13, 16, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.btn-back-home:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateX(-3px);
}

.game-hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-floating-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 242, 254, 0.3);
  margin-bottom: 0.9rem;
  animation: floatGameIcon 4s ease-in-out infinite;
}

@keyframes floatGameIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.game-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.35rem 0;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.game-hero-subtitle {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin: 0 0 0.85rem 0;
  font-weight: 500;
}

.game-hero-meta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Dark Card Container for Steps (border-radius: 16px; border: 1px solid rgba(255,255,255,0.08)) */
.step-card-dark {
  background: rgba(18, 22, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.step-card-dark .step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.step-circle-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #040914;
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.step-header-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Styled UID Input & Button */
.uid-input-wrap {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

@media (max-width: 640px) {
  .uid-input-wrap {
    flex-direction: column;
  }
}

.uid-styled-input {
  flex-grow: 1;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  padding: 0.85rem 1.1rem;
  transition: var(--transition);
}

.uid-styled-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
  background: rgba(12, 16, 26, 0.95);
}

.btn-verify-uid {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(0, 242, 254, 0.25) 100%);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.4);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-verify-uid:hover {
  background: var(--gradient-primary);
  color: #040914;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}

/* Package Category Filter Tabs */
.package-filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: rgba(10, 13, 20, 0.7);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.package-filter-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.package-filter-btn.active {
  background: rgba(0, 242, 254, 0.15);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
  border: 1px solid rgba(0, 242, 254, 0.35);
}

.package-filter-btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Home Redesign: Immersive Dark Gamer Store (Codashop & LootBar Premium)
   ========================================================================== */
body.home-page-dark,
body.home-page {
  background: 
    radial-gradient(circle at 20% 15%, rgba(2, 132, 199, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 25%, rgba(245, 158, 11, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    #0b0f19;
  background-attachment: fixed;
  color: #f8fafc;
  min-height: 100vh;
}

body.home-page-dark .site-header,
body.home-page .site-header {
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero Carousel Slider (Grand Scale 1600px - Vibrant Full Color) */
.hero-slider-section {
  width: 94%;
  max-width: 1600px;
  margin: 20px auto 25px auto;
  padding: 0 20px;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.1);
  background: #0b0f19;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  filter: brightness(1.08) contrast(1.04);
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 18, 0.92) 0%, rgba(7, 10, 18, 0.65) 42%, rgba(7, 10, 18, 0.05) 75%, transparent 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2.5rem 3.5rem;
}

.hero-slide-badges {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.hero-badge-neon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f17;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.55);
}

.hero-badge-cyan {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-slide-title span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide-desc {
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #0b0f17;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.85rem 1.9rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
  transition: all 0.25s ease;
}

.hero-slide-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.65);
  color: #000;
}

/* Slider Controls - Flechas Removidas y Dots Flotantes de Lujo */
.slider-arrow-btn {
  display: none !important;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 15, 25, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.25);
}

.slider-dot.active {
  width: 32px;
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.9);
}

/* Search Bar (Crystal Glass Gamer) */
.home-search-section {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto 1.35rem;
  padding: 0 20px;
}

.home-search-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.6rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.home-search-card:focus-within {
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 242, 254, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.home-search-icon {
  color: #94a3b8;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
}

.home-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: #f8fafc;
  outline: none;
  font-family: var(--font-body);
}

.home-search-input::placeholder {
  color: #94a3b8;
}

.home-search-kbd {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.18rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  user-select: none;
}

.home-search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  cursor: pointer;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  border: none;
  transition: background 0.2s;
}

.home-search-clear:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Category Navigation Segmented Rail (Modern Gamer Dock) */
.category-pills-bar {
  width: 98%;
  max-width: 1600px;
  margin: 0 auto 2rem;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-pills-bar::-webkit-scrollbar {
  display: none;
}

.category-rail-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 17, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.category-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.category-pill.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-color: #38bdf8;
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.45);
}

/* Game Catalog Fluid Wide Grid Section */
.catalog-main-section {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.catalog-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.catalog-section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.catalog-section-title span {
  color: #00f2fe;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.35);
}

.catalog-badge-count {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00f2fe;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  display: none;
}

/* Grilla Responsiva Proporcionada con Auto-Fill (Formato 4 Columnas / Tarjetas Grandes) */
.catalog-grid-6col,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Premium Game Card (Large Scale - Glowing Hover) */
.game-catalog-item {
  text-decoration: none;
  display: block;
}

.game-card-premium {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  position: relative;
}

.game-card-premium:hover {
  transform: translateY(-8px) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.25) !important;
}

.game-card-cover {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #0b0f19;
}

.game-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card-premium:hover .game-card-cover img {
  transform: scale(1.08);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.badge-discount-neon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
}

.badge-hot-neon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f17;
}

.badge-new-neon {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  color: #ffffff;
}

.badge-popular-neon {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #ffffff;
}

.game-card-body {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 900;
  color: #f8fafc;
  margin: 0 0 0.45rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-trust {
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.game-card-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.game-card-price-hint {
  font-size: 0.82rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}

.game-card-price-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #fbbf24;
}

.game-card-action-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f2fe;
  transition: all 0.2s ease;
}

.game-card-premium:hover .game-card-action-icon {
  background: #fbbf24;
  color: #000;
  transform: translateX(3px);
}

/* No Search Results Notice */
.no-search-results {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #121826;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  max-width: 500px;
  margin: 1.5rem auto;
}

.no-search-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.no-search-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.4rem;
}

.no-search-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.btn-reset-search {
  background: #0284c7;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-reset-search:hover {
  background: #0369a1;
}

/* Trust & Guarantee Section */
.trust-features-section {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto 4.5rem;
  padding: 0 20px;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .trust-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .trust-features-grid {
    grid-template-columns: 1fr;
  }
}

.trust-feature-card {
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-cyan {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
}

.trust-icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.trust-icon-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.trust-icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.3rem;
}

.trust-card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* ==========================================================================
   Full Store Footer (Codashop & LootBar E-Commerce Style)
   ========================================================================== */
.store-footer-premium {
  background: #080b11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  padding: 4rem 1.25rem 2.5rem;
  color: #94a3b8;
}

.store-footer-container {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.store-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 980px) {
  .store-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .store-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-title span {
  color: #00f2fe;
}

.footer-brand-p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  user-select: none;
}

.pay-badge:hover {
  transform: translateY(-2px);
}

.pay-badge-yape {
  background: #742284;
  color: #ffffff;
}

.pay-badge-plin {
  background: #00d2c4;
  color: #080b11;
}

.pay-badge-bcp {
  background: #002a8f;
  color: #ffffff;
}

.pay-badge-bcp span {
  color: #ff5f00;
}

.pay-badge-bbva {
  background: #004481;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #00f2fe;
  transform: translateX(4px);
}

.footer-support-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 0.85rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.store-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: #64748b;
}

.store-footer-disclaimer {
  max-width: 650px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-slider-container {
    height: 300px;
  }
  .hero-slide-content {
    padding: 1.5rem 1.25rem;
  }
  .slider-arrow-btn {
    display: none;
  }
}

/* ==========================================================================
   Fichas de Producto E-commerce (Estilo Retail / Plaza Vea)
   ========================================================================== */
.catalog-grid,
.catalog-grid-6col,
.games-grid,
#gamesCatalogGrid,
[class*='grid'] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 50px auto;
  padding: 0 16px;
}

@media (max-width: 1100px) {
  .catalog-grid,
  .catalog-grid-6col,
  .games-grid,
  #gamesCatalogGrid,
  [class*='grid'] {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .catalog-grid,
  .catalog-grid-6col,
  .games-grid,
  #gamesCatalogGrid,
  [class*='grid'] {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.game-catalog-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Contenedor de la Ficha de Producto Retail (#111827, 14px radius, padding equilibrado) */
.product-card,
.game-card,
.game-card-premium {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.product-card:hover,
.game-card:hover,
.game-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.15);
}

/* Cabecera de la Ficha: Portada (height: 260px) con Badges Flotantes */
.product-card-cover,
.game-card-cover {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  background: #0b0f19;
  margin-bottom: 14px;
}

.product-card-img,
.product-card-cover img,
.game-card-cover img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-img,
.game-card:hover .game-card-cover img {
  transform: scale(1.04);
}

/* Badge Flotante Superior Izquierdo: Descuento */
.badge-retail-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.5);
  text-transform: uppercase;
}

/* Badge Flotante Superior Derecho: Entrega Automática */
.badge-retail-delivery {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

/* Cuerpo de Información de la Ficha */
.product-card-body,
.game-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.product-card-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-card-title,
.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.25;
  margin: 0 0 6px 0;
  letter-spacing: 0.2px;
}

.product-card-rating,
.game-card-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 12px;
}

.product-card-rating .rating-divider {
  color: rgba(255, 255, 255, 0.2);
}

.product-card-rating .product-card-sales {
  color: #94a3b8;
  font-weight: 500;
}

/* Fila de Precios (Anterior Tachado + Actual Dorado) */
.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.price-old {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
}

.price-amount,
.game-card-price-val {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 0.3px;
}

/* Botón Ancho de Extremo a Extremo [⚡ RECARGAR AHORA] */
.btn-retail-recharge {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f19;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all 0.22s ease;
  display: block;
}

.product-card:hover .btn-retail-recharge,
.game-card-premium:hover .btn-retail-recharge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP INFINITE CYBER MARQUEE TICKER (AAA GAMING E-COMMERCE)
   ========================================================================== */
.top-announcement-bar {
  background: #040711;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 38px;
  line-height: 38px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #cbd5e1;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1002;
}

.top-announcement-bar .ticker-marquee-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  cursor: default;
}

.top-announcement-bar .ticker-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: tickerRunLeft 34s linear infinite;
  will-change: transform;
}

.top-announcement-bar .ticker-marquee-viewport:hover .ticker-marquee-track {
  animation-play-state: paused;
}

@keyframes tickerRunLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.top-announcement-bar .ticker-marquee-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-announcement-bar .ticker-item {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #cbd5e1;
  font-size: 0.8rem;
  flex-shrink: 0;
  text-decoration: none;
}

.top-announcement-bar .ticker-item strong {
  color: #ffffff;
  font-weight: 700;
}

.top-announcement-bar .ticker-item svg {
  flex-shrink: 0;
}

.top-announcement-bar .ticker-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: livePulseDot 1.8s infinite ease-in-out;
  display: inline-block;
  flex-shrink: 0;
}

.top-announcement-bar .ticker-item-link {
  transition: color 0.2s ease;
}

.top-announcement-bar .ticker-item-link:hover {
  color: #4ade80;
}

.top-announcement-bar .ticker-item-link:hover strong {
  color: #86efac;
}

.top-announcement-bar .ticker-sep {
  color: #38bdf8;
  font-size: 0.65rem;
  opacity: 0.8;
  user-select: none;
  flex-shrink: 0;
}

/* ==========================================================================
   BILLETERA GAMER & SALDO PRECARGADO (Cyber-Glass Component)
   ========================================================================== */
.nav-wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(22, 31, 54, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 8px;
  padding: 0 10px 0 12px;
  height: 38px;
  color: #fbbf24;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.nav-wallet-pill:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(22, 31, 54, 1) 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-quick-recharge {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
  display: inline-flex;
  align-items: center;
  transition: all 0.15s ease;
}

.nav-wallet-pill:hover .btn-quick-recharge {
  filter: brightness(1.15);
  transform: scale(1.03);
}

/* Tarjeta Prioritaria de Pago con Saldo en Checkout */
.payment-card.payment-card-wallet {
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 27, 45, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.payment-card.payment-card-wallet:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.payment-card.payment-card-wallet.selected {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(24, 32, 54, 0.95) 100%);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.45);
}

.payment-badge-wallet {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.wallet-pay-banner-instant {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-instant-wallet-pay {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
  transition: all 0.22s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-instant-wallet-pay:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.65);
  filter: brightness(1.1);
}

.btn-instant-wallet-pay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   MÓDULO DE RASTREO Y STEPPER DE PEDIDOS (CYBER-GLASS PRO)
   ========================================================================== */
.tracking-main-wrapper {
  width: 96%;
  max-width: 1060px;
  margin: 32px auto 80px auto;
}

/* Hero Card del Rastreador */
.tracking-hero-box {
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12) 0%, rgba(15, 23, 42, 0.95) 75%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(56, 189, 248, 0.06);
  margin-bottom: 28px;
}

.tracking-radar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.tracking-radar-badge .live-radar-dot {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38bdf8;
  animation: radarDotPulse 1.8s infinite;
}

@keyframes radarDotPulse {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 4px #38bdf8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #38bdf8; }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 4px #38bdf8; }
}

.tracking-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tracking-hero-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  max-width: 620px;
  margin: 0 auto 26px auto;
  line-height: 1.5;
}

/* Buscador Cyber-Glass */
.tracking-search-card {
  max-width: 740px;
  margin: 0 auto;
  background: rgba(10, 15, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.tracking-search-card:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25), 0 10px 35px rgba(0, 0, 0, 0.7);
}

.tracking-search-icon {
  color: #38bdf8;
  padding-left: 14px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tracking-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 6px;
}

.tracking-search-input::placeholder {
  color: #64748b;
  font-weight: 500;
}

.btn-tracking-submit {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid #38bdf8;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.45);
  transition: all 0.2s ease;
}

.btn-tracking-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.6);
  transform: translateY(-1px);
}

.btn-tracking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Quick Chips / Sugerencias */
.tracking-quick-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tracking-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.tracking-chip:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

/* Pilares de Confianza en el Rastreador */
.tracking-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.tracking-trust-item {
  background: rgba(18, 24, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tracking-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tracking-trust-info h4 {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 3px 0;
}

.tracking-trust-info p {
  color: #94a3b8;
  font-size: 0.78rem;
  margin: 0;
}

/* Sección de Pedidos Recientes del Cliente */
.tracking-recent-section {
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 32px;
}

.recent-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.recent-section-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.recent-order-pill-card {
  background: rgba(12, 17, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-order-pill-card:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.recent-pill-code {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #38bdf8;
  margin: 0 0 2px 0;
}

.recent-pill-details {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* ==========================================================================
   TARJETA DE ORDEN Y STEPPER VISUAL DE PROGRESO
   ========================================================================== */
.order-tracking-card {
  background: rgba(16, 22, 36, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.order-tracking-card.status-completed {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.15);
}

.order-tracking-card.status-processing {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(56, 189, 248, 0.18);
}

.order-tracking-card.status-pending_verification {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.15);
}

.order-tracking-card.status-rejected {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(239, 68, 68, 0.18);
}

/* Header de la Tarjeta */
.order-card-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 26px;
}

.order-code-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-code-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.btn-copy-code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.18s ease;
}

.btn-copy-code:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #ffffff;
}

/* Insignias de Estado VIP */
.tracking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tracking-status-badge.badge-completed {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #34d399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
}

.tracking-status-badge.badge-processing {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

.tracking-status-badge.badge-pending {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.tracking-status-badge.badge-rejected {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #f87171;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

.tracking-status-badge.badge-queued,
.badge-queued {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
}


/* ==========================================================================
   TRACKER EJECUTIVO VIP DE ALTA GAMA (DISEÑO PROFESIONAL FSTORE)
   ========================================================================== */
.order-tracking-card {
  background: rgba(16, 22, 36, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.order-tracking-card.state-completed {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.12);
}

.order-tracking-card.state-processing {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(56, 189, 248, 0.15);
}

.order-tracking-card.state-pending {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.12);
}

.order-tracking-card.state-rejected {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(239, 68, 68, 0.15);
}

/* 1. Header Ejecutivo */
.luxury-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.luxury-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.luxury-badge-official {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  padding: 2px 8px;
  border-radius: 6px;
}

.luxury-meta-sep {
  color: #475569;
  font-size: 0.8rem;
}

.luxury-date-label {
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 500;
}

.luxury-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.luxury-order-code {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn-luxury-copy {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-luxury-copy:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Insignia de Estado Viva */
.luxury-live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.luxury-live-status-pill.state-completed {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.2);
}

.luxury-live-status-pill.state-processing {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.luxury-live-status-pill.state-pending {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.luxury-live-status-pill.state-rejected {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.2);
}

.luxury-status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  animation: pulseStatusDot 1.8s infinite ease-in-out;
}

/* 2. Panel de Estado Hero Ejecutivo */
.luxury-status-hero {
  background: linear-gradient(135deg, rgba(17, 24, 42, 0.85) 0%, rgba(10, 15, 28, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.luxury-status-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #38bdf8;
  box-shadow: 0 0 12px #38bdf8;
}

.luxury-status-hero.state-completed::before { background: #10b981; box-shadow: 0 0 12px #10b981; }
.luxury-status-hero.state-processing::before { background: #38bdf8; box-shadow: 0 0 12px #38bdf8; }
.luxury-status-hero.state-pending::before { background: #f59e0b; box-shadow: 0 0 12px #f59e0b; }
.luxury-status-hero.state-rejected::before { background: #ef4444; box-shadow: 0 0 12px #ef4444; }

.luxury-hero-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-status-hero.state-completed .luxury-hero-icon-box {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.luxury-status-hero.state-processing .luxury-hero-icon-box {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.luxury-status-hero.state-pending .luxury-hero-icon-box {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.luxury-status-hero.state-rejected .luxury-hero-icon-box {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.luxury-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.luxury-hero-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.luxury-hero-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.luxury-status-hero.state-completed .luxury-hero-tag { color: #34d399; }
.luxury-status-hero.state-processing .luxury-hero-tag { color: #38bdf8; }
.luxury-status-hero.state-pending .luxury-hero-tag { color: #fbbf24; }
.luxury-status-hero.state-rejected .luxury-hero-tag { color: #f87171; }

.luxury-hero-sla {
  font-size: 0.74rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 9px;
  border-radius: 9999px;
}

.luxury-hero-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.luxury-hero-desc {
  font-size: 0.86rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
}

/* 3. Tracker Horizontal de Hitos */
.luxury-timeline-wrapper {
  margin: 28px 0 26px 0;
  width: 100%;
  position: relative;
}

.luxury-timeline-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  position: relative;
  margin: 0 36px 20px 36px;
  overflow: hidden;
}

.luxury-timeline-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.luxury-timeline-fill.state-completed {
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.6);
}

.luxury-timeline-fill.state-processing {
  background: linear-gradient(90deg, #10b981 0%, #38bdf8 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
}

.luxury-timeline-fill.state-pending {
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 100%);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.6);
}

.luxury-timeline-fill.state-rejected {
  background: linear-gradient(90deg, #10b981 0%, #ef4444 100%);
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
}

.luxury-milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.luxury-milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.luxury-milestone-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(20, 28, 48, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #64748b;
  transition: all 0.25s ease;
  position: relative;
}

.luxury-milestone-item.state-done .luxury-milestone-circle {
  background: #10b981;
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.5);
}

.luxury-milestone-item.state-active .luxury-milestone-circle {
  background: #1e293b;
  border-color: #f59e0b;
  color: #fbbf24;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
}

.luxury-milestone-radar {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulseMilestoneDot 1.4s infinite ease-in-out;
}

.luxury-milestone-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.luxury-milestone-item.state-rejected .luxury-milestone-circle {
  background: #7f1d1d;
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.5);
}

.luxury-milestone-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.luxury-milestone-title {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.luxury-milestone-item.state-pending .luxury-milestone-title,
.luxury-milestone-item.state-stopped .luxury-milestone-title {
  color: #64748b;
}

.luxury-milestone-sub {
  font-size: 0.76rem;
  color: #94a3b8;
}

.luxury-milestone-item.state-done .luxury-milestone-sub {
  color: #34d399;
  font-weight: 600;
}

.luxury-milestone-item.state-active .luxury-milestone-sub {
  color: #fbbf24;
  font-weight: 700;
}

.luxury-milestone-item.state-rejected .luxury-milestone-sub {
  color: #f87171;
  font-weight: 700;
}

/* 4. Cuadrícula de Especificaciones */
.luxury-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.luxury-spec-card {
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.luxury-spec-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.luxury-spec-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.luxury-spec-game-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.luxury-spec-main-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.luxury-spec-sub-text {
  font-size: 0.76rem;
  color: #94a3b8;
  display: block;
}

.luxury-player-id-badge {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.96rem;
  font-weight: 800;
}

.btn-copy-mini {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}

.btn-copy-mini:hover {
  color: #38bdf8;
}

.luxury-spec-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fbbf24;
  display: block;
}

.luxury-spec-contact {
  font-size: 0.86rem;
  color: #f8fafc;
  font-family: monospace;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tira de Comprobantes Adjuntos */
.luxury-proof-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-luxury-voucher-link {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #38bdf8;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

.btn-luxury-voucher-link:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-luxury-voucher-link.proof-link {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.btn-luxury-voucher-link.proof-link:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: #10b981;
  color: #ffffff;
}

/* Avisos / Observaciones */
.luxury-notes-alert {
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.luxury-notes-alert.alert-rejected {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-left: 4px solid #ef4444;
}

.luxury-notes-alert.alert-info {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-left: 4px solid #38bdf8;
}

.luxury-notes-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.luxury-notes-content h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.luxury-notes-content p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
}

/* 5. Footer Ejecutivo */
.luxury-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.luxury-guarantee-tag {
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-luxury-whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
  transition: all 0.22s ease;
}

.btn-luxury-whatsapp:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 900px) {
  .luxury-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .luxury-timeline-track {
    margin: 0 20px 16px 20px;
  }
}

@media (max-width: 650px) {
  .order-tracking-card {
    padding: 18px;
  }
  .luxury-status-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }
  .luxury-milestones-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .luxury-timeline-track {
    display: none;
  }
  .luxury-specs-grid {
    grid-template-columns: 1fr;
  }
  .luxury-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .luxury-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-luxury-whatsapp {
    justify-content: center;
  }
}

.btn-track-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.25) 100%);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #4ade80;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
}

.btn-track-whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.btn-view-voucher-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view-voucher-proof:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Adaptabilidad Móvil */
@media (max-width: 768px) {
  .tracking-hero-box {
    padding: 24px 16px;
  }
  .tracking-hero-title {
    font-size: 1.65rem;
  }
  .tracking-search-card {
    flex-direction: column;
    padding: 12px;
  }
  .tracking-search-input {
    width: 100%;
  }
  .btn-tracking-submit {
    width: 100%;
    justify-content: center;
  }
  .tracking-trust-grid {
    grid-template-columns: 1fr;
  }
  .stepper-steps-track {
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }
  .stepper-steps-track::before,
  .stepper-progress-line {
    display: none;
  }
  .order-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .order-card-header-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-track-whatsapp,
  .btn-view-voucher-proof {
    justify-content: center;
  }
}

/* ==========================================================================
   BOTÓN FLOTANTE OFICIAL DE WHATSAPP (ESTILO GAMER PRO)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.whatsapp-icon-inner {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
      0 8px 24px rgba(37, 211, 102, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.35),
      inset 0 1px 1px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-status-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border: 2px solid #0b0f19;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
}

.whatsapp-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50% !important;
  border: 2px solid rgba(37, 211, 102, 0.7) !important;
  animation: waIconPulseAnim 2.2s infinite ease-out !important;
  pointer-events: none;
}

@keyframes waIconPulseAnim {
  0% { transform: scale(0.92); opacity: 0.95; }
  65% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px);
}

.floating-whatsapp-btn:hover .whatsapp-icon-inner {
  transform: scale(1.08);
  box-shadow: 
      0 14px 34px rgba(37, 211, 102, 0.65),
      0 0 25px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2dd4bf 0%, #16a34a 100%) !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.whatsapp-tooltip-pill {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
  letter-spacing: 0.2px;
}

.whatsapp-tooltip-pill::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.95);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip-pill {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
      bottom: 20px;
      right: 18px;
      width: 52px;
      height: 52px;
  }
  .whatsapp-icon-inner {
      width: 50px;
      height: 50px;
  }
  .whatsapp-tooltip-pill {
      display: none !important;
  }
}



