/* ============================================================
   TROVEXA — Global Stylesheet
   Brand: Black · Electric Blue #0057FF · Neon Green #39FF14 · White
   Fonts: Bebas Neue (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --black-4:     #222222;
  --black-5:     #2E2E2E;
  --blue:        #0057FF;
  --blue-light:  #3378FF;
  --blue-dark:   #003DBF;
  --blue-glow:   rgba(0, 87, 255, 0.35);
  --neon:        #39FF14;
  --neon-dim:    rgba(57, 255, 20, 0.15);
  --neon-glow:   rgba(57, 255, 20, 0.4);
  --white:       #FFFFFF;
  --white-90:    rgba(255,255,255,0.9);
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.08);
  --grey-1:      #F5F5F5;
  --grey-2:      #E0E0E0;
  --grey-3:      #9E9E9E;
  --grey-4:      #616161;
  --red:         #FF3B3B;
  --orange:      #FF7A00;
  --gold:        #FFD700;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --shadow-blue: 0 0 30px var(--blue-glow);
  --shadow-neon: 0 0 20px var(--neon-glow);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:  72px;
  --container:   1320px;
  --section-pad: 100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Typography ────────────────────────────────────────────── */
.display-xl  { font-family: var(--font-display); font-size: clamp(72px, 10vw, 160px); line-height: 0.9; letter-spacing: 2px; text-transform: uppercase; }
.display-lg  { font-family: var(--font-display); font-size: clamp(48px, 7vw, 100px); line-height: 0.95; letter-spacing: 1px; text-transform: uppercase; }
.display-md  { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); line-height: 1; letter-spacing: 1px; text-transform: uppercase; }
.display-sm  { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); line-height: 1.05; letter-spacing: 0.5px; text-transform: uppercase; }
.heading-xl  { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; }
.heading-lg  { font-size: clamp(22px, 3vw, 36px); font-weight: 700; line-height: 1.2; }
.heading-md  { font-size: clamp(18px, 2.5vw, 28px); font-weight: 700; line-height: 1.3; }
.heading-sm  { font-size: clamp(16px, 2vw, 22px); font-weight: 600; line-height: 1.4; }
.body-lg     { font-size: 18px; font-weight: 400; line-height: 1.7; }
.body-md     { font-size: 16px; font-weight: 400; line-height: 1.6; }
.body-sm     { font-size: 14px; font-weight: 400; line-height: 1.5; }
.label       { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.mono        { font-family: var(--font-mono); font-size: 13px; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); }

.btn-neon {
  background: var(--neon); color: var(--black);
  box-shadow: 0 4px 20px var(--neon-glow);
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--neon-glow); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white-30);
}
.btn-outline:hover { border-color: var(--white); background: var(--white-10); }

.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-ghost { background: var(--white-10); color: var(--white); }
.btn-ghost:hover { background: var(--white-30); }

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 48px; font-size: 16px; }
.btn-xl { padding: 22px 64px; font-size: 18px; }
.btn-icon { padding: 12px; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.badge-blue   { background: var(--blue); color: var(--white); }
.badge-neon   { background: var(--neon); color: var(--black); }
.badge-red    { background: var(--red); color: var(--white); }
.badge-gold   { background: var(--gold); color: var(--black); }
.badge-outline { background: transparent; border: 1px solid var(--white-30); color: var(--white-60); }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-blue); }

