/* ═══════════════════════════════════════════════════════════════
   CidGrowtopia — Design System
   Tema: Cyberpunk / Neon Green Gradient
   Font: Orbitron (heading), Inter (body), JetBrains Mono (code)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:        #08090a;
  --bg-2:      #0d0e12;
  --surface:   #12141a;
  --surface-2: #1a1c24;
  --surface-3: #222530;
  --border:    #1e212b;
  --border-2:  #2d3142;

  --text:      #f0f2f5;
  --text-dim:  #8b93a5;
  --text-muted:#585e6e;

  /* We keep the var names gold/gem to avoid changing HTML, but map them to neon green/cyan */
  --gold:      #00ff66;
  --gold-dim:  #00b347;
  --gold-glow: rgba(0, 255, 102, 0.3);
  --gold-bg:   rgba(0, 255, 102, 0.08);

  --gem:       #00f0ff;
  --gem-dim:   #00a8b3;
  --gem-glow:  rgba(0, 240, 255, 0.3);
  --gem-bg:    rgba(0, 240, 255, 0.08);

  --success:   #00ff66;
  --success-bg:rgba(0, 255, 102, 0.10);
  --danger:    #ff2a55;
  --danger-bg: rgba(255, 42, 85, 0.10);
  --warn:      #ffb800;
  --warn-bg:   rgba(255, 184, 0, 0.10);

  --radius:    4px;
  --radius-sm: 2px;
  --radius-xs: 2px;

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.5);
  --shadow:    0 8px 24px rgba(0,0,0,0.6);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.8);

  --font-heading: 'Orbitron', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --transition:   .2s ease-out;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  background-image: 
    linear-gradient(rgba(30, 33, 43, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 33, 43, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: 1.2rem; }
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); font-weight: 700; font-family: var(--font-heading);
}
.mono { font-family: var(--font-mono); }
.text-gold { color: var(--gold); text-shadow: 0 0 10px var(--gold-glow); }
.text-gem  { color: var(--gem); text-shadow: 0 0 10px var(--gem-glow); }
.text-dim  { color: var(--text-dim); }
.text-muted{ color: var(--text-muted); }

/* ─── Layout ─────────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-xs { max-width: 520px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 9, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 900; font-size: 22px;
  letter-spacing: 2px; text-transform: uppercase;
}
.logo b { 
  color: transparent; 
  background: linear-gradient(90deg, var(--gold), var(--gem)); 
  -webkit-background-clip: text; 
}
.logo-mark { display: none; } /* Hide the old grid logo */
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-heading);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-shadow: 0 0 8px var(--gold-glow); }

.nav-social {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  color: var(--text-dim);
  transition: var(--transition);
}
.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.nav-social:hover {
  color: var(--gold);
  filter: drop-shadow(0 0 4px var(--gold-glow));
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; transition: var(--transition);
  cursor: pointer; border: none; font-family: var(--font-heading);
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(90deg, var(--gem), var(--gold));
  color: #000; box-shadow: 0 0 15px rgba(0,255,102,0.2);
}
.btn-gold:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 0 25px rgba(0,255,102,0.4); 
  background: linear-gradient(90deg, var(--gold), var(--gem));
}
.btn-ghost {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-ghost:hover { 
  background: var(--gold-bg); 
  box-shadow: 0 0 15px var(--gold-glow); 
}
.btn-gem {
  background: var(--gem); color: #000;
}
.btn-gem:hover { box-shadow: 0 0 20px var(--gem-glow); }
.btn-danger {
  background: transparent; border: 1px solid var(--danger); color: var(--danger);
}
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; filter: grayscale(1); }

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.card:hover { border-color: var(--gold-dim); box-shadow: 0 0 20px var(--gold-bg); }

/* Product Card */
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gem), var(--gold));
  opacity: 0; transition: var(--transition);
}
.product-card:hover { 
  border-color: var(--border-2); 
  transform: translateY(-4px); 
  background: var(--surface-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8); 
}
.product-card:hover::before { opacity: 1; }
.product-icon {
  font-size: 2.5rem; width: 60px; height: 60px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .product-icon { border-color: var(--gold-dim); box-shadow: inset 0 0 15px var(--gold-bg); }
.product-category {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gem); font-weight: 700; font-family: var(--font-heading);
}
.product-name {
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  color: var(--text); line-height: 1.4; letter-spacing: 0.5px;
}
.product-desc {
  font-size: 13px; color: var(--text-dim); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--border);
}
.product-price {
  font-family: var(--font-mono); font-size: 16px; font-weight: 700; color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}
.stock-badge {
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-heading);
}
.stock-badge.available { background: var(--success-bg); color: var(--success); border: 1px solid var(--success); }
.stock-badge.low       { background: var(--warn-bg);    color: var(--warn); border: 1px solid var(--warn); }
.stock-badge.empty     { background: var(--danger-bg);  color: var(--danger); border: 1px solid var(--danger); }

