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

:root {
  --accent: #7c3aed;
  --accent-bright: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.35);
  --bg: #080810;
  --bg2: rgba(14, 14, 26, 0.88);
  --bg3: rgba(19, 19, 31, 0.9);
  --border: rgba(124, 58, 237, 0.22);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --radius: 12px;
  --gold: #f59e0b;
  --nav-bg: rgba(8,8,16,0.82);
  --input-bg: rgba(19,19,31,0.9);
}
body.light-mode {
  --bg: #f0f0fa;
  --bg2: rgba(232,232,248,0.9);
  --bg3: rgba(255,255,255,0.95);
  --border: rgba(124,58,237,0.35);
  --text: #1a1a2e;
  --text-muted: #4a5568;
  --nav-bg: rgba(240,240,250,0.92);
  --input-bg: rgba(255,255,255,0.95);
}
body.light-mode .blob { opacity: 0.18 !important; }
body.light-mode .hero-content h1 { text-shadow: 0 0 60px rgba(124,58,237,0.2); }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── BLOBS ── */
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0; animation: blobFadeIn 1.2s ease forwards; }
@keyframes blobFadeIn { to { opacity: 1; } }
.blob-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #7c3aed 0%, #4f46e5 60%, transparent 100%);
  top: -180px; left: -120px;
  animation: blobFadeIn 1.2s 0.1s ease forwards, blobMove1 14s 1.3s ease-in-out infinite alternate;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #a855f7 0%, #6366f1 60%, transparent 100%);
  top: 35%; right: -140px;
  animation: blobFadeIn 1.2s 0.3s ease forwards, blobMove2 12s 1.5s ease-in-out infinite alternate;
}
.blob-3 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, #2563eb 0%, #7c3aed 60%, transparent 100%);
  bottom: -120px; left: 25%;
  animation: blobFadeIn 1.2s 0.5s ease forwards, blobMove3 16s 1.7s ease-in-out infinite alternate;
}
@keyframes blobMove1 { from { transform: translate(0,0) scale(1); } to { transform: translate(70px,55px) scale(1.12); } }
@keyframes blobMove2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-55px,-75px) scale(1.18); } }
@keyframes blobMove3 { from { transform: translate(0,0) scale(1); } to { transform: translate(45px,-40px) scale(0.93); } }

/* ── ANNOUNCEMENT TICKER ── */
.announcement-bar {
  position: sticky;
  top: 64px;
  z-index: 99;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 55s linear infinite;
  will-change: transform;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.announcement-item .ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CARD PREVIEW IMAGE ── */
.card-preview {
  width: 100%;
  height: 310px;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0e0e1a 0%, rgba(124,58,237,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-preview img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .card-preview img { transform: scale(1.05); }
.card-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}
.card-preview-placeholder .preview-icon { font-size: 2.8rem; line-height: 1; }
.card-preview-placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,16,0.6) 100%);
  pointer-events: none;
}
.card-preview.coming-soon {
  background: linear-gradient(135deg, #0e0e1a 0%, rgba(96,165,250,0.15) 100%);
}

/* ── TOP BAR ── */
.top-loading-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 99999;
  overflow: hidden; background: rgba(255,255,255,0.04);
}
.top-loading-bar::before {
  content: ""; position: absolute; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, #00ffcc, #7c3aed, transparent);
  animation: loadingMove 1.5s linear infinite; filter: blur(1px);
}
@keyframes loadingMove { 0% { left: -40%; } 100% { left: 100%; } }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg); border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 0 0;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: 1px; flex-shrink: 0; }
.logo span { color: var(--accent-bright); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent-bright); }
.btn-ghost { border: 1px solid var(--border) !important; padding: 0.4rem 1rem !important; border-radius: 6px !important; color: var(--accent-bright) !important; transition: background 0.2s !important; }
.btn-ghost:hover { background: var(--accent-glow) !important; border-color: var(--accent-bright) !important; color: var(--text) !important; }

/* ── NAV SEARCH ── */
.nav-search-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, width 0.25s;
  width: 34px; height: 34px;
}
.nav-search-wrap.open {
  width: 200px; border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.nav-search-icon {
  background: transparent; border: none; cursor: pointer;
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  transition: color 0.15s;
}
.nav-search-wrap.open .nav-search-icon { color: var(--accent-bright); }
.nav-search-input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.88rem;
  width: 0; padding: 0; transition: width 0.25s, padding 0.25s;
}
.nav-search-wrap.open .nav-search-input {
  width: 100%; padding: 0 0.6rem 0 0;
}
.nav-search-input::placeholder { color: var(--text-muted); }

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1.05rem;
  width: 34px; height: 34px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); border-color: var(--accent-bright); background: var(--accent-glow); }

