/* ═══════════════════════════════════════════════════════════
   TRUST (ثقة) — Premium Cyberpunk Gaming Store
   Custom CSS — No frameworks
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --bg-primary: #0F172A;
  --bg-card: #1E293B;
  --bg-footer: #0B0F19;
  --color-primary: #2563EB;
  --color-accent: #FACC15;
  --color-hot: #FF0050;
  --color-text: #FFFFFF;
  --color-text-muted: #94A3B8;
  --color-available: #22C55E;
  --color-cyan: #06B6D4;
  --font-family: 'Cairo', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-neon-blue: 0 0 20px rgba(37, 99, 235, 0.4), 0 0 40px rgba(37, 99, 235, 0.15);
  --shadow-neon-gold: 0 0 20px rgba(250, 204, 21, 0.4), 0 0 40px rgba(250, 204, 21, 0.15);
  --shadow-neon-cyan: 0 0 15px rgba(6, 182, 212, 0.5), 0 0 30px rgba(6, 182, 212, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-height: 38px;
  --header-height: 72px;
  --site-header-height: calc(var(--topbar-height) + var(--header-height));
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   SITE HEADER (TOPBAR + NAV)
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

/* Top Announcement Bar */
.topbar {
  height: var(--topbar-height);
  background: linear-gradient(90deg, #0B0F19 0%, rgba(37, 99, 235, 0.25) 50%, #0B0F19 100%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.topbar__icon {
  color: var(--color-accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.5));
  animation: topbarIconPulse 2s ease-in-out infinite;
}

.topbar__icon--end {
  animation-delay: 1s;
}

@keyframes topbarIconPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.topbar__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.topbar__text::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-left: 8px;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
  vertical-align: middle;
}

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════ */
.header {
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header--scrolled .header {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Brand (Right in RTL) */
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), #1D4ED8);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  box-shadow: var(--shadow-neon-blue);
}

.header__logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-text), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 1px;
}

.header__search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.header__search-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-blue);
}

/* Navigation Links (Center) */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-text);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: translateX(50%) scaleX(1);
}

/* Actions (Left in RTL) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.header__action-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-blue);
}

.header__badge {
  position: absolute;
  top: -2px;
  left: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #EF4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */
.products {
  padding: calc(var(--site-header-height) + 48px) 0 80px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.section-title--center {
  text-align: center;
  margin-bottom: 48px;
}

.section-title--center::after {
  right: 50%;
  transform: translateX(50%);
}

/* Filter Dropdown */
.section-header__filter {
  position: relative;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-card);
  color: var(--color-text);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 40px 10px 20px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 160px;
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-blue);
  outline: none;
}

.filter-select__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  pointer-events: none;
}

/* Product Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent, rgba(6, 182, 212, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-neon-blue), var(--shadow-card);
}

.product-card:hover::before {
  opacity: 1;
}

/* Badges */
.product-card__badges {
  display: flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge--available {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-available);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.25);
}

.badge--new {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
}

.badge--discount {
  background: rgba(250, 204, 21, 0.15);
  color: var(--color-accent);
}

.badge--hot {
  background: rgba(255, 0, 80, 0.15);
  color: var(--color-hot);
  box-shadow: 0 0 12px rgba(255, 0, 80, 0.25);
}

/* Favorite Button */
.product-card__favorite {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  color: var(--color-text-muted);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  z-index: 2;
}

.product-card:hover .product-card__favorite {
  opacity: 1;
  transform: scale(1);
}

.product-card__favorite:hover {
  color: var(--color-hot);
  box-shadow: 0 0 15px rgba(255, 0, 80, 0.4);
}

.product-card__favorite.active {
  opacity: 1;
  transform: scale(1);
  color: var(--color-hot);
}

.product-card__favorite.active i {
  font-weight: 900;
}

/* Coin Image Placeholder */
.product-card__image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.coin-placeholder {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.coin-placeholder i {
  font-size: 3.5rem;
  color: var(--color-text);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  z-index: 1;
}

.coin-placeholder__glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--color-primary), var(--color-cyan), var(--color-hot), var(--color-primary));
  opacity: 0.3;
  animation: coinSpin 6s linear infinite;
}

@keyframes coinSpin {
  to { transform: rotate(360deg); }
}

/* Card Body */
.product-card__body {
  text-align: center;
}

.product-card__brand {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 4px;
}

/* Price Tag */
.product-card__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.4);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-cyan);
  box-shadow: var(--shadow-neon-cyan);
  transition: all var(--transition);
}

.product-card:hover .product-card__price {
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.6), 0 0 50px rgba(6, 182, 212, 0.2);
}