/* ── Section Headers ───────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header .eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--neon);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}
.section-header .eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--neon);
}
.section-header h2 { color: var(--white); }
.section-header p { color: var(--white-60); margin-top: 16px; max-width: 560px; font-size: 17px; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--white-10);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(10,10,10,0.97); border-bottom-color: var(--blue); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display); font-size: 32px; letter-spacing: 3px;
  color: var(--white); display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--blue); }
.nav-logo .logo-dot { width: 8px; height: 8px; background: var(--neon); border-radius: 50%; display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white-60); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--neon); border-radius: 50%;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--white-60); transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--white); background: var(--white-10); }
.nav-cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; background: var(--blue); border-radius: 50%;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--blue); color: var(--white);
  text-align: center; padding: 10px 24px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  position: relative; z-index: 1001;
}
.announcement-bar a { color: var(--neon); text-decoration: underline; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,87,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(57,255,20,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white-10); border: 1px solid var(--white-10);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--neon); margin-bottom: 24px;
}
.hero-eyebrow::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
.hero-title { margin-bottom: 24px; }
.hero-title .line-1 { color: var(--white); display: block; }
.hero-title .line-2 { color: var(--blue); display: block; }
.hero-title .line-3 { color: var(--neon); display: block; -webkit-text-stroke: 0; }
.hero-subtitle { color: var(--white-60); font-size: 18px; max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--white-10); }
.hero-stat-num { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--blue); }
.hero-stat-label { font-size: 13px; color: var(--white-60); margin-top: 4px; letter-spacing: 1px; }
.hero-image-side {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-container {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,87,255,0.1), rgba(57,255,20,0.05));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-30); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator::after {
  content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(var(--white-30), transparent);
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-card {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.product-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow-blue); }
.product-card-image {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--black-4);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.product-card-actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(12px); transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action-btn {
  width: 40px; height: 40px; background: var(--black); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.product-card-action-btn:hover { background: var(--blue); border-color: var(--blue); }
.product-card-body { padding: 16px; }
.product-card-category { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.product-card-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 13px; }
.rating-count { font-size: 12px; color: var(--white-60); }
.product-card-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 20px; font-weight: 800; color: var(--white); }
.price-original { font-size: 14px; color: var(--white-30); text-decoration: line-through; }
.price-discount { font-size: 12px; font-weight: 700; color: var(--neon); }
.product-card-footer { padding: 12px 16px; border-top: 1px solid var(--white-10); }
.product-card-colors { display: flex; gap: 6px; }
.color-dot {
  width: 16px; height: 16px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.color-dot:hover, .color-dot.active { border-color: var(--white); transform: scale(1.2); }

/* ── Category Cards ────────────────────────────────────────── */
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; transition: var(--transition);
}
.category-card:hover { transform: scale(1.02); }
.category-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.08); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.category-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
}
.category-card-icon { font-size: 32px; margin-bottom: 8px; }
.category-card-name { font-family: var(--font-display); font-size: 32px; color: var(--white); letter-spacing: 1px; }
.category-card-count { font-size: 13px; color: var(--white-60); margin-top: 4px; }
.category-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; background: var(--white-10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); opacity: 0; transform: scale(0.8); transition: var(--transition);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: scale(1); }

/* ── Filters Sidebar ───────────────────────────────────────── */
.filter-sidebar {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px;
}
.filter-group { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--white-10); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-title { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { display: none; }
.filter-checkbox {
  width: 18px; height: 18px; border: 2px solid var(--white-30); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  flex-shrink: 0;
}
.filter-option:hover .filter-checkbox { border-color: var(--blue); }
.filter-option input:checked + .filter-checkbox { background: var(--blue); border-color: var(--blue); }
.filter-option input:checked + .filter-checkbox::after { content: '✓'; font-size: 11px; color: white; font-weight: 700; }
.filter-label { font-size: 14px; color: var(--white-60); transition: var(--transition); }
.filter-option:hover .filter-label { color: var(--white); }
.filter-count { margin-left: auto; font-size: 11px; color: var(--white-30); }
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-range input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 4px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 60%, var(--white-10) 60%);
  border-radius: 2px; outline: none;
}
.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  background: var(--blue); border-radius: 50%; cursor: pointer;
  box-shadow: 0 0 8px var(--blue-glow);
}
.price-inputs { display: flex; gap: 12px; }
.price-input {
  flex: 1; background: var(--black-4); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); padding: 8px 12px; color: var(--white); font-size: 13px;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white-60); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white);
  font-size: 15px; transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-input::placeholder { color: var(--white-30); }
.form-select {
  width: 100%; background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white);
  font-size: 15px; transition: var(--transition); outline: none;
  appearance: none; cursor: pointer;
}
.form-select:focus { border-color: var(--blue); }
.form-textarea {
  width: 100%; background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white);
  font-size: 15px; transition: var(--transition); outline: none; resize: vertical; min-height: 120px;
}
.form-textarea:focus { border-color: var(--blue); }