/* ── LANG DROPDOWN ── */
.lang-dropdown { position: relative; }
.lang-dropdown-btn { display: flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.65rem; cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s; white-space: nowrap; }
.lang-dropdown-btn:hover { color: var(--accent-bright); border-color: var(--accent-bright); background: rgba(124,58,237,0.1); }
.lang-dropdown-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.lang-dropdown.open .lang-dropdown-btn svg { transform: rotate(180deg); }
.lang-dropdown-menu { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: #0e0e1a; border: 1px solid var(--border); border-radius: 10px; padding: 0.4rem; min-width: 160px; z-index: 300; box-shadow: 0 8px 24px rgba(0,0,0,0.6); list-style: none; margin: 0; }
body.light-mode .lang-dropdown-menu { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu li { margin: 0; }
.lang-btn { display: block; width: 100%; text-align: left; background: transparent; border: none; color: var(--text-muted); font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500; padding: 0.42rem 0.7rem; border-radius: 6px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.lang-btn:hover { background: rgba(124,58,237,0.12); color: var(--text); }
.lang-btn.active { color: var(--accent-bright); font-weight: 700; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: transparent; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; padding: 0; flex-shrink: 0; }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE ── */
.page { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 64px;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,16,0.82) 0%, rgba(8,8,16,0.72) 50%, rgba(8,8,16,0.88) 100%);
  z-index: 1;
}
.hero-grid, .hero-content { position: relative; z-index: 2; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 780px; padding: 2rem; margin-top: 42vh; }
.badge { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright); background: rgba(124,58,237,0.12); border: 1px solid var(--border); padding: 0.3rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; }
.hero-content h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(3.5rem, 10vw, 6rem); font-weight: 700; line-height: 1.05; letter-spacing: 2px; margin-bottom: 1.5rem; text-shadow: 0 0 80px rgba(124,58,237,0.45); }
.hero-content h1 span { color: var(--accent-bright); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 0.9rem 2.5rem; background: var(--accent); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: background 0.2s, box-shadow 0.2s, transform 0.15s; box-shadow: 0 0 30px rgba(124,58,237,0.45); }
.btn-primary:hover { background: var(--accent-bright); box-shadow: 0 0 55px rgba(168,85,247,0.55); transform: translateY(-2px); }
.btn-secondary { display: inline-block; padding: 0.9rem 2.5rem; background: transparent; color: var(--text); text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 1rem; border: 1px solid var(--border); transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--accent-bright); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg2); backdrop-filter: blur(4px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.trust-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.trust-item .trust-icon { font-size: 1.2rem; }
.trust-item strong { color: var(--text); }

/* ── SECTION TITLES ── */
.section-title { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.section-title span { color: var(--accent-bright); }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: rgba(8,8,16,0.92); backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border); padding: 2.5rem 0;
}
.stats-inner {
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 2.8rem; font-weight: 700;
  color: var(--accent-bright); line-height: 1;
}
.stat-suffix {
  font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: var(--accent-bright); line-height: 1;
}
.stat-item > span:first-child { display: inline; }
.stat-item > .stat-suffix { display: inline; }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 0; }
.stat-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── SHOP NO RESULTS ── */
.shop-no-results {
  text-align: center; padding: 3rem 1rem;
  color: var(--text-muted); font-size: 0.95rem; grid-column: 1/-1;
}
.shop-no-results strong { color: var(--accent-bright); }

/* ── SHOP SECTION ── */
.shop-section { padding: 6rem 0; background: var(--bg2); }
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { background: var(--bg3); border: 1px solid var(--border); color: var(--text-muted); font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 999px; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.filter-btn:hover { color: var(--text); border-color: rgba(124,58,237,0.5); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* Product Card */
.product-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
}
.product-card:hover { border-color: var(--accent-bright); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(124,58,237,0.2); }
.product-card.bestseller { border-color: var(--gold); }
.product-card.bestseller:hover { border-color: var(--gold); box-shadow: 0 8px 40px rgba(245,158,11,0.2); }

.card-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.card-header-badges { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }
.card-icon { font-size: 1.6rem; }
.card-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-bright); background: rgba(124,58,237,0.12); padding: 0.25rem 0.7rem; border-radius: 999px; border: 1px solid var(--border); }
.badge-new { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #34d399; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.35); padding: 0.2rem 0.55rem; border-radius: 999px; }
.badge-bestseller { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.35); padding: 0.2rem 0.55rem; border-radius: 999px; }
.badge-soon { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #60a5fa; background: rgba(96,165,250,0.1); border: 1px solid rgba(96,165,250,0.35); padding: 0.2rem 0.55rem; border-radius: 999px; }

.product-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.product-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.product-features li::before { content: '▸ '; color: var(--accent-bright); }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.product-price { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--accent-bright); }
.product-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); font-family: 'Inter', sans-serif; margin-right: 0.2rem; }

