/* ==========================================================================
   FIVE STORE — OFFICIAL STYLESHEET
   Design System: Electric Blue & White Glow • Obsidian Glassmorphism • High Performance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
  /* Color Palette: Deep Blue, Electric Cyan, Pure White */
  --bg-main: #040711;
  --bg-surface: #080d1c;
  --bg-card: rgba(11, 18, 38, 0.75);
  --bg-card-hover: rgba(16, 26, 56, 0.85);
  --bg-glass: rgba(10, 16, 32, 0.65);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.16);
  --border-blue: rgba(0, 140, 255, 0.35);
  --border-glow: rgba(0, 210, 255, 0.6);

  --accent-blue: #0084ff;
  --accent-cyan: #00d2ff;
  --accent-bright: #38b6ff;
  --accent-glow: rgba(0, 132, 255, 0.35);
  --accent-glow-strong: rgba(0, 210, 255, 0.55);

  --text-primary: #ffffff;
  --text-secondary: #a9b7cf;
  --text-muted: #6e7e9a;
  
  --discord-blurple: #5865F2;
  --discord-glow: rgba(88, 101, 242, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', var(--font-main);

  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 132, 255, 0.08);
  --shadow-glow: 0 0 35px var(--accent-glow);
  --shadow-btn: 0 8px 30px rgba(0, 132, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

/* Background Atmosphere */
.ambient-mesh {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(0, 132, 255, 0.18), transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(0, 210, 255, 0.14), transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(0, 102, 255, 0.12), transparent 45%),
    #040711;
  z-index: -3;
  pointer-events: none;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
  will-change: left, top;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #06112c, #004c99, #0077dd, #004c99, #06112c);
  background-size: 200% 100%;
  animation: shineGradient 8s ease infinite;
  border-bottom: 1px solid rgba(0, 210, 255, 0.3);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 60;
}

.top-announcement span.badge-pill {
  background: #ffffff;
  color: #0066cc;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
}

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

/* ==========================================================================
   HEADER & FLOATING NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 20px;
  margin-bottom: -72px;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(8, 14, 30, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 160, 255, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 132, 255, 0.12);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(244, 170, 36, 0.5);
  box-shadow: 0 0 20px rgba(244, 170, 36, 0.28);
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-link:hover .brand-logo-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 26px rgba(244, 170, 36, 0.5);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-name span {
  color: var(--accent-cyan);
  text-shadow: 0 0 16px rgba(0, 210, 255, 0.7);
}

.brand-tag {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffffff;
  background: rgba(0, 132, 255, 0.2);
  border: 1px solid rgba(0, 160, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}

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

.cart-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #ffffff;
  position: relative;
}

.cart-toggle-btn:hover {
  background: rgba(0, 132, 255, 0.2);
  border-color: var(--accent-bright);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00d2ff, #0066ff);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 0 12px rgba(0, 160, 255, 0.8);
}

.discord-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px var(--discord-glow);
}

.discord-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 125px 24px 50px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6) saturate(1.1);
  transform: scale(1.03);
  transition: transform 0.6s ease;
  z-index: 1;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(0, 132, 255, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(4, 7, 17, 0.5) 0%, rgba(4, 7, 17, 0.85) 65%, #040711 100%),
    linear-gradient(90deg, rgba(4, 7, 17, 0.8) 0%, transparent 40%, transparent 60%, rgba(4, 7, 17, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(0, 132, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 132, 255, 0.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffaa;
  box-shadow: 0 0 12px #00ffaa;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px #00ffaa; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #38b6ff 70%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 180, 255, 0.35);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 26px;
}

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

/* Common Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0084ff, #0055d4);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1aa0ff, #0066ee);
  box-shadow: 0 12px 40px rgba(0, 132, 255, 0.6);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: #040816;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-white:hover {
  transform: translateY(-3px);
  background: #e6f2ff;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 180, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1040px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(12, 22, 48, 0.75) 0%, rgba(6, 12, 28, 0.9) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 166, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 136, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d2ff, transparent);
  animation: statsTopShine 4s infinite linear;
}

@keyframes statsTopShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 6px 12px;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
}

.hero-stat-val .stat-count {
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.hero-stat-val .stat-suffix,
.hero-stat-val span:not(.stat-count) {
  color: var(--accent-cyan);
  font-weight: 900;
  margin-left: 2px;
}

.hero-stat-lbl {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.13em;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  flex-wrap: wrap;
}

.stat-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(0, 255, 170, 0.12);
  border: 1px solid rgba(0, 255, 170, 0.45);
  color: #00ffaa;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 0 10px rgba(0, 255, 170, 0.25);
  transition: opacity 0.3s ease;
}

.stat-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ffaa;
  box-shadow: 0 0 8px #00ffaa;
  animation: pulseGreen 1.5s infinite;
}

.hero-stat-card.stat-complete .hero-stat-val {
  animation: statGlowPulse 1.1s ease-out;
}

@keyframes statGlowPulse {
  0% { transform: scale(1); text-shadow: 0 0 25px rgba(0, 210, 255, 0.35); }
  45% { transform: scale(1.04); text-shadow: 0 0 35px rgba(0, 210, 255, 0.8), 0 0 12px #ffffff; }
  100% { transform: scale(1); text-shadow: 0 0 25px rgba(0, 210, 255, 0.35); }
}

/* ==========================================================================
   TICKER MARQUEE
   ========================================================================== */