/* ── Tables ────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--white-10); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--black-4); }
th { padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-60); white-space: nowrap; }
td { padding: 14px 16px; font-size: 14px; color: var(--white-60); border-top: 1px solid var(--white-10); }
tr:hover td { background: var(--white-10); color: var(--white); }

/* ── Tabs ──────────────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; background: var(--black-3); padding: 4px; border-radius: var(--radius-md); border: 1px solid var(--white-10); }
.tab-btn {
  flex: 1; padding: 10px 20px; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white-60); border-radius: var(--radius-sm);
  transition: var(--transition); text-align: center;
}
.tab-btn.active { background: var(--blue); color: var(--white); }
.tab-btn:hover:not(.active) { color: var(--white); background: var(--white-10); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Modals ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-xl); padding: 40px; max-width: 560px; width: 90%;
  transform: scale(0.95) translateY(20px); transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.modal-close { width: 36px; height: 36px; background: var(--white-10); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white-60); transition: var(--transition); }
.modal-close:hover { background: var(--red); color: var(--white); }

/* ── Toast Notifications ───────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 12px; }
.toast {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; min-width: 300px;
  transform: translateX(120%); transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(0); }
.toast-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-success .toast-icon { background: rgba(57,255,20,0.15); color: var(--neon); }
.toast-error .toast-icon { background: rgba(255,59,59,0.15); color: var(--red); }
.toast-info .toast-icon { background: var(--blue-glow); color: var(--blue); }
.toast-text { flex: 1; }
.toast-title { font-size: 14px; font-weight: 700; color: var(--white); }
.toast-msg { font-size: 13px; color: var(--white-60); margin-top: 2px; }

/* ── Search Bar ────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px); z-index: 1500;
  display: flex; flex-direction: column; align-items: center; padding-top: 120px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-bar-wrapper { width: 100%; max-width: 720px; padding: 0 24px; }
.search-input-wrap { position: relative; }
.search-input-wrap svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--white-30); }
.search-input {
  width: 100%; background: var(--black-3); border: 2px solid var(--blue);
  border-radius: var(--radius-md); padding: 20px 20px 20px 56px;
  color: var(--white); font-size: 20px; outline: none;
  box-shadow: var(--shadow-blue);
}
.search-suggestions { margin-top: 16px; background: var(--black-3); border: 1px solid var(--white-10); border-radius: var(--radius-md); overflow: hidden; }
.search-suggestion-item { padding: 14px 20px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition); }
.search-suggestion-item:hover { background: var(--white-10); }

/* ── Cart Drawer ───────────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--black-2); border-left: 1px solid var(--white-10);
  z-index: 1500; transform: translateX(100%); transition: var(--transition-slow);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 24px; border-bottom: 1px solid var(--white-10); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-drawer-footer { padding: 24px; border-top: 1px solid var(--white-10); }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--white-10); }
.cart-item-image { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; background: var(--black-4); flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--white-60); margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--white); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--white-10); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--white-60); transition: var(--transition); font-size: 16px; }
.qty-btn:hover { background: var(--blue); color: var(--white); }
.qty-num { width: 40px; text-align: center; font-size: 14px; font-weight: 700; color: var(--white); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.cart-total-label { font-size: 14px; color: var(--white-60); }
.cart-total-value { font-size: 14px; font-weight: 700; color: var(--white); }
.cart-grand-total .cart-total-label { font-size: 16px; font-weight: 700; color: var(--white); }
.cart-grand-total .cart-total-value { font-size: 22px; font-weight: 800; color: var(--neon); }

/* ── Stars Rating ──────────────────────────────────────────── */
.star-rating { display: flex; gap: 2px; }
.star { font-size: 16px; color: var(--white-10); cursor: pointer; transition: var(--transition); }
.star.filled { color: var(--gold); }
.star:hover { color: var(--gold); transform: scale(1.2); }