.btn-buy {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; font-weight: 600;
  background: var(--accent); color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 16px rgba(124,58,237,0.35);
}
.btn-buy:hover { background: var(--accent-bright); box-shadow: 0 0 28px rgba(168,85,247,0.5); transform: translateY(-1px); }
.bestseller .btn-buy { background: var(--gold); box-shadow: 0 0 16px rgba(245,158,11,0.3); }
.bestseller .btn-buy:hover { background: #fbbf24; box-shadow: 0 0 28px rgba(245,158,11,0.5); }
.product-price.free { color: #34d399 !important; }
.product-price.soon { color: var(--text-muted) !important; font-size: 1.1rem !important; }
.btn-soon { background: rgba(255,255,255,0.06) !important; box-shadow: none !important; color: var(--text-muted) !important; }

/* ── BUNDLE SECTION ── */
.bundle-section { padding: 5rem 0; background: rgba(8,8,16,0.92); }

.bundle-img-wrap { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; }
.bundle-img { width: 100%; height: auto; display: block; border-radius: 12px; }
.bundle-card {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  background: var(--bg3);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124,58,237,0.15);
}
.bundle-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
}

.bundle-body { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex: 1; }
.bundle-left { flex: 1; }
.bundle-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.35);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.bundle-title {
  font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.bundle-title span { color: var(--accent-bright); }
.bundle-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.bundle-includes { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.bundle-includes li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.bundle-check { color: #34d399; font-size: 1rem; font-weight: 700; flex-shrink: 0; }

.bundle-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; flex-shrink: 0; }
.bundle-pricing { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.bundle-original-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text-muted); }
.bundle-original-price { text-decoration: line-through; color: var(--text-muted); }
.bundle-price-row { display: flex; align-items: baseline; }
.bundle-price {
  font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700;
  color: var(--accent-bright); line-height: 1;
}
.bundle-save-badge {
  display: inline-block;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.35);
  color: #34d399; font-size: 0.8rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 999px;
}
.bundle-cta { white-space: nowrap; }

/* ── BUNDLES GRID ── */
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.bundle-card-small {
  display: flex; flex-direction: column;
  background: var(--bg3); border: 1px solid var(--accent); border-radius: 16px;
  overflow: hidden; position: relative;
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
}
.bundle-card-small::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
  z-index: 1;
}
.bundle-small-img { width: 100%; height: auto; display: block; }
.bundle-small-img-split { display: flex; width: 100%; overflow: hidden; }
.bundle-small-img-split img { width: 50%; height: auto; display: block; object-fit: cover; }
.bundle-small-body { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem; }
.bundle-small-left { flex: 1; }
.bundle-small-title { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 700; margin: 0.5rem 0 1rem; line-height: 1.2; }
.bundle-small-title span { color: var(--accent-bright); }
.bundle-small-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; flex-shrink: 0; }

/* ── REVIEWS SECTION ── */
.reviews-section { padding: 6rem 0; background: rgba(8,8,16,0.88); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.2s, transform 0.2s; }
.review-card:hover { border-color: var(--accent-bright); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.review-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.review-product { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { display: flex; gap: 0.15rem; }
.review-stars span { color: var(--gold); font-size: 0.95rem; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }

/* ── CHANGELOG SECTION ── */
.changelog-section { padding: 6rem 0; background: var(--bg2); }
.changelog-list { display: flex; flex-direction: column; gap: 1.25rem; }
.changelog-item {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; gap: 2rem;
  transition: border-color 0.2s;
}
.changelog-item:hover { border-color: rgba(124,58,237,0.45); }
.changelog-meta {
  display: flex; flex-direction: column; gap: 0.35rem;
  min-width: 160px; flex-shrink: 0;
}
.changelog-date { font-size: 0.82rem; color: var(--text-muted); font-family: 'Inter', monospace; }
.changelog-version {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent-bright); background: rgba(124,58,237,0.1);
  border: 1px solid var(--border); padding: 0.15rem 0.55rem; border-radius: 999px;
  display: inline-block;
}
.changelog-body { flex: 1; }
.changelog-script {
  font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.6rem;
}
.changelog-changes { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.changelog-changes li { font-size: 0.88rem; color: var(--text-muted); }
.changelog-changes li::before { content: '▸ '; color: var(--accent-bright); }

/* ── FAQ SECTION ── */
.faq-section { padding: 6rem 0; background: rgba(8,8,16,0.88); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: transparent; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-bright); }
.faq-question[aria-expanded="true"] { color: var(--accent-bright); }
.faq-icon {
  font-size: 1.3rem; color: var(--accent-bright); flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: none; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8,8,16,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--bg3); border: 1px solid var(--accent);
  border-radius: 16px; padding: 2.5rem;
  max-width: 560px; width: 100%; position: relative;
  box-shadow: 0 0 80px rgba(124,58,237,0.25);
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: rgba(124,58,237,0.2); color: var(--text); }

