/* =====================================================================
   DONUTSMP SHOP — GLOBAL STYLESHEET
   Design system: dark voxel-glass / neon purple
   =====================================================================
   Table of contents:
   1.  Fonts & Reset
   2.  Design Tokens (CSS Variables)
   3.  Base Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Announcement Banner
   7.  Navbar
   8.  Mobile Menu
   9.  Hero
   10. Section Headers
   11. Stats / Counters
   12. Categories
   13. Product Cards
   14. Tabs / Filters
   15. Why Choose Us
   16. Reviews
   17. FAQ Accordion
   18. Newsletter
   19. Discord CTA
   20. Contact
   21. Footer
   22. Cart Drawer
   23. Toasts
   24. Loading Screen & Skeletons
   25. Back To Top
   26. Cookie Popup
   27. Misc / Scrollbar
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Fonts & Reset
   --------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------
   2. Design Tokens
   --------------------------------------------------------------------- */
:root {
  /* --- Surfaces --- */
  --bg-void: #06050a;          /* page background, near-black w/ violet tint */
  --bg-deep: #0b0912;          /* secondary section background */
  --bg-surface: #120f1c;       /* raised surface (cards, before glass) */
  --bg-surface-2: #171325;

  /* --- Glass --- */
  --glass-fill: rgba(255, 255, 255, 0.035);
  --glass-fill-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(196, 152, 255, 0.16);
  --glass-border-strong: rgba(196, 152, 255, 0.34);
  --glass-blur: blur(16px);

  /* --- Brand purples --- */
  --purple-900: #2c1065;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #9333ea;
  --purple-400: #b165f5;
  --purple-300: #c9a3fb;

  /* --- Accent glow (magenta) --- */
  --glow-500: #d946ef;
  --glow-400: #e879f9;

  /* --- Warm accent (currency / sale / urgency) --- */
  --gold-500: #f5b942;
  --gold-400: #ffd680;

  /* --- Status --- */
  --success: #34d399;
  --danger: #f87171;
  --info: #60a5fa;

  /* --- Text --- */
  --text-primary: #f6f4fb;
  --text-secondary: #b9b3cc;
  --text-muted: #79738f;

  /* --- Gradients --- */
  --grad-brand: linear-gradient(135deg, var(--purple-600) 0%, var(--glow-500) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(217, 70, 239, 0.18) 100%);
  --grad-gold: linear-gradient(135deg, #ffb347 0%, var(--gold-500) 100%);
  --grad-text: linear-gradient(120deg, #e9d5ff 0%, var(--purple-300) 35%, var(--glow-400) 70%, #e9d5ff 100%);

  /* --- Shadows / glow --- */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --glow-purple: 0 0 0 1px rgba(147, 51, 234, 0.25), 0 0 30px rgba(147, 51, 234, 0.35);
  --glow-purple-lg: 0 0 0 1px rgba(147, 51, 234, 0.3), 0 0 60px rgba(147, 51, 234, 0.45);
  --glow-gold: 0 0 24px rgba(245, 185, 66, 0.45);

  /* --- Radius --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* --- Type --- */
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* --- Layout --- */
  --container-w: 1240px;
  --nav-h: 76px;
  --banner-h: 42px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.35s;
  --dur-slow: 0.6s;
}

/* ---------------------------------------------------------------------
   3. Base Typography
   --------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient voxel-grid background: a quiet nod to the blocky world these
   items live in, without reproducing any game asset — just a faint,
   evenly-spaced square grid that fades with depth. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(147, 51, 234, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 51, 234, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 15% 10%, rgba(124, 58, 237, 0.16), transparent 45%),
              radial-gradient(circle at 85% 30%, rgba(217, 70, 239, 0.1), transparent 40%),
              radial-gradient(circle at 50% 90%, rgba(124, 58, 237, 0.12), transparent 45%);
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.mono {
  font-family: var(--font-mono);
}

.gradient-text {
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-300);
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--purple-400);
  box-shadow: 0 0 10px var(--purple-400);
}

/* ---------------------------------------------------------------------
   4. Layout Utilities
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 100px 0;
}

.section-tight {
  padding: 60px 0;
}

.glass {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.glass-panel {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
  position: relative;
}

/* Beveled top-edge highlight — signature glass-card detail */
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 191, 255, 0.6), transparent);
  border-radius: inherit;
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  border: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------------------------------------------------------------
   5. Buttons
   --------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--glow-purple);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--glow-500), var(--purple-500));
  opacity: 0;
  transition: opacity var(--dur-med);
}

