/* ==========================================================================
   HTB (HIT THE BLOCK) OFFICIAL MARKETPLACE - LUXURY BLACK & GOLD
   ========================================================================== */

:root {
  /* Ultra Deep Obsidian & Onyx */
  --bg-dark: #050608;
  --bg-surface: #0a0c10;
  --bg-card: rgba(12, 15, 21, 0.85);
  --bg-card-hover: rgba(18, 22, 32, 0.95);

  /* Metallic Royal Gold & Amber */
  --gold-primary: #f5af19;
  --gold-light: #ffe57f;
  --gold-glow: #ffd700;
  --gold-dark: #b8860b;
  --gold-amber: #e67e22;

  /* Borders & Highlights */
  --border-gold: rgba(245, 175, 25, 0.3);
  --border-gold-strong: rgba(255, 215, 0, 0.55);
  --border-subtle: rgba(255, 215, 0, 0.09);
  --border-glass: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #fff2a3 0%, #f5af19 50%, #c68b12 100%);
  --gradient-gold-hover: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #f5af19 100%);
  --gradient-dark-banner: linear-gradient(90deg, #07080a 0%, #1c1504 50%, #07080a 100%);

  /* Typography */
  --font-heading: 'Outfit', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & FX */
  --shadow-gold: 0 0 20px rgba(245, 175, 25, 0.3);
  --shadow-gold-lg: 0 10px 35px rgba(245, 175, 25, 0.2);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.9);
  --backdrop-blur: blur(20px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: #eaecf2;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Background Grid */
.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 175, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 175, 25, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  animation: floatOrb 22s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f5af19 0%, transparent 70%);
  top: -150px;
  left: 10%;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #b8860b 0%, transparent 70%);
  top: 40%;
  right: -150px;
  animation-delay: -8s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ffd700 0%, transparent 70%);
  bottom: 0%;
  left: 5%;
  animation-delay: -15s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(40px) scale(1.08); }
  100% { transform: translateY(-30px) scale(0.94); }
}

/* Utilities */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Top Banner */
.top-banner {
  background: var(--gradient-dark-banner);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  z-index: 100;
}

.banner-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.75); }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 90;
  transition: var(--transition);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-glow);
  box-shadow: var(--shadow-gold);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #929bb0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-admin-link {
  color: var(--gold-glow) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 175, 25, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.nav-admin-link:hover {
  background: var(--gradient-gold);
  color: #050608 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* User Profile Navbar Pill */
.user-profile-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #090c12;
  border: 1px solid var(--border-gold);
  padding: 4px 12px 4px 6px;
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.user-profile-pill:hover {
  border-color: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

.user-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-glow);
  object-fit: cover;
}

.user-info-text {
  display: flex;
  flex-direction: column;
}

.user-display-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.user-status-tag {
  font-size: 0.7rem;
  color: #57f287;
  font-weight: 600;
}

.btn-logout-pill {
  background: transparent;
  border: none;
  color: #ff5555;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 0.85rem;
  margin-left: 4px;
  transition: var(--transition);
}

.btn-logout-pill:hover {
  transform: scale(1.2);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #050608;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-gold-hover);
  box-shadow: 0 0 30px rgba(245, 175, 25, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--backdrop-blur);
}

