/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:    #060d1a;
  --bg-2:  #091525;
  --bg-3:  #0d1e35;
  --border: rgba(0, 200, 255, 0.1);
  --text:  #e8f4f8;
  --text-muted: #6a8fa8;

  --accent:     #00b4d8;
  --accent-2:   #00e5ff;
  --accent-glow: rgba(0, 180, 216, 0.35);
  --gold:       #ffd700;
  --gold-2:     #f7c948;
  --gold-glow:  rgba(255, 215, 0, 0.3);
  --epic-color: #a855f7;

  --r-common:    #9ba3af;
  --r-uncommon:  #22c55e;
  --r-rare:      #3b82f6;
  --r-epic:      #a855f7;
  --r-legendary: #f59e0b;

  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 8px 32px rgba(0,0,0,0.6);
  --font:      'Rajdhani', 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --nav-h:     60px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }
button { font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 7vw, 5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.01em; text-transform: uppercase; }
h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent-2), var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--accent-2); color: var(--accent-2); background: rgba(0,180,216,0.06); }

.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

.btn--buy {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 12px var(--accent-glow);
  border-radius: 4px;
}
.btn--buy:hover { transform: translateY(-2px); box-shadow: 0 0 20px var(--accent-glow); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
@media (min-width: 640px) { .nav { padding: 0 24px; } }
.nav--scrolled { background: rgba(6,13,26,0.97); }

.nav__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (min-width: 640px) { .nav__logo { font-size: 1.4rem; } }
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 900px) { .nav__links { gap: 32px; } }

.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent-2); }
.nav__links li:not(:last-child) { display: none; }
@media (min-width: 768px) { .nav__links li:not(:last-child) { display: list-item; } }

.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-muted) !important;
  padding: 8px;
}
.nav__cart:hover { color: var(--accent-2) !important; }
.nav__cart--always { display: flex; }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.cart-count.bump { transform: scale(1.4); }

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ===== HERO — MOBILE FIRST ===== */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero__bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,100,180,0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero__bg-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(120,0,200,0.16) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orb-drift 15s ease-in-out infinite reverse;
}
.hero__bg-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,200,220,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-drift 20s ease-in-out infinite;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-20px, 30px); }
}

/* Diagonal stripe overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 48px, rgba(0,180,216,0.018) 48px, rgba(0,180,216,0.018) 50px);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; width: 100%; max-width: 600px; }
.hero__visual   { display: none; }

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: calc(var(--nav-h) + 80px) 64px 80px;
    gap: 48px;
  }
  .hero__content { max-width: none; flex: 1; }
  .hero__visual  { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; position: relative; z-index: 2; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  animation: pulse-border 3s ease infinite;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(0,229,255,0.3); }
  50%       { border-color: rgba(0,229,255,0.7); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title { margin-bottom: 18px; }

.hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: none;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .hero__sub { max-width: 480px; margin-bottom: 36px; }
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__cta-main { width: 100%; }

@media (min-width: 480px) {
  .hero__cta-group { flex-direction: row; flex-wrap: wrap; }
  .hero__cta-main  { width: auto; }
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 900px) { .hero__stats { justify-content: flex-start; } }

.stat { text-align: center; }
.stat__num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__suffix { color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.stat p { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.stat__divider { width: 1px; height: 36px; background: var(--border); }

/* Hero skin card */
.hero-item-shop { position: relative; width: 260px; }

.hero-skin-card {
  background: linear-gradient(160deg, #150833 0%, #2d1265 100%);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(168,85,247,0.2), 0 0 80px rgba(0,0,0,0.6);
  position: relative;
}
.hero-skin-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--epic-color), var(--accent-2), var(--epic-color));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
.hero-skin-img-wrap {
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
#heroSkinImg { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.hero-skin-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.hero-skin-label {
  padding: 12px 16px;
  border-top: 1px solid rgba(168,85,247,0.2);
  background: rgba(0,0,0,0.3);
}
.hero-skin-label p { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--epic-color); text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
.hero-skin-label span { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.hero-float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(9,21,37,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 3;
}
.hero-float-badge .fbi { font-size: 1.3rem; }
.hero-float-badge strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-float-badge span { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.hero-float-badge--1 { top: -18px; right: -40px; animation-delay: 0s; border-color: rgba(0,229,255,0.3); }
.hero-float-badge--2 { bottom: 20px; left: -50px; animation-delay: -2.5s; border-color: rgba(255,215,0,0.3); }

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  margin: 0 auto;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text);
  white-space: nowrap;
}
.trust-item span:first-child { font-size: 0.9rem; }
.trust-divider { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }

/* ===== TICKER ===== */
.ticker {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ticker__track {
  display: flex; gap: 48px;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--gold);
  white-space: nowrap; text-transform: uppercase;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 36px; }