.btn-primary:hover {
  box-shadow: var(--glow-purple-lg);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  color: var(--text-primary);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: var(--glass-fill-hover);
  border-color: var(--purple-400);
  transform: translateY(-2px);
}

.btn-gold {
  color: #241203;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(245, 185, 66, 0.6);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 10px 16px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  transition: all var(--dur-fast) var(--ease-out);
}

.btn-icon:hover {
  border-color: var(--purple-400);
  background: var(--glass-fill-hover);
  transform: translateY(-1px);
}

.btn-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--text-primary);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: #241203;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(245, 185, 66, 0.6);
}

/* ---------------------------------------------------------------------
   6. Announcement Banner
   --------------------------------------------------------------------- */
.announcement-bar {
  height: var(--banner-h);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 10px, transparent 10px 20px);
}

.announcement-bar__text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.announcement-bar__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.85);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.announcement-bar__close:hover {
  background: rgba(255,255,255,0.15);
}

.announcement-bar.is-hidden {
  display: none;
}

/* ---------------------------------------------------------------------
   7. Navbar
   --------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6, 5, 10, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med), background var(--dur-med), box-shadow var(--dur-med);
}

.navbar.is-scrolled {
  background: rgba(8, 6, 14, 0.85);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.navbar__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-purple);
  position: relative;
  overflow: hidden;
}

.navbar__logo-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255,255,255,0.35), transparent 60%);
}

.navbar__logo-mark span {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  z-index: 1;
}

.navbar__logo-text .accent {
  color: var(--purple-300);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__links a {
  position: relative;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.navbar__links a:hover,
.navbar__links a.is-active {
  color: var(--text-primary);
  background: var(--glass-fill);
}

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

.navbar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 220px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  transition: border-color var(--dur-fast), width var(--dur-med);
}

.navbar__search:focus-within {
  border-color: var(--purple-400);
  width: 260px;
}

.navbar__search input {
  width: 100%;
  font-size: 13.5px;
  color: var(--text-primary);
}

.navbar__search input::placeholder {
  color: var(--text-muted);
}

.navbar__search svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  flex-shrink: 0;
}

.navbar__auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__hamburger {
  display: none;
}

/* ---------------------------------------------------------------------
   8. Mobile Menu
   --------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 5, 12, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(84vw, 360px);
  background: var(--bg-deep);
  border-left: 1px solid var(--glass-border);
  padding: 22px 22px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

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

.mobile-menu__links a {
  display: block;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.mobile-menu__auth {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------------------------------------------------------------------
   9. Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.35), transparent 65%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-300);
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 17.5px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__trust svg {
  width: 15px;
  height: 15px;
  stroke: var(--success);
}

/* Floating voxel chips drifting behind the hero copy */
.hero__floaters {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__floater {
  position: absolute;
  border-radius: 10px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  animation: float-y 7s ease-in-out infinite;
}

/* ---------------------------------------------------------------------
   10. Section Headers
   --------------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.section-head__text h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-top: 10px;
}

.section-head__text p {
  color: var(--text-secondary);
  margin-top: 8px;
  max-width: 520px;
  font-size: 15px;
}

/* ---------------------------------------------------------------------
   11. Stats / Counters
   --------------------------------------------------------------------- */
.stats {
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 22px;
  border-radius: var(--r-lg);
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card__label {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------------
   12. Categories
   --------------------------------------------------------------------- */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  padding: 26px 20px;
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-strong);
  box-shadow: var(--glow-purple);
}

.category-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: var(--r-md);
  background: var(--grad-brand-soft);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-300);
}