/* ─── Status Badges ──────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; padding: 5px 12px;
  border-radius: 2px; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font-heading);
}
.status-badge.PENDING    { background: var(--warn-bg);    color: var(--warn); border: 1px solid var(--warn); }
.status-badge.PAID       { background: var(--gem-bg);     color: var(--gem); border: 1px solid var(--gem); }
.status-badge.DELIVERED  { background: var(--success-bg); color: var(--success); border: 1px solid var(--success); }
.status-badge.EXPIRED    { background: var(--danger-bg);  color: var(--danger); border: 1px solid var(--danger); }
.status-badge.FAILED     { background: var(--danger-bg);  color: var(--danger); border: 1px solid var(--danger); }
.status-badge.REFUNDED   { background: var(--surface-2);  color: var(--text-dim); border: 1px solid var(--border); }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-heading); }
.form-input, .form-textarea, .form-select {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--gold);
  padding: 12px 16px; font-size: 14px; outline: none;
  transition: var(--transition); width: 100%; font-family: var(--font-mono);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold); background: var(--gold-bg); box-shadow: 0 0 15px var(--gold-glow);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 12px; color: var(--text-muted); }
.form-error { font-size: 12.5px; color: var(--danger); }

/* ─── Panels / Tables ────────────────────────────────────────── */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
  position: relative;
}
.panel::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gem), var(--gold));
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.panel-head h2 { font-size: 14px; font-weight: 700; }
.panel-body { padding: 24px; }

table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-dim); font-family: var(--font-heading);
  padding: 14px 24px; border-bottom: 1px solid var(--border); background: var(--surface-2);
}
td { padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 14px; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }
.inv { font-family: var(--font-mono); color: var(--gem); font-size: 13px; font-weight: 700; text-shadow: 0 0 5px var(--gem-glow); }

/* ─── Alerts / Notices ───────────────────────────────────────── */
.notice {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.6;
  display: flex; gap: 12px; align-items: flex-start;
}
.notice-gem    { background: var(--gem-bg);     border: 1px solid var(--gem-dim);  color: var(--gem); text-shadow: 0 0 8px var(--gem-glow); }
.notice-gold   { background: var(--gold-bg);    border: 1px solid var(--gold-dim); color: var(--gold); text-shadow: 0 0 8px var(--gold-glow); }
.notice-danger { background: var(--danger-bg);  border: 1px solid var(--danger);   color: var(--danger); text-shadow: 0 0 8px rgba(255,0,0,0.5); }
.notice b { font-weight: 700; }

/* ─── Stats Grid ─────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 40px;
  background: radial-gradient(circle at bottom right, var(--gold-glow), transparent);
}
.stat-card .k { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 12px; font-family: var(--font-heading); }
.stat-card .v { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--gold); text-shadow: 0 0 15px var(--gold-glow); }
.stat-card .delta { font-size: 11px; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-mono); }
.delta.up   { color: var(--success); }
.delta.warn { color: var(--warn); }
.delta.down { color: var(--danger); }

/* ─── Stock Bar ──────────────────────────────────────────────── */
.stock-bar {
  width: 80px; height: 6px; background: var(--surface-2);
  border-radius: 2px; overflow: hidden; display: inline-block;
  margin-right: 12px; vertical-align: middle; border: 1px solid var(--border);
}
.stock-bar i { display: block; height: 100%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.stock-bar.low i   { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.stock-bar.empty i { background: var(--danger); box-shadow: 0 0 8px var(--danger); }

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--gold-bg), transparent);
  text-align: center; border-bottom: 1px dashed var(--border);
}
.hero h1 { margin-bottom: 24px; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: 2px; }
.hero p  { font-size: 16px; color: var(--text-dim); max-width: 600px; margin: 0 auto 40px; font-family: var(--font-mono); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Section ────────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.section-head h2 { font-size: 1.5rem; color: var(--gold); text-shadow: 0 0 10px var(--gold-glow); }

/* ─── Product Grid ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ─── Featured Products ──────────────────────────────────────── */
.featured-products-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.featured-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-decoration: none;
  padding: 32px 28px 28px;
  gap: 24px;
  border: 1.5px solid var(--gold-dim);
  background: linear-gradient(135deg, var(--surface) 60%, var(--surface-2));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,255,102,0.06);
}
.featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gem));
  opacity: 0.7;
}
.featured-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0,255,102,0.15);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--surface-2) 60%, var(--surface-3));
}
.featured-card .feat-badge {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(90deg, var(--gold), var(--gem));
  color: #000;
  font-size: 10px; font-weight: 800;
  padding: 5px 14px; border-bottom-left-radius: 8px;
  font-family: var(--font-heading); letter-spacing: 1px;
}
.featured-card .feat-icon {
  width: 100px; height: 100px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border-radius: 14px;
  border: 1px solid var(--border-2);
  box-shadow: inset 0 0 20px var(--gold-bg);
  margin-top: 4px;
}
.featured-card .feat-icon i { width: 3rem; height: 3rem; color: var(--gold); }
.featured-card .feat-info { flex: 1; min-width: 0; padding-top: 2px; }
.featured-card .feat-cat {
  font-size: 10px; color: var(--gem);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 6px; font-family: var(--font-heading); font-weight: 700;
}
.featured-card .feat-name {
  font-size: 1.45rem; margin-bottom: 10px; color: var(--text);
  font-family: var(--font-heading); line-height: 1.2;
  font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.featured-card .feat-price {
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); font-family: var(--font-mono);
  margin-bottom: 12px; text-shadow: 0 0 12px var(--gold-glow);
}
.featured-card .feat-desc {
  font-size: 13px; color: var(--text-dim); margin-bottom: 14px;
  line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.featured-card .feat-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 2px;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-heading); letter-spacing: 0.5px;
}