@media (min-width: 768px) { .section-header { margin-bottom: 48px; } }
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.16em;
  color: var(--accent-2); margin-bottom: 10px;
  text-transform: uppercase;
}
.section-sub { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; text-transform: none; font-weight: 500; line-height: 1.6; }

/* ===== CATEGORIES ===== */
.categories {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.cat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-card:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.06);
  background: var(--bg-3);
}
.cat-card__icon { font-size: 1.8rem; }
.cat-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 700;
}
.cat-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}
.cat-arrow { font-size: 0.72rem; font-weight: 700; color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ===== PRODUCTS ===== */
.products { padding: 64px 0; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .products { padding: 80px 0; } }

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.filter-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .filter-tabs { justify-content: center; flex-wrap: wrap; overflow-x: visible; }
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.filter-tab:hover { border-color: var(--accent-2); color: var(--text); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #000; box-shadow: 0 0 16px var(--accent-glow); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .products__grid { gap: 14px; } }
@media (min-width: 900px) { .products__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1200px) { .products__grid { gap: 20px; } }

/* ===== PRODUCT CARDS ===== */
.product-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  transition: height 0.3s ease;
}
.product-card.rarity-common::after    { background: var(--r-common); }
.product-card.rarity-uncommon::after  { background: var(--r-uncommon); }
.product-card.rarity-rare::after      { background: var(--r-rare); }
.product-card.rarity-epic::after      { background: var(--r-epic); }
.product-card.rarity-legendary::after { background: linear-gradient(90deg, var(--r-legendary), var(--gold), var(--r-legendary)); }

.product-card:hover { transform: translateY(-4px); }
.product-card:hover::after { height: 4px; }
.product-card.rarity-rare:hover      { border-color: rgba(59,130,246,0.4); box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 20px rgba(59,130,246,0.12); }
.product-card.rarity-epic:hover      { border-color: rgba(168,85,247,0.4); box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 20px rgba(168,85,247,0.12); }
.product-card.rarity-legendary:hover { border-color: rgba(245,159,11,0.4); box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 24px rgba(245,159,11,0.14); }

.product-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 2px;
}
.product-card__img-count {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 2px;
  background: rgba(0,0,0,0.7); color: var(--text-muted);
  border: 1px solid var(--border);
}