.category-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.category-card__count {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ---------------------------------------------------------------------
   13. Product Cards
   --------------------------------------------------------------------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-strong);
  box-shadow: var(--shadow-lg), var(--glow-purple);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-surface-2), var(--bg-surface));
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.badge-sale {
  background: rgba(248, 113, 113, 0.18);
  color: #ffb4b4;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.badge-featured {
  background: rgba(245, 185, 66, 0.16);
  color: var(--gold-400);
  border: 1px solid rgba(245, 185, 66, 0.4);
}

.badge-new {
  background: rgba(52, 211, 153, 0.16);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.badge-oos {
  background: rgba(121, 115, 143, 0.2);
  color: var(--text-muted);
  border: 1px solid rgba(121, 115, 143, 0.4);
}

.product-card__quickview {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-fast) var(--ease-out);
}

.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quickview button {
  width: 100%;
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  background: rgba(10, 8, 16, 0.7);
  color: #fff;
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(10px);
}

.product-card__quickview button:hover {
  background: var(--purple-600);
}

.product-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__category {
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
}

.product-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.price-strike {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__stock {
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.product-card__stock.is-low {
  color: var(--gold-400);
}

.product-card__stock.is-out {
  color: var(--danger);
}

.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-card__actions .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
}

.product-card__actions .btn-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

/* ---------------------------------------------------------------------
   14. Tabs / Filters
   --------------------------------------------------------------------- */
.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  transition: all var(--dur-fast);
}

.tab:hover {
  color: var(--text-primary);
}

.tab.is-active {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: var(--glow-purple);
}

/* ---------------------------------------------------------------------
   15. Why Choose Us
   --------------------------------------------------------------------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 30px 26px;
  border-radius: var(--r-lg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-brand-soft);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-300);
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------------------
   16. Reviews
   --------------------------------------------------------------------- */
.reviews__track-wrap {
  overflow: hidden;
  position: relative;
}

.reviews__track-wrap::before,
.reviews__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews__track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-void), transparent);
}

.reviews__track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-void), transparent);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 26px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-400);
  stroke: none;
}

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

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.review-card__author-name {
  font-size: 13.5px;
  font-weight: 600;
}

.review-card__author-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ---------------------------------------------------------------------
   17. FAQ Accordion
   --------------------------------------------------------------------- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}

.faq-item__q .icon-plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out);
}

.faq-item__q .icon-plus::before,
.faq-item__q .icon-plus::after {
  content: '';
  position: absolute;
  background: var(--purple-300);
  border-radius: 2px;
}

.faq-item__q .icon-plus::before {
  width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%);
}

.faq-item__q .icon-plus::after {
  width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%);
  transition: opacity var(--dur-fast);
}

.faq-item.is-open .icon-plus {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out);
}

.faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------------------
   18. Newsletter
   --------------------------------------------------------------------- */
.newsletter__panel {
  padding: 56px;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(147, 51, 234, 0.25), transparent 60%);
  pointer-events: none;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 26px auto 0;
}

.newsletter__form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  font-size: 14px;
}

.newsletter__form input::placeholder {
  color: var(--text-muted);
}

.newsletter__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   19. Discord CTA
   --------------------------------------------------------------------- */
.discord {
  padding: 70px 0;
}

.discord__panel {
  border-radius: var(--r-xl);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at 90% 20%, rgba(88, 101, 242, 0.22), transparent 55%),
    var(--glass-fill);
}

.discord__copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.discord__copy p {
  color: var(--text-secondary);
  max-width: 440px;
  font-size: 14.5px;
}

.discord__stats {
  display: flex;
  gap: 22px;
  margin-top: 16px;
}

.discord__stats div {
  font-family: var(--font-mono);
}

.discord__stats strong {
  display: block;
  font-size: 20px;
  color: var(--text-primary);
}

.discord__stats span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
}

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

/* ---------------------------------------------------------------------
   20. Contact
   --------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
}

.contact__info {
  padding: 34px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact__info-item .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--grad-brand-soft);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-item .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple-300);
}

.contact__info-item h4 {
  font-size: 14.5px;
  margin-bottom: 3px;
}

.contact__info-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact__form {
  padding: 34px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  transition: border-color var(--dur-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple-400);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ---------------------------------------------------------------------
   21. Footer
   --------------------------------------------------------------------- */
.footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-deep);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 46px;
}

.footer__brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}

.footer__links a:hover {
  color: var(--purple-300);
}

.footer__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.footer__payments span {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
}

.footer__bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 18px;
}

/* ---------------------------------------------------------------------
   22. Cart Drawer
   --------------------------------------------------------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(6, 5, 12, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

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

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(92vw, 420px);
  background: var(--bg-deep);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
}

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

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

.cart-drawer__head h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  animation: fade-slide-in var(--dur-med) var(--ease-out);
}

.cart-item__img {
  width: 66px;
  height: 66px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-surface-2);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__name {
  font-size: 14px;
  font-weight: 600;
}

.cart-item__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple-300);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--purple-400);
}

.cart-item__remove {
  font-size: 11.5px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item__remove:hover {
  color: var(--danger);
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
  color: var(--text-muted);
}

.cart-drawer__empty svg {
  width: 54px;
  height: 54px;
  stroke: var(--text-muted);
  opacity: 0.5;
}

.cart-drawer__foot {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-promo {
  display: flex;
  gap: 8px;
}

.cart-promo input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  font-size: 13px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.cart-summary-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
  padding-top: 8px;
  border-top: 1px solid var(--glass-border);
}

/* ---------------------------------------------------------------------
   23. Toasts
   --------------------------------------------------------------------- */
.toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(90vw, 340px);
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(15, 12, 24, 0.9);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  animation: toast-in var(--dur-med) var(--ease-spring);
}

.toast.is-leaving {
  animation: toast-out var(--dur-fast) var(--ease-out) forwards;
}

.toast__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast.success .toast__icon { background: rgba(52, 211, 153, 0.18); }
.toast.success .toast__icon svg { stroke: var(--success); }
.toast.error .toast__icon { background: rgba(248, 113, 113, 0.18); }
.toast.error .toast__icon svg { stroke: var(--danger); }
.toast.info .toast__icon { background: rgba(96, 165, 250, 0.18); }
.toast.info .toast__icon svg { stroke: var(--info); }

.toast__icon svg {
  width: 13px;
  height: 13px;
}

.toast__body h6 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.toast__body p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   24. Loading Screen & Skeletons
   --------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity var(--dur-slow) var(--ease-out), visibility var(--dur-slow);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-brand);
  box-shadow: var(--glow-purple-lg);
  animation: pulse-scale 1.4s ease-in-out infinite;
}

.loader__bar {
  width: 160px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: var(--grad-brand);
  border-radius: 2px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface-2);
  border-radius: var(--r-md);
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: skeleton-sweep 1.5s ease-in-out infinite;
}

.skeleton-card {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.skeleton-card .skeleton-media {
  aspect-ratio: 1/1;
}

.skeleton-card .skeleton-line {
  height: 12px;
  margin: 14px 18px;
  border-radius: 4px;
}

.skeleton-card .skeleton-line.w-60 { width: 60%; }
.skeleton-card .skeleton-line.w-40 { width: 40%; }

/* ---------------------------------------------------------------------
   25. Back To Top
   --------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 150;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: all var(--dur-med) var(--ease-out);
  box-shadow: var(--shadow-md);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--purple-400);
  box-shadow: var(--glow-purple);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-primary);
}

/* ---------------------------------------------------------------------
   26. Cookie Popup
   --------------------------------------------------------------------- */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 500;
  width: min(92vw, 380px);
  padding: 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease-out);
}

.cookie-popup.is-visible {
  transform: translateY(0);
}

.cookie-popup p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-popup__actions {
  display: flex;
  gap: 10px;
}

/* ---------------------------------------------------------------------
   27. Misc / Scrollbar
   --------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-700);
  border-radius: 6px;
  border: 2px solid var(--bg-void);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-500);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--purple-700) var(--bg-void);
}

::selection {
  background: var(--purple-600);
  color: #fff;
}