.ticker-wrap {
  overflow: hidden;
  background: #03060f;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerSlide 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  white-space: nowrap;
}

.ticker-item b {
  color: var(--accent-cyan);
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LAYOUT & SECTIONS
   ========================================================================== */
.main-content {
  position: relative;
  z-index: 5;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.section-title span {
  color: var(--accent-cyan);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-top: 10px;
}

/* ==========================================================================
   PRODUCTS CATALOG
   ========================================================================== */
.product-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 23, 48, 0.7);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-blue);
}

.filter-btn {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.filter-btn:hover {
  color: #ffffff;
}

.filter-btn.active {
  background: #ffffff;
  color: #040816;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 255, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 132, 255, 0.25);
  background: var(--bg-card-hover);
}

.product-thumb-wrap {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #030610;
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.product-thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0.1) 0%, rgba(4, 8, 20, 0.85) 100%);
}

.card-top-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.badge-category {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 14, 35, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 180, 255, 0.4);
  color: #38b6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-highlight {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #00d2ff, #0077ff);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.5);
}

.product-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.product-meta-row span.framework {
  color: #38b6ff;
}

.product-meta-row span.delivery {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #00ffaa;
}

.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.product-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #a0aec5;
}

.product-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

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

.price-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-view {
  padding: 11px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.btn-card-view:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn-card-cart {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.4);
  color: #38d6ff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-card-cart:hover {
  background: rgba(0, 210, 255, 0.24);
  border-color: #00d2ff;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.35);
  transform: translateY(-2px);
}