/* ─── Filter Tabs ─────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 8px 20px; border-radius: 2px; font-size: 12px; font-weight: 700;
  border: 1px solid var(--border); color: var(--text-dim); cursor: pointer;
  transition: var(--transition); font-family: var(--font-heading); text-transform: uppercase;
  letter-spacing: 1px; background: var(--surface);
}
.filter-tab:hover  { border-color: var(--gold-dim); color: var(--gold); background: var(--surface-2); box-shadow: 0 0 10px var(--gold-bg); }
.filter-tab.active { border-color: var(--gold); color: #000; background: var(--gold); box-shadow: 0 0 15px var(--gold-glow); }

/* ─── Checkout / QRIS ────────────────────────────────────────── */
.qris-box {
  background: var(--surface); border: 1px solid var(--gold-dim);
  border-radius: var(--radius); padding: 32px; text-align: center;
  box-shadow: 0 0 30px var(--gold-bg); position: relative;
}
.qris-box::before {
  content: '[ SCAN TO PAY ]'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--bg); padding: 0 10px; font-family: var(--font-mono); font-size: 12px; color: var(--gold);
}
.qris-img {
  width: 220px; height: 220px; border-radius: 4px;
  background: #fff; margin: 24px auto; padding: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #666; border: 2px solid var(--gold); box-shadow: 0 0 20px var(--gold-glow);
}
.qris-img img { width: 100%; height: 100%; object-fit: contain; }
.countdown {
  font-family: var(--font-mono); font-size: 32px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px; text-shadow: 0 0 15px var(--gold-glow);
}
.countdown.urgent { color: var(--danger); text-shadow: 0 0 15px rgba(255,0,0,0.8); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ─── Invoice Code ───────────────────────────────────────────── */
.invoice-code {
  font-family: var(--font-mono); font-size: 16px; font-weight: 700;
  color: #000; letter-spacing: 1px;
  background: var(--gold); border: 1px solid var(--gold);
  border-radius: 2px; padding: 8px 16px; display: inline-block;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ─── Order Card (pesanan-saya) ──────────────────────────────── */
.order-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--gem);
  border-radius: 2px; padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: var(--transition);
}
.order-card:hover { border-color: var(--gem); box-shadow: 0 0 15px var(--gem-bg); transform: translateX(4px); }
.order-card .inv { font-family: var(--font-mono); color: var(--gem); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.order-card .name { font-size: 15px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px; }
.order-card .time { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); }
.order-card .r { text-align: right; }
.order-card .price { font-family: var(--font-mono); font-weight: 700; color: var(--gold); font-size: 16px; margin-bottom: 8px; text-shadow: 0 0 8px var(--gold-glow); }

/* ─── Empty State ─────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 20px; color: var(--text-dim);
  border: 1px dashed var(--border-2); border-radius: var(--radius); font-size: 14px;
  background: rgba(0,0,0,0.2); font-family: var(--font-mono);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 20px; opacity: .4; filter: grayscale(1); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); background: var(--surface);
  padding: 40px 0; font-size: 13px; color: var(--text-dim);
  font-family: var(--font-mono);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}

/* ─── Misc Utilities ─────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.w-full { width: 100%; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .featured-products-container { flex-direction: column; width: 100%; }
  .featured-card { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 600px) {
  .featured-products-container {
    flex-direction: column !important;
    width: 100% !important;
  }
  .featured-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100% !important;
  }
  .featured-card .feat-info { width: 100%; }
  .featured-card .feat-icon { width: 72px; height: 72px; }
  .featured-card .feat-actions { justify-content: center; }
  .featured-card .feat-name { white-space: normal; }
  .nav-links a:not(.nav-social) { display: none; }
  .nav-social { display: inline-flex; margin-left: 12px; }
  .hero { padding: 60px 0 40px; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  h1 { font-size: 2rem; }
  table { font-size: 12px; }
  th, td { padding: 10px 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-head .btn { display: none; }
}

/* Mobile Bottom Floating Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 20, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  max-width: 400px;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  flex: 1;
}

.mobile-bottom-nav a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--gold);
  background: rgba(0, 255, 102, 0.08);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 90px; /* Add padding to prevent content overlap with floating nav */
  }
}

/* Product Detail Grid Layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