.product-card__price i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Grid fade on category switch */
.products__grid--fade {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.products__grid--switching {
  opacity: 0;
  transform: translateY(16px);
}

/* ═══════════════════════════════════════════
   STORE CARD — Dark theme product cards
   ═══════════════════════════════════════════ */
.store-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.store-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: var(--shadow-neon-blue), var(--shadow-card);
}

.store-card__badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 0;
  background: var(--bg-card);
}

.store-card__badges .badge--discount {
  border: 1px dashed rgba(250, 204, 21, 0.5);
  background: rgba(250, 204, 21, 0.12);
  font-size: 0.65rem;
}

/* Visual top block */
.store-card__visual {
  position: relative;
  margin: 8px 12px 0;
  padding: 20px 16px 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(160deg, #1E40AF 0%, #1D4ED8 45%, #2563EB 100%);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.store-card__visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: var(--bg-card);
  border-radius: 0 0 8px 8px;
}

.store-card__visual-accent {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 4px;
  opacity: 0.9;
  transform: rotate(-12deg);
}

.store-card__visual--bigo {
  background: linear-gradient(160deg, #0C4A6E 0%, #0369A1 50%, #0EA5E9 100%);
}

.store-card__visual--pubg {
  background: linear-gradient(160deg, #1E3A5F 0%, #1E40AF 50%, #3B82F6 100%);
}

.store-card__visual--sawa {
  background: linear-gradient(160deg, #7F1D1D 0%, #B91C1C 50%, #EF4444 100%);
}

.store-card__visual--ludo {
  background: linear-gradient(160deg, #713F12 0%, #CA8A04 50%, #FACC15 100%);
}

.store-card__visual--jaco {
  background: linear-gradient(160deg, #581C87 0%, #7C3AED 50%, #A78BFA 100%);
}

.store-card__visual--tiktok {
  background: linear-gradient(160deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}

.store-card__icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  z-index: 1;
}

.store-card__icon-wrap i {
  font-size: 2.8rem;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.store-card__visual-text {
  text-align: center;
  margin-top: 8px;
  z-index: 1;
}

.store-card__brand {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.store-card__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 2px;
}

.store-card__amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc(100% + 32px);
  margin: auto -16px 0;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.25), rgba(37, 99, 235, 0.35));
  border-top: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--color-cyan);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 -4px 20px rgba(6, 182, 212, 0.15);
}

.store-card__amount i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.store-card__amount-unit {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Card footer */
.store-card__footer {
  padding: 14px 14px 0;
  background: rgba(15, 23, 42, 0.5);
  text-align: center;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.store-card__save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-hot);
  border: 1px solid rgba(255, 0, 80, 0.25);
  background: rgba(255, 0, 80, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.store-card__save i {
  font-size: 0.65rem;
}

.store-card__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--color-accent);
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.store-card__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.store-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.store-card__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
}

.store-card__price small {
  font-size: 0.75rem;
  font-weight: 600;
}

.store-card__old-price {
  font-size: 0.8rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.store-card__cart {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, var(--color-primary), #1D4ED8);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 1px solid rgba(37, 99, 235, 0.3);
}

.store-card:hover .store-card__cart {
  transform: translateY(0);
}

.store-card__cart:hover {
  box-shadow: var(--shadow-neon-blue);
}

/* ═══════════════════════════════════════════
   REVIEWS / TESTIMONIAL CAROUSEL
   ═══════════════════════════════════════════ */
.reviews {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(30, 41, 59, 0.3) 50%, var(--bg-primary) 100%);
}

/* Carousel wrapper — buttons flanking viewport */
.carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.carousel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  width: 100%;
  direction: ltr;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  direction: rtl;
}

/* Review Card */
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-height: 200px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201D';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-neon-blue), var(--shadow-card);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #1D4ED8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon-blue);
}

.review-card__avatar--alt {
  background: linear-gradient(135deg, var(--color-accent), #EAB308);
  box-shadow: var(--shadow-neon-gold);
}

.review-card__avatar--purple {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.review-card__avatar--teal {
  background: linear-gradient(135deg, #14B8A6, #0D9488);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.review-card__avatar--hot {
  background: linear-gradient(135deg, var(--color-hot), #CC0040);
  box-shadow: 0 0 20px rgba(255, 0, 80, 0.35);
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-size: 1.05rem;
  font-weight: 700;
}

.review-card__location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.4));
  margin-right: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  padding-top: 4px;
}

/* Carousel Controls */
.carousel__btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(37, 99, 235, 0.45);
  color: var(--color-text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.carousel__btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-blue);
  transform: scale(1.06);
}

/* Carousel Dots */
.carousel-wrap .carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  order: 3;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel__dot--active {
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
  transform: scale(1.2);
}

/* Reviews CTA */
.reviews__cta {
  text-align: center;
  margin-top: 40px;
}

/* Glow Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn--glow {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.btn--glow:hover {
  background: var(--color-primary);
  color: var(--color-text);
  box-shadow: var(--shadow-neon-blue);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-footer);
  padding: 64px 0 0;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), #1D4ED8);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.footer__logo small {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-right: 4px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Social Icons */
.footer__social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-blue);
  transform: translateY(-3px);
}