.btn-card-buy {
  padding: 10px 15px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0084ff, #005cd4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-card-buy:hover {
  background: linear-gradient(135deg, #1aa0ff, #006ef5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.6);
}

.btn-card-add {
  padding: 11px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0084ff, #005cd4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4);
}

.btn-card-add:hover {
  background: linear-gradient(135deg, #1aa0ff, #006ef5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.6);
}

/* ==========================================================================
   REVIEWS & RATINGS SECTION
   ========================================================================== */
.reviews-section {
  background: rgba(6, 11, 26, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reviews-summary-card {
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.12), rgba(0, 210, 255, 0.03));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: 36px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rating-score-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.score-big {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.score-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars-row {
  color: #ffb800;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}

.rating-count-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 180, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}

.reviewer-name {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(0, 255, 170, 0.12);
  color: #00ffaa;
  border: 1px solid rgba(0, 255, 170, 0.3);
}

.reviewer-role {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.review-date {
  font-size: 11px;
  color: var(--text-muted);
}

.review-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 132, 255, 0.1);
  color: #38b6ff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  width: fit-content;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==========================================================================
   SHOWCASE VIDEO SECTION
   ========================================================================== */
.showcase-banner {
  background: radial-gradient(circle at 75% 40%, rgba(0, 132, 255, 0.18), transparent 45%),
              linear-gradient(135deg, #09122c, #050a18);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-card);
}

.showcase-info-col {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-info-col h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.showcase-info-col p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.video-thumb-trigger {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0.2) 0%, rgba(4, 8, 20, 0.8) 100%);
  transition: opacity 0.3s ease;
}

.video-thumb-trigger:hover .video-thumb-overlay {
  background: linear-gradient(180deg, rgba(0, 132, 255, 0.2) 0%, rgba(4, 8, 20, 0.85) 100%);
}

.video-play-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.play-ring-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  color: #040816;
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(0, 180, 255, 0.8);
  padding-left: 4px;
  transition: all 0.3s ease;
}

.video-thumb-trigger:hover .play-ring-btn {
  transform: scale(1.12);
  background: var(--accent-cyan);
  box-shadow: 0 0 60px rgba(0, 210, 255, 0.9);
}

.video-label-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   FEATURES / BENEFITS GRID
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 255, 0.4);
  background: var(--bg-card-hover);
}

.benefit-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 132, 255, 0.12);
  border: 1px solid rgba(0, 180, 255, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent-cyan);
  font-size: 22px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.2);
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(0, 180, 255, 0.4);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon-cross {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.faq-item[open] .faq-icon-cross {
  transform: rotate(45deg);
  background: var(--accent-blue);
  color: #ffffff;
}

.faq-answer {
  padding: 0 26px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ==========================================================================
   DISCORD BIG CTA BANNER
   ========================================================================== */
.discord-big-banner {
  margin: 40px auto 100px;
  max-width: 1240px;
  padding: 70px 60px;
  border-radius: var(--radius-xl);
  background: 
    radial-gradient(circle at 80% 30%, rgba(88, 101, 242, 0.35), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(0, 180, 255, 0.25), transparent 40%),
    linear-gradient(135deg, #090f24, #050917);
  border: 1px solid rgba(88, 101, 242, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(88, 101, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-left h2 span {
  color: var(--accent-cyan);
}

.cta-left p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 580px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #02050d;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px 40px;
}

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

.footer-brand-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col ul a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   SLIDE-OVER SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: #060b18;
  border-left: 1px solid var(--border-blue);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.8);
  z-index: 100;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-title-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.cart-title-box span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #ffffff;
}

.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.cart-item-info b {
  font-size: 13px;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.cart-item-info small {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 12px;
}

.cart-qty-ctrls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #ffffff;
}

.cart-qty-btn:hover {
  background: var(--accent-blue);
}

.cart-qty-val {
  font-size: 12px;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.cart-item-del {
  color: #ff5566;
  font-size: 16px;
  opacity: 0.7;
}

.cart-item-del:hover {
  opacity: 1;
}

.cart-empty-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
}

.cart-empty-icon {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cart-empty-view h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.cart-empty-view p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: #040813;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.cart-total-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

.cart-notice-box {
  background: rgba(0, 132, 255, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 11px;
  line-height: 1.5;
  color: #7bc4ff;
  margin-bottom: 16px;
}

.btn-checkout-discord {
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0084ff, #0052cc);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(0, 132, 255, 0.4);
}

.btn-checkout-discord:hover {
  background: linear-gradient(135deg, #1aa0ff, #0066ee);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 132, 255, 0.6);
}

/* ==========================================================================
   MODAL VIDEO PLAYER
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal-backdrop.open {
  display: grid;
}

.video-modal-card {
  width: min(1000px, 95vw);
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.video-iframe-wrap,
.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(9, 16, 36, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.4);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #00ffaa;
  font-size: 16px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFICS
   ========================================================================== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: flex-start;
  padding-top: 130px;
}

.detail-gallery-col {
  position: sticky;
  top: 100px;
}

.detail-main-img-box {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-card);
  background: #050914;
}

.detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info-col {
  display: flex;
  flex-direction: column;
}

.detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.detail-breadcrumbs a {
  color: var(--text-secondary);
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.detail-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.detail-price-card {
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.12), rgba(0, 210, 255, 0.03));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-price-left small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.detail-price-left strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
}

.detail-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.detail-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.detail-feature-item span.chk {
  color: var(--accent-cyan);
  font-weight: 900;
}

.detail-specs-table {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 30px;
}

.specs-head {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-cyan);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span.k {
  color: var(--text-muted);
}

.spec-row span.v {
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVENESS & BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-banner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-gallery-col {
    position: static;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #080e22;
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: grid;
    place-items: center;
  }

  .discord-pill-btn span.lbl {
    display: none;
  }

  .hero-section {
    padding: 100px 18px 45px;
    min-height: auto;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px 14px;
  }

  .hero-stat-card {
    padding: 6px 4px;
  }

  .hero-stat-val {
    font-size: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-filter-bar {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .reviews-summary-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .discord-big-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGE HERO & HEADERS
   ========================================================================== */
.subpage-header {
  padding: 130px 24px 50px;
  text-align: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.subpage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 132, 255, 0.12);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.2);
}

.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.subpage-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 28px;
}

/* Catalog Search & Controls */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 35px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  backdrop-filter: blur(16px);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(4, 8, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ==========================================================================
   EIGENAARS VAN FIVE STORE (BO!T & MOHAMAD)
   ========================================================================== */
.owners-section {
  padding: 80px 0;
  position: relative;
}

.owners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.owner-card {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 24, 52, 0.85) 0%, rgba(8, 14, 30, 0.9) 100%);
  border: 1px solid rgba(0, 140, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 132, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 45px rgba(0, 210, 255, 0.25);
}

.owner-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.owner-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.owner-avatar-frame {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ffd700, #00d2ff, #0066ff);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.45);
  flex-shrink: 0;
}

.owner-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #040816;
}

.owner-crown-tag {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #080d1c;
  border: 1px solid #ffd700;
  color: #ffd700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.owner-meta-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.owner-name-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.owner-verified-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(0, 210, 255, 0.2));
  border: 1px solid #ffd700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.owner-role-lbl {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.owner-sub-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.owner-bio-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.owner-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.owner-skill-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(0, 132, 255, 0.12);
  border: 1px solid rgba(0, 132, 255, 0.28);
  border-radius: var(--radius-full);
  color: #c9e2ff;
}

.owner-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.owner-discord-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.owner-discord-handle svg {
  color: var(--discord-blurple);
}

/* Avatar Link Paste Triggers & Tip Box */
.owner-avatar-tip-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 132, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.owner-avatar-tip-box .tip-icon {
  font-size: 24px;
  line-height: 1;
}

.owner-avatar-tip-box .tip-content {
  color: #c0ddff;
  font-size: 0.92rem;
  line-height: 1.55;
}

.owner-avatar-tip-box .tip-content b {
  color: #fff;
}

.owner-avatar-tip-box .tip-content code {
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--accent-cyan);
  font-family: monospace;
}

.btn-owner-avatar-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 140, 255, 0.12);
  border: 1px dashed rgba(0, 180, 255, 0.5);
  color: #70c4ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.22s ease;
  width: fit-content;
}