.badge-common    { background: rgba(155,163,175,0.85); color: #000; }
.badge-uncommon  { background: rgba(34,197,94,0.9);    color: #000; }
.badge-rare      { background: rgba(59,130,246,0.9);   color: #fff; }
.badge-epic      { background: rgba(168,85,247,0.9);   color: #fff; }
.badge-legendary { background: linear-gradient(90deg, #f59e0b, #ffd700); color: #000; }

.product-card__img {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
@media (min-width: 480px) { .product-card__img { height: 140px; } }
@media (min-width: 900px) { .product-card__img { height: 170px; } }

.skin-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.4s ease;
}
.product-card:hover .skin-img { transform: scale(1.05); }

.product-emoji {
  font-size: 2.5rem;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 900px) { .product-emoji { font-size: 3rem; } }

.product-card__body { padding: 10px 10px 13px; }
@media (min-width: 640px) { .product-card__body { padding: 14px 14px 18px; } }
@media (min-width: 900px) { .product-card__body { padding: 16px 16px 20px; } }

.product-card__cat {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 3px;
}
.rarity-label-common    { color: var(--r-common); }
.rarity-label-uncommon  { color: var(--r-uncommon); }
.rarity-label-rare      { color: var(--r-rare); }
.rarity-label-epic      { color: var(--r-epic); }
.rarity-label-legendary { color: var(--r-legendary); }

.product-card__body h3 { margin-bottom: 4px; font-size: 0.82rem; line-height: 1.2; }
@media (min-width: 640px) { .product-card__body h3 { font-size: 0.9rem; } }

.product-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) { .product-card__desc { font-size: 0.82rem; } }

.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.product-card__price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.price-old { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; }
.price-new { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
@media (min-width: 640px) { .price-new { font-size: 1.2rem; } }

.product-card.hidden { display: none; }
.product-card.fade-in { animation: fadeIn 0.3s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0,180,216,0.012) 40px, rgba(0,180,216,0.012) 42px);
  pointer-events: none;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
@media (min-width: 768px) {
  .hiw-steps { flex-direction: row; align-items: flex-start; gap: 0; }
}

.hiw-step {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
}
.hiw-step__num {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--accent-2);
  text-transform: uppercase; margin-bottom: 12px;
}
.hiw-step__icon { font-size: 2.2rem; margin-bottom: 12px; }
.hiw-step h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.hiw-step p {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 500; text-transform: none; letter-spacing: 0; line-height: 1.6;
  max-width: 220px; margin: 0 auto;
}

.hiw-divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 0;
}
@media (min-width: 768px) {
  .hiw-divider { width: 1px; height: auto; align-self: stretch; margin: 24px 0; }
}

/* ===== FEATURES ===== */
.features {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.feature-card {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(0,229,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 0 14px rgba(0,180,216,0.07);
}
.feature-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h3 { margin-bottom: 6px; font-size: 0.88rem; }
.feature-card p { color: var(--text-muted); font-size: 0.82rem; font-weight: 500; text-transform: none; line-height: 1.55; }

/* ===== REVIEWS ===== */
.reviews { padding: 64px 0; }
@media (min-width: 768px) { .reviews { padding: 80px 0; } }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 560px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.review-card {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(0,229,255,0.22); transform: translateY(-3px); }
.review-card__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-weight: 500; text-transform: none; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.review-card__author span { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; text-transform: none; letter-spacing: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner__orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07; pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__content h2 { margin-bottom: 12px; }
.cta-banner__content p { color: var(--text-muted); margin-bottom: 28px; font-weight: 500; text-transform: none; }

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 14px;
}
@media (min-width: 480px) { .email-form { flex-direction: row; } }
.email-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font-family: var(--font); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
  min-width: 0;
}
.email-form input:focus { border-color: var(--accent-2); }
.email-form input::placeholder { color: var(--text-muted); }
.email-fine { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0 28px; border-top: 1px solid var(--border); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1fr 2fr; gap: 48px; } }
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; max-width: 240px; font-weight: 500; text-transform: none; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.footer__links h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; }
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; font-weight: 500; text-transform: none; letter-spacing: 0; }
.footer__links a:hover { color: var(--accent-2); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
  flex-wrap: wrap; gap: 6px;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.cart-sidebar.open { pointer-events: all; }
.cart-sidebar__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.cart-sidebar.open .cart-sidebar__overlay { opacity: 1; }
.cart-sidebar__panel {
  position: absolute;
  top: 0; right: 0;
  width: 340px; max-width: 100vw; height: 100%;
  background: var(--bg-2); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open .cart-sidebar__panel { transform: translateX(0); }
.cart-sidebar__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.cart-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; transition: color 0.2s; }
.cart-close:hover { color: var(--text); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 14px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 10px; color: var(--text-muted); text-align: center; padding: 40px;
}
.cart-empty span { font-size: 3rem; }
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 8px;
  background: var(--bg-3);
}
.cart-item__icon {
  font-size: 1.4rem; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border-radius: 6px; flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__info strong { font-size: 0.82rem; display: block; text-transform: uppercase; letter-spacing: 0.03em; }
.cart-item__info span  { font-size: 0.76rem; color: var(--gold); font-weight: 600; }
.cart-item__remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.85rem; transition: color 0.2s; }
.cart-item__remove:hover { color: #f87171; }
.cart-sidebar__footer { padding: 14px 20px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 0.95rem; }
.cart-total strong { font-size: 1.2rem; color: var(--gold); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--bg-3);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 0.85rem; font-weight: 600;
  z-index: 999;
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 16px rgba(0,180,216,0.1);
  max-width: calc(100vw - 40px);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s;
  padding: 0;
}
@media (min-width: 640px) {
  .product-modal { align-items: center; padding: 20px; }
}
.product-modal.open { pointer-events: all; opacity: 1; }
.product-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.product-modal__panel {
  position: relative; z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  width: 100%;
  max-height: 92svh; max-height: 92vh;
  overflow-y: auto;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.product-modal.open .product-modal__panel { transform: translateY(0); }

@media (min-width: 640px) {
  .product-modal__panel {
    max-width: 700px;
    border-radius: 14px;
    flex-direction: row;
    max-height: 88vh;
    transform: scale(0.94) translateY(10px);
  }
  .product-modal.open .product-modal__panel { transform: scale(1) translateY(0); }
}

.product-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-muted); width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; z-index: 10; transition: all 0.2s;
}
.product-modal__close:hover { color: var(--text); border-color: var(--accent-2); }

/* Carousel */
.modal-carousel {
  position: relative;
  height: 220px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
@media (min-width: 640px) {
  .modal-carousel { width: 260px; height: auto; min-height: 320px; border-radius: 14px 0 0 14px; }
}

.modal-carousel__track {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.carousel-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.carousel-empty { font-size: 5rem; }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(6,13,26,0.75);
  border: 1px solid var(--border);
  color: var(--text); font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 5;
  -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover { background: rgba(6,13,26,0.95); border-color: var(--accent-2); }
.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }

.carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.2s;
}
.carousel-dot.active { background: var(--gold); width: 14px; border-radius: 3px; }