.btn-secondary:hover {
  background: rgba(245, 175, 25, 0.1);
  border-color: var(--gold-glow);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-discord {
  background: rgba(245, 175, 25, 0.1);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.btn-discord:hover {
  background: var(--gradient-gold);
  color: #050608;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-cashapp {
  background: #00D632;
  color: #050608;
  font-weight: 900;
  border: 1px solid #00D632;
  box-shadow: 0 4px 20px rgba(0, 214, 50, 0.35);
}

.btn-cashapp:hover {
  background: #00ff3c;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 214, 50, 0.55);
}

.btn-auth {
  background: rgba(245, 175, 25, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-auth:hover {
  background: var(--gradient-gold);
  color: #050608;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

/* Cart Trigger */
.cart-trigger-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.cart-trigger-btn:hover {
  border-color: var(--gold-glow);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gradient-gold);
  color: #050608;
  font-size: 0.72rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 24px 60px;
  text-align: center;
  z-index: 1;
}

.hero-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-emblem-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-emblem {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold-glow);
  box-shadow: 0 0 35px rgba(245, 175, 25, 0.45);
  object-fit: cover;
  animation: emblemPulse 4s ease-in-out infinite alternate;
}

@keyframes emblemPulse {
  0% { transform: scale(1); box-shadow: 0 0 25px rgba(245, 175, 25, 0.35); }
  100% { transform: scale(1.04); box-shadow: 0 0 45px rgba(255, 215, 0, 0.6); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(245, 175, 25, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 860px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #9ea8bd;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Metrics */
.metrics-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: var(--backdrop-blur);
  transition: var(--transition);
}

.metric-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: 0 6px 20px rgba(245, 175, 25, 0.1);
}

.metric-icon {
  font-size: 1.5rem;
  color: var(--gold-glow);
}

.metric-info {
  text-align: left;
}

.metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.metric-lbl {
  font-size: 0.78rem;
  color: #838eac;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-glow);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-desc {
  color: #8e99b2;
  font-size: 1rem;
}

/* ==========================================================================
   STEPS GUIDE SECTION
   ========================================================================== */
.steps-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(245, 175, 25, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: var(--backdrop-blur);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 175, 25, 0.12);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.12);
  line-height: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 175, 25, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-glow);
  margin-bottom: 18px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: #8c97af;
  line-height: 1.6;
}

.step-desc a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

/* ==========================================================================
   BILLING SWITCHER & CATEGORIES
   ========================================================================== */
.billing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.billing-toggle {
  background: #080a0e;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 4px;
  display: inline-flex;
  gap: 6px;
  box-shadow: 0 0 25px rgba(245, 175, 25, 0.15);
}

.billing-btn {
  background: transparent;
  border: none;
  color: #929bb0;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.billing-btn:hover {
  color: #fff;
}

.billing-btn.active {
  background: var(--gradient-gold);
  color: #050608;
  box-shadow: var(--shadow-gold);
}

.discount-badge {
  background: #050608;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.billing-btn.active .discount-badge {
  background: rgba(5, 6, 8, 0.85);
  color: var(--gold-glow);
  border-color: #050608;
}

.price-suffix {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8c97af;
  margin-left: 4px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #929db2;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.filter-tab:hover {
  color: #fff;
  border-color: var(--border-gold);
}

.filter-tab.active {
  background: var(--gradient-gold);
  color: #050608;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   PRODUCTS GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: var(--backdrop-blur);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-strong);
  box-shadow: var(--shadow-gold-lg);
  background: var(--bg-card-hover);
}

.product-card:hover::before {
  opacity: 1;
}

.card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tier-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.product-badge {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: rgba(245, 175, 25, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.product-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(245, 175, 25, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-glow);
  margin-bottom: 14px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.86rem;
  color: #8c97af;
  margin-bottom: 16px;
  min-height: 38px;
}

.product-perks {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-perks li {
  font-size: 0.82rem;
  color: #c4ccd9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-perks li i {
  color: var(--gold-glow);
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  margin-top: auto;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-lbl {
  font-size: 0.7rem;
  color: #7b869e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

/* ==========================================================================
   FEATURES / RULES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: var(--backdrop-blur);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 175, 25, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-glow);
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-text {
  color: #8c97af;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold-glow);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 16px;
  color: #9aa4b7;
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   DRAWER / CART
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #080a0e;
  border-left: 1px solid var(--border-gold);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold-light);
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: #8c97af;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-cart-btn:hover {
  color: var(--gold-glow);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  text-align: center;
  color: #808b9f;
  margin: auto 0;
}

.cart-empty i {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--gold-dark);
  opacity: 0.6;
}

.cart-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-info h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-glow);
  font-weight: 800;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ff5555;
  cursor: pointer;
  padding: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cart-item-remove:hover {
  transform: scale(1.15);
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-subtle);
  background: #050608;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #8c97af;
}

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  border-top: 1px solid var(--border-glass);
  padding-top: 8px;
}

.total-val {
  color: var(--gold-light);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   MODAL & POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #080a0e;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #8c97af;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-glow);
}

/* OAuth Login Modal */
.login-modal-content {
  text-align: center;
}

.login-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.login-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-glow);
  box-shadow: 0 0 25px rgba(245, 175, 25, 0.4);
  object-fit: cover;
}

.login-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}

.login-desc {
  font-size: 0.9rem;
  color: #8c97af;
  margin-bottom: 22px;
  line-height: 1.5;
}

.oauth-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-oauth-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.btn-oauth-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

.btn-oauth-google {
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-oauth-google:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.oauth-disclaimer {
  font-size: 0.76rem;
  color: #6a7489;
  line-height: 1.4;
}

/* ==========================================================================
   ADMIN PANEL & ORDER VERIFICATION
   ========================================================================== */
.admin-modal-card {
  max-width: 820px !important;
  max-height: 90vh;
  overflow-y: auto;
}

.admin-auth-screen {
  text-align: center;
  padding: 10px;
}

.admin-shield-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 175, 25, 0.12);
  border: 1px solid var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-glow);
  margin: 0 auto 14px;
  box-shadow: var(--shadow-gold);
}

.admin-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.admin-subtitle {
  font-size: 0.86rem;
  color: #8c97af;
  margin-bottom: 20px;
}

.admin-subtitle code {
  color: var(--gold-light);
  background: rgba(245, 175, 25, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.admin-auth-form {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  background: #050608;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold-glow);
  box-shadow: 0 0 15px rgba(245, 175, 25, 0.3);
}

.admin-dashboard-screen {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.admin-dash-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold-light);
}

.admin-box-lbl {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.verify-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.verify-result-card {
  background: #050608;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 12px;
  animation: slideIn 0.3s ease;
}

.verify-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.verify-badge {
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-pending { background: rgba(245, 175, 25, 0.2); color: #ffd700; border: 1px solid #f5af19; }
.badge-verified { background: rgba(87, 242, 135, 0.2); color: #57f287; border: 1px solid #57f287; }
.badge-delivered { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid #3b82f6; }
.badge-rejected { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid #ef4444; }

.verify-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.table-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.orders-table-container {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: #050608;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.admin-table th {
  background: #0d1017;
  padding: 10px 14px;
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
  color: #cdd6e5;
}

.admin-table tr:hover td {
  background: rgba(245, 175, 25, 0.04);
}

/* ==========================================================================
   TOASTS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #0f1219;
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold-lg);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast i {
  color: var(--gold-glow);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: #030406;
  padding: 50px 24px 24px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-tagline {
  color: #7a8498;
  font-size: 0.88rem;
  margin-top: 10px;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--gold-light);
}

.footer-links a {
  display: block;
  color: #8c97af;
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-glow);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 215, 0, 0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #616a7d;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom code {
  color: var(--gold-glow);
  background: rgba(245, 175, 25, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .verify-input-group { flex-direction: column; }
}