.btn-owner-avatar-edit:hover {
  background: rgba(0, 140, 255, 0.28);
  border-color: #00d2ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.35);
}

/* Modal for Pasting Avatar Links */
.avatar-modal-card {
  background: #070c1d;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 95%;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 132, 255, 0.25);
  animation: fadeIn 0.25s ease;
}

.avatar-preview-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ffd700, #00d2ff, #0066ff);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.45);
  margin: 16px auto 20px;
  overflow: hidden;
  position: relative;
}

.avatar-preview-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #040816;
}

.avatar-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-avatar-save {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #00d2ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.4);
  transition: all 0.22s ease;
}

.btn-avatar-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.5);
}

.btn-avatar-reset {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-avatar-reset:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.avatar-code-box {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(4, 8, 20, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.avatar-code-box b {
  color: #fff;
}

.avatar-code-snippet {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #020409;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 132, 255, 0.2);
  color: var(--accent-cyan);
  font-family: monospace;
  font-size: 0.82rem;
  overflow-x: auto;
}

.btn-copy-code {
  background: rgba(0, 132, 255, 0.25);
  border: 1px solid var(--border-blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.btn-copy-code:hover {
  background: var(--accent-blue);
}

/* ==========================================================================
   REVIEW SYSTEM & LIVE PREVIEW (STARTS AT 0)
   ========================================================================== */
.review-stats-banner {
  background: linear-gradient(135deg, rgba(12, 20, 44, 0.9), rgba(6, 10, 24, 0.9));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 132, 255, 0.1);
}

.review-stats-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.review-count-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.review-count-big span {
  font-size: 2rem;
  color: var(--accent-cyan);
}

.review-stats-meta h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}

.review-stats-meta p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.empty-reviews-state {
  text-align: center;
  padding: 70px 30px;
  background: var(--bg-card);
  border: 1px dashed var(--border-blue);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
}

.empty-reviews-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 15px var(--accent-glow));
}

.empty-reviews-state h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.empty-reviews-state p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 0.95rem;
}