/* Modal content */
.product-modal__content {
  padding: 20px; display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
@media (min-width: 640px) { .product-modal__content { padding: 24px; } }

.product-modal__badge-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-modal__badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
}
.product-modal__rarity { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.product-modal__name { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin: 0; line-height: 1.15; }
.product-modal__desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; font-weight: 500; text-transform: none; letter-spacing: 0; }

.product-modal__includes h4 { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 8px; font-weight: 700; }
.product-modal__includes ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.product-modal__includes li { font-size: 0.8rem; font-weight: 600; color: var(--accent-2); text-transform: none; letter-spacing: 0; }

.product-modal__footer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
}
.product-modal__price { display: flex; flex-direction: column; }
.product-modal__price .pm-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.product-modal__price .pm-new { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.product-modal__cart { flex-shrink: 0; }

/* ===== CHAT BOT ===== */
.chat-btn {
  position: fixed; bottom: 20px; left: 20px;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; color: #000; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  z-index: 150; transition: transform 0.2s;
  animation: pulse-chat 3s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.chat-btn:hover { transform: scale(1.08); }
@keyframes pulse-chat {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 0 rgba(0,180,216,0.4); }
  50%       { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 8px rgba(0,180,216,0); }
}

.chat-window {
  position: fixed; bottom: 82px; left: 20px;
  width: min(320px, calc(100vw - 40px));
  max-height: 420px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; display: flex; flex-direction: column;
  z-index: 150;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 24px rgba(0,180,216,0.08);
  transform: translateY(16px) scale(0.95); opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom left;
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-window__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  background: var(--bg-3); border-radius: 12px 12px 0 0; flex-shrink: 0;
}
.chat-agent { display: flex; align-items: center; gap: 10px; }
.chat-agent__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #000;
}
.chat-agent__info strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.chat-agent__info span  { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.chat-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.85rem; padding: 4px; transition: color 0.2s; }
.chat-close:hover { color: var(--text); }
.chat-messages { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg {
  max-width: 86%; padding: 8px 12px; border-radius: 10px;
  font-size: 0.8rem; line-height: 1.5; font-weight: 500;
  text-transform: none; letter-spacing: 0;
}
.chat-msg--bot { background: var(--bg-3); border: 1px solid var(--border); align-self: flex-start; border-radius: 2px 10px 10px 10px; }
.chat-msg--user { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #000; font-weight: 600; align-self: flex-end; border-radius: 10px 2px 10px 10px; }
.chat-typing { align-self: flex-start; padding: 8px 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 2px 10px 10px 10px; font-size: 1rem; letter-spacing: 3px; color: var(--text-muted); }
.chat-input-area { display: flex; gap: 7px; padding: 10px 11px; border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-input-area input {
  flex: 1; padding: 7px 11px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--bg-3);
  color: var(--text); font-family: var(--font); font-size: 0.82rem;
  outline: none; transition: border-color 0.2s; font-weight: 500;
  text-transform: none; letter-spacing: 0; min-width: 0;
}
.chat-input-area input:focus { border-color: var(--accent-2); }
.chat-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; color: #000; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s;
}
.chat-send:hover { transform: scale(1.1); }

/* ===== ADMIN IMAGE MANAGER ===== */
.image-manager { border: 1.5px dashed var(--border); border-radius: 6px; padding: 14px; background: var(--bg-3); }
.img-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.img-thumb {
  position: relative; width: 72px; height: 72px;
  border-radius: 5px; overflow: hidden;
  border: 1px solid var(--border);
}
.img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.img-thumb__remove {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(248,113,113,0.9); border: none;
  color: #fff; font-size: 0.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.img-thumb__main {
  position: absolute; bottom: 2px; left: 2px;
  font-size: 0.5rem; font-weight: 700; background: rgba(0,0,0,0.7);
  color: var(--gold); padding: 1px 4px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.img-add-controls { display: flex; gap: 8px; flex-wrap: wrap; }
.img-url-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.img-url-row input {
  flex: 1; min-width: 0; padding: 8px 12px; border-radius: 4px;
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text); font-family: var(--font); font-size: 0.85rem;
  outline: none; transition: border-color 0.2s;
}
.img-url-row input:focus { border-color: var(--accent-2); }
.img-none-msg { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }

/* ===== MOBILE NAV OPEN ===== */
@media (max-width: 767px) {
  .nav__mobile-toggle { display: flex; }
  .nav__links {
    display: none;
    gap: 0;
  }
  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,13,26,0.99);
    padding: 16px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav__links.mobile-open li { display: list-item !important; padding: 4px 0; }
  .nav__links.mobile-open a { font-size: 0.95rem; padding: 10px 0; display: block; border-bottom: 1px solid var(--border); }
  .nav__links.mobile-open li:last-child a { border-bottom: none; }
}