.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary);
  padding-right: 6px;
}

/* Contact */
.footer__contact li {
  margin-bottom: 14px;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__contact i {
  width: 20px;
  text-align: center;
  color: var(--color-primary);
}

/* Legal Column */
.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.footer__badge-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 6px 12px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.footer__switches {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.footer__switch-btn {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer__switch-btn--active,
.footer__switch-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text);
  box-shadow: var(--shadow-neon-blue);
}

.footer__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 10px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.payment-icon:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.payment-icon i {
  font-size: 1.4rem;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__brand-mark {
  color: var(--color-accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.whatsapp-float__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.whatsapp-float__inner i {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.whatsapp-float:hover .whatsapp-float__inner {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse Rings */
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.4);
  z-index: 1;
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-float__pulse--delay {
  animation-delay: 1s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .header__nav-link {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__col--about {
    grid-column: 1 / -1;
  }

  .footer__col--legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .header {
    background: rgba(15, 23, 42, 0.98);
  }

  .header__inner {
    gap: 10px;
  }

  .header__brand {
    gap: 8px;
    min-width: 0;
    flex: 1;
  }

  .header__logo-text {
    font-size: 1.2rem;
  }

  .header__logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .header__search-btn {
    display: none;
  }

  .header__actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .header__action-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .header__hamburger {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 7px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.1);
  }

  .header__nav {
    position: fixed;
    top: var(--site-header-height);
    right: 0;
    left: 0;
    flex: none;
    display: block;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 999;
    border-bottom: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: calc(100vh - var(--site-header-height));
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .header__nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    color: var(--color-text);
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-link:hover,
  .header__nav-link--active {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--color-text);
  }

  .mobile-nav-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-nav-overlay.active {
    pointer-events: auto;
  }

  .carousel-wrap {
    gap: 14px;
  }

  .carousel__btn {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  .products__grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .store-card__visual {
    min-height: 180px;
  }

  .store-card__icon-wrap {
    width: 72px;
    height: 72px;
  }

  .store-card__icon-wrap i {
    font-size: 2.2rem;
  }

  .product-card {
    padding: 16px;
  }

  .coin-placeholder {
    width: 90px;
    height: 90px;
  }

  .coin-placeholder i {
    font-size: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__col--about {
    grid-column: 1 / -1;
  }

  .whatsapp-float__text {
    display: none;
  }

  .whatsapp-float__inner {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .topbar__inner {
    overflow: hidden;
  }

  .topbar__text {
    animation: topbarMarquee 18s linear infinite;
  }

  .topbar__icon--end {
    display: none;
  }
}

@keyframes topbarMarquee {
  0% { transform: translateX(-10%); }
  100% { transform: translateX(10%); }
}

@media (max-width: 480px) {
  :root {
    --topbar-height: 32px;
    --header-height: 58px;
  }

  .topbar__text {
    font-size: 0.68rem;
  }

  .topbar__icon {
    display: none;
  }

  .header__logo-sub {
    display: none;
  }

  .header__search-btn {
    display: none;
  }

  .header__logo-text {
    font-size: 1.1rem;
  }

  .header__action-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .header__hamburger {
    width: 36px;
    height: 36px;
  }

  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .store-card__badges {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 8px 0;
  }

  .store-card__badges .badge {
    justify-content: center;
    font-size: 0.6rem;
  }

  .store-card__visual {
    margin: 6px 8px 0;
    min-height: 165px;
    padding: 14px 12px 0;
  }

  .store-card__amount {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .store-card__footer {
    padding: 10px 10px 0;
  }

  .store-card__cart {
    transform: translateY(0);
    font-size: 0.78rem;
    padding: 10px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 22px 16px;
  }

  .review-card__header {
    gap: 12px;
  }

  .review-card__avatar {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .carousel-wrap {
    gap: 10px;
    padding: 0 4px;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .review-card {
    padding: 28px 20px;
  }

  .review-card::before {
    font-size: 3rem;
    left: 12px;
  }
}