/* Review Form & Live Preview Section */
.review-creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: 36px 36px;
  margin-bottom: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.review-form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: flex-start;
  margin-top: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 8, 20, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Star Rating Selector */
.star-rating-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.star-rating-selector .star-btn {
  font-size: 2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, color 0.15s ease;
  user-select: none;
}

.star-rating-selector .star-btn.active,
.star-rating-selector .star-btn:hover {
  color: #ffd700;
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.rating-score-label {
  font-weight: 700;
  color: #ffd700;
  margin-left: 10px;
  font-size: 1.1rem;
}

/* Live Preview Box */
.live-preview-box {
  background: rgba(6, 10, 24, 0.85);
  border: 1px dashed var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.live-preview-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ==========================================================================
   PAYMENT MODAL & DIRECT BUY CHECKOUT (iDEAL, PAYPAL, TIKKIE, BANCONTACT)
   ========================================================================== */
.payment-modal-card {
  background: #070c1d;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 132, 255, 0.25);
}

.payment-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-modal-close:hover {
  background: rgba(255, 50, 50, 0.2);
  border-color: rgba(255, 50, 50, 0.5);
  transform: rotate(90deg);
}

.payment-header {
  margin-bottom: 24px;
}

.payment-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Order Item Banner in Modal */
.order-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 132, 255, 0.08);
  border: 1px solid rgba(0, 132, 255, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.order-preview-bar .prod-info b {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.order-preview-bar .prod-info small {
  color: var(--accent-bright);
}

.order-preview-bar .prod-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.payment-method-card {
  position: relative;
  background: rgba(10, 17, 36, 0.8);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  user-select: none;
}

.payment-method-card:hover {
  background: rgba(14, 25, 52, 0.9);
  border-color: rgba(0, 140, 255, 0.5);
  transform: translateY(-2px);
}

.payment-method-card.selected {
  background: rgba(0, 132, 255, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.payment-method-card .method-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.payment-method-card .method-details b {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.payment-method-card .method-details small {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.25;
  display: block;
}

.payment-method-card .method-radio-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  display: grid;
  place-items: center;
}

.payment-method-card.selected .method-radio-dot {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* iDEAL Bank Select */
.ideal-bank-selector {
  margin-bottom: 20px;
  animation: fadeIn 0.2s ease;
}

.ideal-bank-selector label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.ideal-bank-selector select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 8, 20, 0.9);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

/* Payment Form Fields */
.payment-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.payment-input-box label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.payment-input-box input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(4, 8, 20, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.92rem;
  outline: none;
}

.payment-input-box input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Payment Action Button */
.btn-pay-complete {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #00d2ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 132, 255, 0.4);
  transition: all 0.25s ease;
}

.btn-pay-complete:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.55);
}

/* Order Confirmation Screen */
.order-success-screen {
  text-align: center;
  padding: 10px 0;
  animation: fadeIn 0.3s ease;
}

.order-success-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 210, 130, 0.15);
  border: 2px solid #00d282;
  color: #00d282;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px rgba(0, 210, 130, 0.4);
}

.order-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 132, 255, 0.12);
  border: 1px dashed var(--border-blue);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 14px 0 20px;
}