/* ── Progress Bar ──────────────────────────────────────────── */
.progress-bar { height: 6px; background: var(--white-10); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--neon)); border-radius: 3px; transition: width 1s ease; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-xl); padding: 32px; position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--blue); }
.testimonial-quote { font-size: 48px; color: var(--blue); line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial-text { font-size: 16px; color: var(--white-60); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--white-60); }
.testimonial-verified { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--neon); margin-top: 2px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black-2); border-top: 1px solid var(--white-10);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-desc { color: var(--white-60); font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; background: var(--white-10); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--white-60);
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--white-60); transition: var(--transition); }
.footer-link:hover { color: var(--blue); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--white-10); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 13px; color: var(--white-30); }
.footer-payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: var(--white-10); border-radius: 4px; padding: 4px 8px;
  font-size: 11px; font-weight: 700; color: var(--white-60); letter-spacing: 1px;
}

/* ── Admin Layout ──────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--black-2); border-right: 1px solid var(--white-10);
  position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100;
  display: flex; flex-direction: column;
}
.admin-sidebar-header { padding: 24px; border-bottom: 1px solid var(--white-10); }
.admin-sidebar-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; }
.admin-sidebar-logo span { color: var(--blue); }
.admin-sidebar-role { font-size: 11px; color: var(--white-30); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav-section { margin-bottom: 24px; }
.admin-nav-section-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white-30); padding: 0 12px; margin-bottom: 8px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: var(--radius-sm); color: var(--white-60); font-size: 14px; font-weight: 500;
  transition: var(--transition); cursor: pointer; margin-bottom: 2px;
}
.admin-nav-item:hover { background: var(--white-10); color: var(--white); }
.admin-nav-item.active { background: var(--blue); color: var(--white); }
.admin-nav-item svg { flex-shrink: 0; }
.admin-nav-badge { margin-left: auto; background: var(--red); color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; background: var(--black); }
.admin-topbar {
  height: 64px; background: var(--black-2); border-bottom: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
  position: sticky; top: 0; z-index: 50;
}
.admin-content { padding: 32px; }
.admin-page-header { margin-bottom: 32px; }
.admin-page-title { font-size: 28px; font-weight: 800; color: var(--white); }
.admin-page-subtitle { font-size: 14px; color: var(--white-60); margin-top: 4px; }

/* ── Stat Cards ────────────────────────────────────────────── */
.stat-card {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); padding: 24px; transition: var(--transition);
}
.stat-card:hover { border-color: var(--blue); }
.stat-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.stat-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.stat-card-icon.blue { background: rgba(0,87,255,0.15); color: var(--blue); }
.stat-card-icon.neon { background: var(--neon-dim); color: var(--neon); }
.stat-card-icon.red { background: rgba(255,59,59,0.15); color: var(--red); }
.stat-card-icon.gold { background: rgba(255,215,0,0.15); color: var(--gold); }
.stat-card-trend { font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.stat-card-trend.up { color: var(--neon); }
.stat-card-trend.down { color: var(--red); }
.stat-card-value { font-family: var(--font-display); font-size: 40px; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 13px; color: var(--white-60); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes neonPulse { 0%,100%{box-shadow:0 0 10px var(--neon-glow)} 50%{box-shadow:0 0 30px var(--neon-glow),0 0 60px var(--neon-glow)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale { animation: scaleIn 0.4s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--black-3) 25%, var(--black-4) 50%, var(--black-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── Utility ───────────────────────────────────────────────── */
.text-white   { color: var(--white); }
.text-blue    { color: var(--blue); }
.text-neon    { color: var(--neon); }
.text-muted   { color: var(--white-60); }
.text-dim     { color: var(--white-30); }
.text-red     { color: var(--red); }
.text-gold    { color: var(--gold); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.bg-black     { background: var(--black); }
.bg-black-2   { background: var(--black-2); }
.bg-black-3   { background: var(--black-3); }
.bg-blue      { background: var(--blue); }
.bg-neon      { background: var(--neon); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.p-16  { padding: 16px; }
.p-24  { padding: 24px; }
.p-32  { padding: 32px; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }
.border { border: 1px solid var(--white-10); }
.border-blue { border: 1px solid var(--blue); }
.divider { height: 1px; background: var(--white-10); margin: 24px 0; }
.neon-glow { box-shadow: var(--shadow-neon); }
.blue-glow { box-shadow: var(--shadow-blue); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .hero-image-side { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-height: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cart-drawer { width: 100%; }
  .modal { padding: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-xl { padding: 16px 32px; font-size: 15px; }
}

/* ── Mobile Nav Menu ───────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; background: var(--black-2); z-index: 1200;
  transform: translateX(-100%); transition: var(--transition-slow);
  padding: 24px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  padding: 16px; font-size: 18px; font-weight: 700; color: var(--white-60);
  border-radius: var(--radius-md); transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-link:hover { color: var(--white); background: var(--white-10); }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-30); }
.breadcrumb-item { transition: var(--transition); }
.breadcrumb-item:hover { color: var(--white); }
.breadcrumb-sep { color: var(--white-10); }
.breadcrumb-current { color: var(--white-60); }

/* ── Loyalty / Points ──────────────────────────────────────── */
.points-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: var(--black); padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 800;
}

/* ── Countdown Timer ───────────────────────────────────────── */
.countdown { display: flex; gap: 12px; }
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: var(--font-display); font-size: 36px; color: var(--white);
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); padding: 8px 16px; display: block; min-width: 64px;
}
.countdown-label { font-size: 10px; color: var(--white-30); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ── Swiper / Carousel ─────────────────────────────────────── */
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.carousel-nav { display: flex; gap: 12px; margin-top: 32px; }
.carousel-btn {
  width: 48px; height: 48px; background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white-60); transition: var(--transition);
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; align-items: center; margin-top: 24px; justify-content: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white-10); transition: var(--transition); cursor: pointer; }
.carousel-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ── Overlay Drawer Backdrop ───────────────────────────────── */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px); z-index: 1400;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.drawer-backdrop.active { opacity: 1; pointer-events: all; }

/* ── Size Selector ─────────────────────────────────────────── */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 48px; height: 48px; padding: 0 12px;
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-sm); color: var(--white-60); font-size: 13px; font-weight: 600;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.size-btn:hover { border-color: var(--blue); color: var(--white); }
.size-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.size-btn.unavailable { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ── Wishlist Heart ────────────────────────────────────────── */
.wishlist-btn { color: var(--white-30); transition: var(--transition); }
.wishlist-btn:hover, .wishlist-btn.active { color: var(--red); }
.wishlist-btn.active svg { fill: var(--red); }

/* ── Notification Dot ──────────────────────────────────────── */
.notif-dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  border: 2px solid var(--black);
}

/* ── Chip / Tag ────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white-10); border: 1px solid var(--white-10);
  border-radius: var(--radius-full); padding: 6px 14px;
  font-size: 13px; color: var(--white-60); transition: var(--transition); cursor: pointer;
}
.chip:hover, .chip.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip-remove { color: var(--white-30); font-size: 16px; line-height: 1; }

/* ── Accordion ─────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--white-10); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; transition: var(--transition);
}
.accordion-header:hover { color: var(--blue); }
.accordion-title { font-size: 15px; font-weight: 600; color: var(--white); }
.accordion-icon { color: var(--white-30); transition: var(--transition); font-size: 20px; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); color: var(--blue); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body.open { max-height: 500px; }
.accordion-content { padding: 0 0 20px; color: var(--white-60); font-size: 14px; line-height: 1.7; }

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--black-4); padding: 16px; text-align: center; font-size: 13px; font-weight: 700; color: var(--white-60); letter-spacing: 1px; text-transform: uppercase; }
.compare-table td { padding: 14px 16px; text-align: center; font-size: 14px; color: var(--white-60); border-top: 1px solid var(--white-10); }
.compare-table tr:hover td { background: var(--white-10); }
.compare-check { color: var(--neon); font-size: 18px; }
.compare-cross { color: var(--red); font-size: 18px; }

/* ── Loyalty Tier ──────────────────────────────────────────── */
.tier-card {
  background: var(--black-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-xl); padding: 32px; text-align: center; transition: var(--transition);
}
.tier-card.bronze { border-color: #CD7F32; }
.tier-card.silver { border-color: #C0C0C0; }
.tier-card.gold   { border-color: var(--gold); }
.tier-card.platinum { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.tier-icon { font-size: 48px; margin-bottom: 16px; }
.tier-name { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; }
.tier-points { font-size: 14px; color: var(--white-60); margin-bottom: 24px; }
.tier-perks { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.tier-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white-60); }
.tier-perk::before { content: '✓'; color: var(--neon); font-weight: 700; flex-shrink: 0; }