.modal-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; }
.modal-icon { font-size: 2.5rem; line-height: 1; flex-shrink: 0; }
.modal-title { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.modal-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.modal-features-heading { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.modal-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 2rem; }
.modal-features li { font-size: 0.9rem; color: var(--text-muted); }
.modal-features li::before { content: '▸ '; color: var(--accent-bright); }
.modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.modal-price .product-price { font-size: 1.8rem; }
.modal-buy-btn { padding: 0.75rem 1.75rem; }

/* ── PURCHASE NOTIFICATION ── */
.purchase-notify {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 500;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.85rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0; transform: translateX(-16px) translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  max-width: 320px;
}
.purchase-notify.visible { opacity: 1; transform: translateX(0); }
.pn-avatar { font-size: 1.4rem; flex-shrink: 0; }
.pn-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.pn-text strong { color: var(--text); }
.pn-text em { color: var(--accent-bright); font-style: normal; }

/* ── FOOTER ── */
.footer { background: rgba(14,14,26,0.95); border-top: 1px solid var(--border); backdrop-filter: blur(8px); padding: 3rem 0 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start; margin-bottom: 2rem; }
.footer-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-bright); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.83rem; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 44px; height: 44px; background: var(--accent); border: none; border-radius: 10px; color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(124,58,237,0.45); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.25s, transform 0.25s, background 0.2s; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent-bright); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-right { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(8,8,16,0.97); border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem 2rem 1.5rem; backdrop-filter: blur(20px); }
  .nav-right.open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(124,58,237,0.1); }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .btn-ghost { border: none !important; padding: 0.85rem 0 !important; }
  .lang-dropdown { margin-top: 1rem; }
  .lang-dropdown-menu { right: auto; left: 0; }
  .trust-inner { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: center; }
  .bundle-card { flex-direction: column; padding: 2rem; gap: 2rem; }
  .bundle-right { align-items: flex-start; }
  .bundle-price { font-size: 2.2rem; }
  .changelog-item { flex-direction: column; gap: 1rem; }
  .modal-box { padding: 1.75rem; }
  .modal-footer { flex-direction: column; align-items: flex-start; }
  .chatbot-window { width: calc(100vw - 2rem); right: 0; bottom: 70px; }
  .chatbot-wrap { bottom: 1.25rem; right: 1.25rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .filter-btns { gap: 0.5rem; }
  .filter-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .hero-content { margin-top: 20vh; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; width: 100%; max-height: none; border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── CHATBOT ── */
.chatbot-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.chatbot-toggle { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 0 30px rgba(124,58,237,0.5); transition: transform 0.2s, box-shadow 0.2s; }
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 0 45px rgba(124,58,237,0.7); }
.chatbot-window { width: 340px; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: none; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.5); backdrop-filter: blur(20px); }
.chatbot-window.open { display: flex; }
.chatbot-header { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(124,58,237,0.15); border-bottom: 1px solid var(--border); }
.chatbot-avatar { font-size: 1.6rem; }
.chatbot-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.chatbot-status { font-size: 0.72rem; color: #4ade80; }
.chatbot-close { margin-left: auto; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; padding: 0.2rem 0.4rem; border-radius: 4px; transition: color 0.2s; }
.chatbot-close:hover { color: var(--text); }
.chatbot-messages { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; max-height: 280px; overflow-y: auto; scroll-behavior: smooth; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg { max-width: 85%; padding: 0.6rem 0.9rem; border-radius: 12px; font-size: 0.88rem; line-height: 1.5; }
.chat-msg.bot { background: rgba(124,58,237,0.15); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.bot a { color: var(--accent-bright); text-decoration: underline; }
.chat-msg.user { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chatbot-suggestions { padding: 0.75rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--border); }
.chatbot-suggestion { background: var(--bg3); border: 1px solid var(--border); color: var(--text); padding: 0.5rem 0.85rem; border-radius: 8px; font-size: 0.82rem; cursor: pointer; text-align: left; transition: border-color 0.2s, background 0.2s; }
.chatbot-suggestion:hover { border-color: var(--accent); background: rgba(124,58,237,0.1); }