.order-step-guide {
  text-align: left;
  background: rgba(6, 11, 26, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.order-step-guide ol {
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.order-step-guide li b {
  color: #fff;
}

/* 🤖 Discord Bot Automatische Rol Status Paneel */
.order-bot-box {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.18) 0%, rgba(14, 23, 48, 0.95) 100%);
  border: 1px solid rgba(88, 101, 242, 0.5);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 16px 0;
  text-align: left;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.25);
  position: relative;
  overflow: hidden;
}

.order-bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.order-bot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #5865f2;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-bot-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid #ffd700;
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.order-bot-cmd-box {
  background: #040816;
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: #38d6ff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  word-break: break-all;
}

/* 📧 Gmail Bevestiging Paneel */
.order-email-box {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.16) 0%, rgba(14, 23, 48, 0.95) 100%);
  border: 1px solid rgba(234, 67, 53, 0.45);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 16px 0;
  text-align: left;
  box-shadow: 0 0 25px rgba(234, 67, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.order-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ea4335;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.btn-open-gmail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ea4335, #c5221f);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-open-gmail:hover {
  background: linear-gradient(135deg, #ff5747, #d93025);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.6);
}

.btn-print-invoice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-print-invoice:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .subpage-header {
    padding: 110px 20px 35px;
  }

  .owners-grid {
    grid-template-columns: 1fr;
  }

  .review-stats-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
  }

  .review-form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .payment-inputs-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DISCORD OAUTH — NAVBAR AUTH STYLES
   ========================================================================== */

/* Login button (not logged in) */
.nav-discord-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.nav-discord-login-btn:hover {
  background: rgba(88, 101, 242, 0.3);
  border-color: #5865f2;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.4);
  transform: translateY(-1px);
}

/* User pill (logged in) */
.nav-user-pill {
  position: relative;
  cursor: pointer;
}

.nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 210, 130, 0.6);
  transition: all 0.2s ease;
  display: block;
  cursor: pointer;
}
.nav-user-avatar:hover {
  border-color: #00d282;
  box-shadow: 0 0 14px rgba(0, 210, 130, 0.5);
  transform: scale(1.05);
}

/* Dropdown */
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  background: rgba(8, 14, 30, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(88, 101, 242, 0.15);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
}
.nav-user-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.nav-user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.nav-dd-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(0, 210, 130, 0.5);
  flex-shrink: 0;
}
.nav-dd-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dd-sub {
  font-size: 0.72rem;
  color: #00d282;
  margin-top: 1px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav-dd-logout {
  color: #ff6b6b;
}
.nav-dd-logout:hover {
  background: rgba(255, 71, 87, 0.12);
  color: #ff4757;
}

/* ==========================================================================
   MIJN AANKOPEN DASHBOARD & CUSTOMER PORTAL (Matches Image 1)
   ========================================================================== */
.dash-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.dash-hero-card {
  background: radial-gradient(ellipse 65% 80% at 85% 20%, rgba(0, 136, 255, 0.22), transparent 70%), rgba(8, 14, 30, 0.88);
  border: 1px solid rgba(0, 140, 255, 0.35);
  border-radius: 26px;
  padding: 38px 42px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 136, 255, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dash-hero-top {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
}

.dash-avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.dash-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 210, 255, 0.85);
  box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
  display: block;
}

.dash-avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.4) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.dash-hero-info {
  flex: 1;
}

.dash-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 136, 255, 0.15);
  border: 1px solid rgba(0, 136, 255, 0.45);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dash-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.dash-hero-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.dash-user-glow {
  color: var(--accent-bright);
  text-shadow: 0 0 25px rgba(0, 180, 255, 0.55);
}

.dash-hero-subtitle {
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Stats Row in Header Card (Image 1) */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dash-stat-box {
  background: rgba(14, 22, 44, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.dash-stat-box:hover {
  border-color: rgba(0, 140, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dash-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 136, 255, 0.1);
  border: 1px solid rgba(0, 136, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.dash-icon-discord {
  background: rgba(35, 165, 90, 0.15);
  border-color: rgba(35, 165, 90, 0.35);
  color: #23a55a;
}

.dash-stat-content {
  overflow: hidden;
}

.dash-stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.dash-stat-num.text-success {
  color: #23a55a;
  font-size: 1.15rem;
  font-weight: 700;
}

.dash-stat-name {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Key Inwisselen Banner */
.dash-redeem-banner {
  margin-top: 24px;
  background: rgba(11, 18, 38, 0.65);
  border: 1px solid rgba(0, 136, 255, 0.22);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dash-redeem-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-redeem-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 136, 255, 0.12);
  border: 1px solid rgba(0, 136, 255, 0.25);
  display: grid;
  place-items: center;
}

.dash-redeem-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.dash-redeem-left p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.dash-redeem-form {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  max-width: 420px;
}

.dash-redeem-form input {
  flex: 1;
  background: rgba(4, 7, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-family: monospace;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.dash-redeem-form input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

/* JOUW BIBLIOTHEEK Sectie (Image 1) */
.dash-library-section {
  margin-top: 48px;
}

.dash-library-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-library-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.dash-library-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.dash-library-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 136, 255, 0.12);
  border: 1px solid rgba(0, 136, 255, 0.3);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.dash-library-card {
  background: rgba(8, 13, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 60px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.dash-empty-content {
  color: var(--text-secondary);
  font-size: 0.96rem;
  font-weight: 500;
}

.dash-catalog-link {
  color: var(--accent-cyan);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 3px;
  transition: color 0.15s;
}

.dash-catalog-link:hover {
  color: #fff;
}

/* Purchased Item Card */
.dash-product-card {
  background: rgba(11, 18, 38, 0.75);
  border: 1px solid rgba(0, 140, 255, 0.25);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(10px);
}

.dash-product-card:hover {
  border-color: rgba(0, 210, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 136, 255, 0.15);
}

.dash-prod-thumb {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.dash-prod-details {
  flex: 1;
}

.dash-prod-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dash-prod-badge {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dash-prod-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.dash-prod-key-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(0, 210, 255, 0.35);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--accent-bright);
}

.dash-copy-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s;
}

.dash-copy-btn:hover {
  color: #fff;
}

.dash-prod-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

@media (max-width: 860px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-hero-card {
    padding: 26px 20px;
  }
  .dash-hero-title {
    font-size: 1.8rem;
  }
  .dash-product-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-prod-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 520px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }
  .dash-hero-top {
    flex-direction: column;
    text-align: center;
  }
  .dash-redeem-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .dash-prod-actions {
    flex-direction: column;
  }
}
