/* =============================================================
   MONOCHROME THEME — Black & White with Animated Grid
   =============================================================
   TABLE OF CONTENTS:
   1. THEME VARIABLES
   2. ANIMATED GRID BACKGROUND
   3. BASE STYLES
   4. HEADER & TOPBAR
   5. NAVBAR / DOCK
   6. HERO SECTION
   7. PRODUCTS / CATALOG
   8. STATUS SECTION
   9. FAQ SECTION
   10. COMMUNITY / INFO CARDS
   11. PRODUCT PAGE
   12. SHOWCASE / GALLERY
   13. FEATURES SECTION
   14. FOOTER
   15. SCROLLBAR
   16. ANIMATIONS & REVEALS
   17. RESPONSIVE
   ============================================================= */

/* =============================================================
   1. THEME VARIABLES
   ============================================================= */
:root {
  /* Layout */
  --dock-margin: 170px;
  --dock-inner-pad: 24px;
  --dock-gap-top: -25px;
  --dock-max: 1440px;

  /* Gray & Blue Palette */
  --bg: #0f1012;
  --bg-elevated: #15161a;
  --bg-card: #17181d;
  --bg-card-hover: #1d1e23;
  --surface: #202127;
  --surface-2: #24252b;
  --border: #26272e;
  --border-hover: #33343c;
  --border-accent: #4b4c55;
  --text: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-dim: #52525b;
  --accent: #ec4899;
  --accent-soft: rgba(236,72,153,0.10);
  --glow: rgba(236,72,153,0.05);

  /* Legacy vars (keep for template compat) */
  --hdr-bg: #0f1012;
  --dock-bg: #141519;
  --dock-border: #26272e;
  --text: #e4e4e7;
  --muted: #71717a;
  --hover: #202127;
  --red: #ec4899;
  --red2: #ec4899;
  --blue: #ec4899;
  --hero-red: #ec4899;
  --c-bg: #0f1012;
  --c-panel: #17181d;
  --c-panel-2: #15161a;
  --c-stroke: #26272e;
  --c-text: #e4e4e7;
  --c-accent: #ec4899;
  --c-accent-soft: rgba(236,72,153,0.10);
  --shadow-1: 0 8px 32px rgba(10,10,12,0.6);
  --shadow-2: 0 16px 48px rgba(10,10,12,0.7);
  --accent-orange: #ec4899;
  --tw-bg: #0f1012;
  --tw-panel: #17181d;
  --tw-line: rgba(236,72,153,0.08);
  --tw-line-soft: rgba(236,72,153,0.04);
  --tw-text: #e4e4e7;
  --tw-muted: #71717a;
  --tw-red: #ec4899;
  --faq-accent: #ec4899;
  --faq-accent2: #ec4899;
  --faq-edge: rgba(236,72,153,0.06);
  --scroll-track: #0f1012;
  --scroll-thumb: #26272e;
  --scroll-thumb2: #1d1e23;
  --scroll-hover: #33343c;
}

/* =============================================================
   2. LIVING VOID BACKGROUND
   ============================================================= */
#void-canvas {
  position: fixed;
  inset: 0;
  z-index: -11;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: none;
}

/* Topographic contour lines — removed for a clean, simple look */
body::before {
  display: none;
}

/* Grain overlay — removed for a clean, simple look */
body::after {
  display: none;
}

/* Marker grid background - clean subtle blue-tinted blueprint grid, full page */
.marker-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -9;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 110% 70% at 50% -10%, rgba(236,72,153,0.10), transparent 60%),
    radial-gradient(ellipse 70% 55% at 90% 112%, rgba(219,39,119,0.06), transparent 60%),
    linear-gradient(rgba(148,163,184,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.055) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

@keyframes contourDrift {
  0%   { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 400px 200px, -300px 400px, 200px -300px; }
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2px, 3px); }
  50%  { transform: translate(3px, -1px); }
  75%  { transform: translate(-1px, -3px); }
  100% { transform: translate(2px, 1px); }
}

/* =============================================================
   QUYZAR FLY-IN — Q spins, uyzar slides in
   ============================================================= */
#qz-flyin {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -7;
  pointer-events: none;
  opacity: 0;
  display: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

#qz-flyin .qz-q {
  display: inline-block;
  font-size: 1.15em;
  background: linear-gradient(135deg, #e4e4e7 0%, #888 40%, #e4e4e7 60%, #666 80%, #e4e4e7 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: rotate(0deg) scale(0.5);
}

#qz-flyin .qz-rest {
  display: inline-block;
  background: linear-gradient(135deg, #e4e4e7 0%, #999 50%, #e4e4e7 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateX(60px);
}

/* Animation states — triggered by JS */
#qz-flyin.active {
  animation: qzFadeInOut 3.5s cubic-bezier(.2,.6,.2,1) forwards;
}
#qz-flyin.active .qz-q {
  animation: qSpin 3.5s cubic-bezier(.2,.6,.2,1) forwards;
}
#qz-flyin.active .qz-rest {
  animation: qSlide 3.5s cubic-bezier(.2,.6,.2,1) forwards;
}

@keyframes qzFadeInOut {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes qSpin {
  0%   { opacity: 0; transform: rotate(0deg) scale(0.5); }
  6%   { opacity: 1; }
  15%  { transform: rotate(360deg) scale(1); }
  30%  { transform: rotate(360deg) scale(1.05); }
  50%  { transform: rotate(360deg) scale(1); }
  70%  { opacity: 1; transform: rotate(360deg) scale(1); }
  100% { opacity: 0; transform: rotate(360deg) scale(0.9); }
}

@keyframes qSlide {
  0%   { opacity: 0; transform: translateX(60px); }
  6%   { opacity: 0; }
  18%  { opacity: 1; transform: translateX(0); }
  25%  { transform: translateX(-4px); }
  32%  { transform: translateX(0); }
  70%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-20px); }
}

@media (prefers-reduced-motion: reduce) {
  #qz-flyin { display: none; }
}

/* Soft mouse-following glow — neutral grey with subtle blue */
.grid-glow {
  position: fixed;
  inset: 0;
  z-index: -8;
  background:
    radial-gradient(circle 500px at var(--mx, 50%) var(--my, 50%), rgba(236,72,153,0.03), transparent 55%),
    radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(236,72,153,0.04), transparent 45%);
  pointer-events: none;
  transition: opacity 0.6s;
  mix-blend-mode: screen;
}

/* =============================================================
   3. BASE STYLES
   ============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  background: #0f1012;
  color: #e4e4e7;
  font-family: var(--bs-font-sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================================================
   4. HEADER (topbar/site-header removed)
   ============================================================= */

.btn {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  padding: .6rem 1rem;
  border: 0;
}

.btn-cta-red {
  color: #0f1012;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 0 30px rgba(236,72,153,0.1);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-cta-red:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 40px rgba(236,72,153,0.15);
}

.btn-cta-red.alt {
  padding: .6rem 1.1rem;
}

/* Currency Selector */
.currency-selector.lg.top {
  position: relative;
}

.currency-selector.lg.top select {
  appearance: none;
  background: transparent;
  color: #c4c4cc;
  font-weight: 700;
  border: 1px solid rgba(236,72,153,0.12);
  padding: .55rem 2.25rem .55rem .8rem;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s;
}

.currency-selector.lg.top select:hover {
  border-color: rgba(236,72,153,0.25);
}

.currency-selector.lg.top::after {
  content: "▾";
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  color: #c4c4cc;
  pointer-events: none;
}

/* Cart Button */
.cart-btn.top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e4e4e7;
  color: #0f1012;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: .9rem;
  box-shadow: 0 0 20px rgba(236,72,153,0.08);
  transition: all .3s ease;
}

.cart-btn.top:hover {
  box-shadow: 0 0 30px rgba(236,72,153,0.15);
  transform: translateY(-2px);
}

.cart-btn.top .icon {
  width: 18px;
  height: 18px;
}

.cart-btn.top .count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: #831843;
  color: #e4e4e7;
  border-radius: 999px;
  font-weight: 800;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .25rem;
}

/* =============================================================
   5. NAVBAR / DOCK
   ============================================================= */
.navbar.component {
  background: transparent;
  border: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 5000;
}

.navbar.component.is-scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar.component.is-scrolled > .container {
  width: 100% !important;
  margin: -25px auto 0 !important;
  border-radius: 0;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.navbar.component > .container {
  max-width: none !important;
  width: calc(100% - (var(--dock-margin)*2)) !important;
  margin: var(--dock-gap-top) auto 0 !important;
  padding-left: var(--dock-inner-pad) !important;
  padding-right: var(--dock-inner-pad) !important;
  background: rgba(9,9,11,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(236,72,153,0.14);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(236,72,153,0.05), 0 0 28px rgba(236,72,153,0.06);
  position: relative;
}

.navbar.component .container.py-2 {
  padding-top: 1.05rem !important;
  padding-bottom: 1.05rem !important;
}

/* Brand */
.navbar.component .navbar-brand {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.navbar.component .navbar-brand img {
  height: 28px;
  width: auto;
  filter: invert(1) brightness(2);
}

/* Nav Links */
.navbar.component .navbar-nav.me-auto {
  gap: .3rem;
}

.navbar.component .navbar-nav.me-auto .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar.component .navbar-nav.me-auto .nav-link,
.navbar.component .nav-with-icon {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #a1a1aa;
  padding: .55rem .9rem;
  border-radius: 10px;
  transition: color .15s ease, background .15s ease, text-shadow .2s ease;
}

.navbar.component .navbar-nav.me-auto .nav-link:hover,
.navbar.component .nav-with-icon:hover,
.navbar.component .nav-with-icon:focus,
.navbar.component .nav-with-icon.active {
  background: rgba(236,72,153,0.05);
  color: #e4e4e7;
}

/* Separator */
.navbar.component .navbar-nav.me-auto .nav-item + .nav-item::before {
  content: "";
  position: absolute;
  left: -.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--border);
}

/* Nav Icons */
.navbar.component .nav-with-icon .nav-icon,
.navbar.component .navbar-nav.me-auto .nav-link .icon,
.navbar.component .navbar-nav.me-auto .nav-link svg {
  width: 18px;
  height: 18px;
  color: inherit;
  flex: 0 0 18px;
  transition: filter .2s ease;
}

.navbar.component .nav-with-icon:hover .nav-icon,
.navbar.component .nav-with-icon.active .nav-icon {
  filter: drop-shadow(0 0 8px currentColor);
}

/* Tab Colors → Monochrome */
.navbar.component .nav-store { color: #e4e4e7; }
.navbar.component .nav-status { color: #a1a1aa; }
.navbar.component .nav-faq { color: #a1a1aa; }
.navbar.component .nav-forums { color: #a1a1aa; }

.navbar.component .nav-with-icon:not(:hover):not(.active) { color: #a1a1aa; }
.navbar.component .nav-with-icon.nav-store .nav-icon { color: #e4e4e7; }
.navbar.component .nav-with-icon.nav-status .nav-icon { color: #71717a; }
.navbar.component .nav-with-icon.nav-faq .nav-icon { color: #a1a1aa; }
.navbar.component .nav-with-icon.nav-forums .nav-icon { color: #71717a; }

.navbar.component .nav-with-icon.active,
.navbar.component .navbar-nav .nav-link.active,
.navbar.component .navbar-nav .nav-link[aria-current="page"] {
  font-weight: 800;
}

.navbar.component .nav-with-icon.active .nav-icon,
.navbar.component .navbar-nav .nav-link.active .nav-icon,
.navbar.component .navbar-nav .nav-link[aria-current="page"] .nav-icon {
  color: #e4e4e7;
  filter: drop-shadow(0 0 8px rgba(236,72,153,0.4));
}

/* Dock underline */
.navbar.component .container::before { display: none; }

.navbar.component .dock-underline {
  position: absolute;
  top: -9px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  width: var(--w, 48px);
  --scale: .65;
  transform: translateX(var(--x, 0px)) scaleX(var(--scale));
  transform-origin: center;
  background: linear-gradient(90deg, #e4e4e7, #a1a1aa);
  box-shadow: 0 0 14px rgba(236,72,153,0.2), 0 6px 14px rgba(0,0,0,0.25);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), width .28s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, opacity .2s ease;
  pointer-events: none;
  opacity: .95;
}

.navbar.component .dock-underline.is-hot {
  box-shadow: 0 0 18px rgba(236,72,153,0.3), 0 8px 18px rgba(0,0,0,0.28);
}

/* Right group */
.navbar.component .navbar-nav.gap-3 { align-items: center; gap: 12px !important; }

.navbar.component .btn.btn-outline-primary {
  color: #c4c4cc;
  background: rgba(236,72,153,0.04);
  border: 1px solid rgba(236,72,153,0.12);
}

.navbar.component .btn.btn-outline-primary:hover {
  background: rgba(236,72,153,0.08);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.06);
  color: #e4e4e7;
}

.navbar.component .currency-selector.lg:not(.top),
.navbar.component .nav-item.cart.d-none.d-lg-block {
  display: none !important;
}

/* Mobile Toggle */
.navbar.component .navbar-toggler {
  border: 0;
  padding: .35rem .5rem;
  background: rgba(236,72,153,0.05);
  border-radius: 10px;
}

.navbar.component .navbar-toggler:focus { box-shadow: none; }

.navbar.component .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background: #c4c4cc;
  display: inline-block;
  border-radius: 2px;
  position: relative;
}

.navbar.component .navbar-toggler-icon::before,
.navbar.component .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #c4c4cc;
  border-radius: 2px;
}

.navbar.component .navbar-toggler-icon::before { top: -6px; }
.navbar.component .navbar-toggler-icon::after { top: 6px; }

/* Nav Search */
.nav-search {
  background: #17181d;
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  width: 440px;
}

.nav-search--mobile { width: 100%; }

.nav-search:focus-within {
  border-color: rgba(236,72,153,0.15);
  box-shadow: 0 0 0 2px rgba(236,72,153,0.03), 0 0 0 3px rgba(236,72,153,0.06);
}

.nav-search .search-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #71717a;
  cursor: pointer;
}

.nav-search .search-input {
  flex: 1 1 auto;
  min-width: 120px;
  background: transparent;
  border: 0;
  outline: 0;
  color: #e4e4e7;
  font-weight: 600;
}

.nav-search .search-input::placeholder {
  color: #4a6a88;
  font-weight: 500;
}

.nav-search .search-filter { position: relative; }

.nav-search .filter-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  background: #17181d;
  color: #a1a1aa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1;
}

.nav-search .search-filter[open] .filter-summary {
  border-color: rgba(236,72,153,0.12);
}

.nav-search .filter-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #17181d;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
  z-index: 30;
}

.nav-search .filter-menu li { list-style: none; }

.nav-search .filter-menu label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #c4c4cc;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-search .filter-menu label:hover {
  background: rgba(236,72,153,0.04);
}

.nav-search .filter-menu input { accent-color: #e4e4e7; }

/* =============================================================
   6. HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  overflow: clip;
  z-index: 0;
  /* Desaturate hero image to B&W */
  filter: saturate(0) brightness(0.7);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 50%, #0f1012 100%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.8), transparent);
}

.hero > .container,
.hero .content {
  position: relative;
  z-index: 1;
  filter: none; /* Reset desaturation for content */
}

.hero > .container {
  max-width: none !important;
  width: calc(100% - (var(--dock-margin) * 2)) !important;
  margin: 0 auto !important;
  padding-left: var(--dock-inner-pad) !important;
  padding-right: var(--dock-inner-pad) !important;
}

/* Hero Text */
.hero .hero-text {
  max-width: 760px;
  margin-top: -85px;
  color: #e4e4e7;
}

.hero .hero-text h1 {
  margin: 0 0 14px 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .2px;
  font-size: clamp(38px, 5.2vw, 72px);
}

.hero .hero-text .highlight {
  color: #e4e4e7;
}

.hero .hero-text .danger {
  font-weight: 800;
  background: linear-gradient(90deg, #e4e4e7 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .hero-text p {
  margin: 0 0 20px 0;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: #a1a1aa;
}

.hero .content h1 {
  margin: 0 0 16px 0;
  line-height: 1.06;
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 72px);
  letter-spacing: .2px;
}

.hero .content h1 .accent,
.hero .content h1 b,
.hero .content h1 strong,
.hero .content h1 em {
  color: #e4e4e7;
  font-weight: 800;
}

.hero .content p {
  margin: 0 0 24px 0;
  color: #a1a1aa;
  font-size: 16px;
}

/* Fake Searchbar in Hero */
.hero .fake-searchbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11,11,13,0.8);
  border: 1px solid rgba(236,72,153,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(8px);
  max-width: 600px;
  margin: 4px 0 22px 0;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.hero .fake-searchbar svg {
  width: 22px;
  height: 22px;
  color: #71717a;
  flex: 0 0 22px;
}

.hero .fake-searchbar input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #e4e4e7;
  font-weight: 600;
  width: 100%;
}

/* Stats */
.hero .stats-wrapper { margin-top: 6px; }

.hero .stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #a1a1aa;
  font-size: 14px;
}

.hero .stats .value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #e4e4e7;
}

.hero .stats .label {
  opacity: .85;
}

/* Hero Image */
.hero .image {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.hero .image img {
  max-height: 520px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)) saturate(0);
  object-fit: contain;
}

/* Hero CTA Button */
.hero-cta {
  margin-top: 1.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  background: #e4e4e7;
  color: #0f1012 !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(236,72,153,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236,72,153,0.15);
}

/* =============================================================
   7. PRODUCTS / CATALOG
   ============================================================= */
.shop-wrapper {
  background-color: #0f1012;
  padding: 20px;
}

/* Filter Buttons */
.filter-bar .btn-danger {
  background-color: #e4e4e7;
  border: none;
  color: #0f1012;
}

.filter-bar .btn-dark {
  background-color: #17181d;
  border: 1px solid var(--border);
  color: #e4e4e7;
}

.filter-bar .btn-dark:hover {
  border-color: rgba(236,72,153,0.15);
}

/* Catalog Panel */
.catalog-panel {
  background: #1b1c21;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  padding: 15px;
}

/* Catalog Toolbar */
.catalog-box {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  margin-top: .5rem;
}

.catalog-box > h2 {
  margin: 0 0 .75rem;
  font-weight: 800;
  color: #e4e4e7;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem .6rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(11,11,13,0.6);
  margin-bottom: .9rem;
}

/* Letter Chips */
.catalog-letters {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.catalog-letters .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: .45rem .55rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #17181d;
  color: #a1a1aa;
  font-weight: 700;
  font-size: .8rem;
  line-height: 1;
  transition: background .2s, border-color .2s, transform .15s, color .2s;
  cursor: pointer;
}

.catalog-letters .chip:hover {
  transform: translateY(-1px);
  background: #202127;
  color: #e4e4e7;
  border-color: rgba(236,72,153,0.12);
}

.catalog-letters .chip.is-active {
  background: #e4e4e7;
  border-color: #e4e4e7;
  color: #0f1012;
  box-shadow: 0 4px 16px rgba(236,72,153,0.1);
}

/* Search Input */
.catalog-search {
  margin-left: auto;
  min-width: 220px;
}

.catalog-search input {
  width: 100%;
  height: 38px;
  padding: .4rem .75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #17181d;
  color: #e4e4e7;
  outline: none;
  transition: border-color .2s;
}

.catalog-search input:focus {
  border-color: rgba(236,72,153,0.2);
}

.catalog-search input::placeholder { color: #4a6a88; }

/* Product Grid */
.row.g-3 {
  row-gap: 1.1rem;
}

#catalogGrid .col-12 { display: flex; }
#catalogGrid .group-card { width: 100%; }
#catalogGrid .is-hidden { display: none !important; }

.shop-wrapper .row.g-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  --tile-width: 48%;
}

.shop-wrapper .row.g-3 > [class*="col-"] {
  flex: 0 0 var(--tile-width);
  max-width: var(--tile-width);
}

/* Product Cards */
.group-card.card {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  background: #17181d;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}

.group-card.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  border-color: rgba(236,72,153,0.15);
}

/* Card Image */
.group-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1b1c21;
}

.group-card__img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .5s cubic-bezier(.2,.8,.2,1);
  /* Desaturate product images */
  filter: saturate(0);
}

.group-card:hover .group-card__img > img {
  transform: scale(1.12);
  filter: saturate(1);
}

/* Image Overlay */
.group-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236,72,153,0.03) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Title Bubble */
.group-card__img::after {
  content: attr(data-title);
  position: absolute;
  left: 12px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  display: inline-flex;
  align-items: center;
  padding: .42rem .68rem;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #e4e4e7;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(236,72,153,0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
  transition: background .18s ease, box-shadow .18s ease;
}

.group-card:hover .group-card__img::after {
  background: rgba(34,26,51,0.9);
  box-shadow: 0 8px 22px rgba(0,0,0,0.7);
}

/* Card Body (hidden by default in this theme) */
.group-card__body,
.group-card__meta,
.group-card__price,
.group-card__title,
.group-card__overlay,
.group-card .text-primary {
  display: none !important;
}

.group-card__overlay { pointer-events: none; }
.group-card__badges { z-index: 3; }

/* Badges */
.group-card .badges div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #e4e4e7;
  color: #0f1012;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

/* Product Placeholder */
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #1b1c21;
  color: #831843;
}

.product-img-placeholder svg {
  width: 96px;
  height: 96px;
}

.product-img-placeholder svg.large {
  width: 256px;
  height: 256px;
}

/* Container Max */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1600px !important;
}

/* =============================================================
   8. STATUS SECTION
   ============================================================= */
.status-section {
  border: 1px solid var(--border);
  background: #1b1c21;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #17181d;
  color: #e4e4e7;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
  border-color: rgba(236,72,153,0.1);
}

.status-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status Indicator */
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.status .indicator {
  --dot: var(--st, #e4e4e7);
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--dot);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4), 0 0 18px 0 color-mix(in srgb, var(--dot), transparent 70%);
  flex: 0 0 12px;
}

.status .indicator .pulsating {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--dot);
  opacity: .35;
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .35; }
  70%, 100% { transform: scale(2.2); opacity: 0; }
}

/* Status Label */
.status .label {
  --dot: var(--st, #e4e4e7);
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  line-height: 1;
  padding: .5rem .65rem;
  border-radius: 10px;
  color: var(--dot);
  border: 1px solid color-mix(in srgb, var(--dot), #e4e4e7 72%);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--dot), transparent 86%),
    color-mix(in srgb, var(--dot), transparent 92%));
  white-space: nowrap;
}

/* #vision-status */
#vision-status {
  --accent: #e4e4e7;
  --edge: rgba(236,72,153,0.06);
  --text: #e4e4e7;
  --muted: #71717a;
  --card: rgba(236,72,153,0.02);
  position: relative;
  border: 1px solid var(--edge);
  border-radius: 22px;
  padding: clamp(18px,2.6vw,28px);
  margin-block: clamp(28px,5vw,64px);
  background: #1b1c21;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  overflow: hidden;
  isolation: isolate;
}

#vision-status .x-scan {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(40% 35% at 20% 0%, rgba(236,72,153,0.06), transparent 60%),
    radial-gradient(40% 35% at 80% 0%, rgba(236,72,153,0.03), transparent 60%);
  filter: blur(30px);
  opacity: .35;
  animation: vs-pulse 7s ease-in-out infinite;
}

#vision-status .x-grid {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(236,72,153,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,72,153,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

@keyframes vs-pulse {
  0%, 100% { opacity: .25; }
  50% { opacity: .45; }
}

#vision-status .x-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

#vision-status .x-em {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(236,72,153,0.15);
}

#vision-status .x-sub { color: var(--muted); margin: .25rem 0 0; }

#vision-status .x-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #c4c4cc;
  background: var(--card);
  border: 1px solid var(--edge);
  cursor: pointer;
  transition: border-color .2s, transform .12s;
}

#vision-status .x-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 12px var(--c);
}

#vision-status .x-tag:not(.is-on) { opacity: .55; }

#vision-status .x-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  background: var(--card);
  color: #c4c4cc;
}

#vision-status .x-input input {
  background: transparent;
  border: 0;
  color: inherit;
  outline: 0;
  width: 200px;
}

#vision-status .x-refresh {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  color: #0f1012;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 10px 22px rgba(236,72,153,0.08);
}

#vision-status .x-group { position: relative; margin-top: 18px; }

#vision-status .x-group-head h2 {
  margin: 0 0 10px;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #71717a;
}

#vision-status .x-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) { #vision-status .x-cards { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 880px) { #vision-status .x-cards { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 640px) { #vision-status .x-cards { grid-template-columns: repeat(1, 1fr); } }

#vision-status .x-card {
  --st: #71717a;
  position: relative;
  z-index: 0;
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--edge);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}

@media (min-width: 641px) { #vision-status .x-card { grid-column: span 6; } }
@media (min-width: 881px) { #vision-status .x-card { grid-column: span 4; } }

#vision-status .x-card:hover {
  transform: translateY(-2px);
  border-color: rgba(236,72,153,0.12);
}

#vision-status .x-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#vision-status .x-label {
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#vision-status .x-subtle { color: var(--muted); font-size: .9rem; }

#vision-status .x-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(236,72,153,0.06);
  background: rgba(0,0,0,0.2);
}

#vision-status .x-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--st);
  box-shadow: 0 0 14px var(--st);
}

#vision-status .x-pill .txt { font-weight: 600; opacity: .95; }

#vision-status .x-card .x-glow {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(30% 30% at 70% 0%, rgba(236,72,153,0.04), transparent 60%);
  filter: blur(28px);
  opacity: .25;
  pointer-events: none;
  transition: opacity .25s;
}

#vision-status .x-card .x-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .25;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(236,72,153,0.0),
    rgba(236,72,153,0.3),
    rgba(236,72,153,0.0) 45%);
  -webkit-mask: linear-gradient(#0f1012 0 0) padding-box, linear-gradient(#0f1012 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border: 1px solid transparent;
  animation: vs-rotate 14s linear infinite;
}

@keyframes vs-rotate { to { transform: rotate(360deg); } }

#vision-status .x-card:hover .x-glow { opacity: .4; }

/* =============================================================
   9. FAQ SECTION
   ============================================================= */
.faq-hero {
  text-align: center;
  padding: clamp(72px, 12vh, 140px) 16px 28px;
  position: relative;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem 1.1rem;
  border-radius: 999px;
  letter-spacing: .12em;
  font-size: .8rem;
  text-transform: uppercase;
  color: #0f1012;
  text-decoration: none;
  font-weight: 800;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 10px 22px rgba(236,72,153,0.06);
  transition: filter .2s ease, transform .2s ease;
}

.faq-pill:hover { filter: brightness(1.1); transform: translateY(-1px); }

.faq-title {
  margin: 14px 0 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  background: linear-gradient(180deg, #fce7f3 0%, #f9a8d4 40%, #ec4899 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: min(220px,32vw);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(236,72,153,0.3), transparent);
  opacity: .6;
}

.faq-sub {
  margin: 0;
  color: #71717a;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.faq-by {
  margin: .35rem 0 0;
  color: #4a6a88;
  font-size: .95rem;
}

/* FAQ Items */
.faq-item {
  --border-color: rgba(236,72,153,0.12);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(4px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-item:hover {
  border-color: var(--border-color);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.03);
}

.faq-item.open {
  border-color: rgba(236,72,153,0.2);
  box-shadow: 0 0 0 4px rgba(236,72,153,0.02);
}

.faq-item .icon {
  background: #e4e4e7;
  color: #0f1012;
  border: 1px solid rgba(236,72,153,0.2);
}

.faq-item .toggle-icon { color: #71717a; }
.faq-item.open .toggle-icon { color: #e4e4e7; }

#faq .faq-item {
  border-color: rgba(236,72,153,0.08) !important;
}

#faq .faq-item:hover {
  border-color: rgba(236,72,153,0.15) !important;
}

#faq .faq-item.open {
  border-color: rgba(236,72,153,0.25) !important;
  box-shadow: 0 0 0 4px rgba(236,72,153,0.03) !important;
}

#faq .faq-item .faq-header .toggle-icon {
  color: #71717a !important;
  font-size: 1.2rem;
  transition: transform .3s ease, color .25s ease;
}

#faq .faq-item.open .faq-header .toggle-icon {
  color: #e4e4e7 !important;
  transform: rotate(45deg);
}

/* FAQ CTA Box */
.faq-cta-box {
  max-width: 760px;
  background: rgba(236,72,153,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.btn.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  color: #0f1012;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 14px 28px rgba(236,72,153,0.06);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(236,72,153,0.1);
}

/* =============================================================
   10. COMMUNITY / INFO CARDS
   ============================================================= */
.x-community-card {
  --accent: #e4e4e7;
  --accent-2: #e4e4e7;
  --edge: rgba(236,72,153,0.06);
  --bg-0: #0f1012;
  --bg-1: #1b1c21;
  --text: #e4e4e7;
  --muted: #71717a;
  --card-image: none;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: clamp(20px,3.5vw,36px);
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: #1b1c21;
  border: 1px solid var(--edge);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  isolation: isolate;
  align-items: stretch;
}

.x-community-card .x-card-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
    var(--card-image) center/cover no-repeat fixed;
  filter: saturate(0) contrast(1.04);
  z-index: -3;
}

.x-community-card .x-card-noise {
  position: absolute;
  inset: -1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='table' tableValues='0 0 .05 0'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .65;
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: soft-light;
}

.x-community-card .x-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(236,72,153,0.0),
    rgba(236,72,153,0.25),
    rgba(236,72,153,0.0) 40%) border-box;
  -webkit-mask: linear-gradient(#0f1012 0 0) padding-box, linear-gradient(#0f1012 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border: 1px solid transparent;
  animation: x-rotate 14s linear infinite;
  opacity: .25;
}

@keyframes x-rotate { to { transform: rotate(360deg); } }

.x-community-card .x-card-glow {
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(60% 50% at 60% 50%, rgba(236,72,153,0.04), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: .35;
  pointer-events: none;
  animation: x-pulse 6s ease-in-out infinite;
}

@keyframes x-pulse {
  0%, 100% { opacity: .25; }
  50% { opacity: .45; }
}

.x-community-card .x-card-content {
  grid-column: 1 / -1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 10px;
  width: min(760px, 92%);
  margin-inline: auto;
  z-index: 1;
}

.x-eyebrow {
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .9;
}

.x-title {
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--text);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0;
}

.x-title span {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(236,72,153,0.1);
}

.x-copy { color: var(--muted); margin: 2px 0 8px; max-width: 58ch; }

.x-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 2px 0 6px;
  list-style: none;
}

.x-chips li {
  font-size: .85rem;
  color: #c4c4cc;
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(236,72,153,0.02);
  backdrop-filter: blur(4px);
}

.x-brand {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 60px 0 10px;
  border: 1px solid rgba(236,72,153,0.06);
  background: rgba(236,72,153,0.02);
  box-shadow: inset 0 0 26px rgba(236,72,153,0.03), 0 10px 28px rgba(0,0,0,0.35);
}

.x-brand img {
  max-width: 60px;
  max-height: 60px;
  filter: invert(1) brightness(2) drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.x-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2px;
  padding: 14px 18px;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1px solid var(--edge);
  color: var(--text);
  text-decoration: none;
  background: rgba(236,72,153,0.02);
}

.x-btn:hover { transform: translateY(-1px); }

.x-btn-ghost:hover {
  border-color: rgba(236,72,153,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.x-btn-accent {
  color: #0f1012;
  background: #e4e4e7;
  border-color: rgba(236,72,153,0.2);
  box-shadow: 0 16px 28px rgba(236,72,153,0.06);
}

.x-btn-accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 18px 34px rgba(236,72,153,0.1);
}

.x-btn-accent .x-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(236,72,153,0.0) 40%, rgba(236,72,153,0.3) 55%, rgba(236,72,153,0.0) 70%);
  mix-blend-mode: soft-light;
  transform: translateX(-120%);
  opacity: .0;
  transition: transform .6s ease, opacity .4s ease;
}

.x-btn-accent:hover .x-shine { transform: translateX(120%); opacity: .55; }

.x-stats {
  font-size: .92rem;
  color: #c4c4cc;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--edge);
  padding: 8px 12px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.x-stats .x-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  background: #e4e4e7;
  box-shadow: 0 0 12px rgba(236,72,153,0.4);
}

/* Community card responsive */
@media (max-width: 880px) {
  .x-community-card {
    grid-template-columns: 1fr;
    padding: 22px;
    min-height: 0;
  }

  .x-community-card .x-card-content {
    grid-column: 1 / 2;
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .x-community-card .x-side {
    grid-column: 1 / 2;
    justify-self: start;
    align-self: start;
    gap: 12px;
  }
}

/* =============================================================
   11. PRODUCT PAGE
   ============================================================= */
.product-page { padding-top: 0; }

.product-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 420px;
  gap: 28px;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-hero-img {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #1b1c21;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-hero-img .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0);
  transition: filter .5s cubic-bezier(.2,.8,.2,1);
}

.product-hero-img:hover .img {
  filter: saturate(1);
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumbs .thumb {
  width: 95px;
  height: 68px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #1b1c21;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
}

.product-thumbs .thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(236,72,153,0.15);
}

.product-thumbs .thumb.is-active {
  border-color: #e4e4e7;
  box-shadow: 0 0 0 3px rgba(236,72,153,0.08);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0);
  transition: filter .3s ease;
}

.product-thumbs .thumb:hover img {
  filter: saturate(1);
}

/* Buy Card */
.product-right { position: relative; }

.buy-card {
  position: sticky;
  top: 96px;
  background: #17181d;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.buy-card .title {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  margin: 2px 0 8px;
  font-weight: 800;
}

/* Status Chip */
.status-chip {
  --st: #e4e4e7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236,72,153,0.03);
  border: 1px solid rgba(236,72,153,0.06);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}

.status-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--st);
  box-shadow: 0 0 14px var(--st);
}

.status-chip .text { color: #e4e4e7; }

/* Live Stats */
.live-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 16px;
}

.live-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
  font-size: .95rem;
}

.live-stats svg { width: 18px; height: 18px; opacity: .9; }

/* Price + Stock */
.price-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 16px;
}

.price {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  font-weight: 800;
  letter-spacing: .2px;
}

.stock-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #1b1c21;
  color: #a1a1aa;
  font-weight: 700;
}

.stock-pill.is-out { color: #71717a; border-color: rgba(236,72,153,0.12); }

/* Badges */
.p-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

.p-badge {
  --bg: #202127;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: #e4e4e7;
  background: var(--bg);
}

/* Product Tabs */
.product-tabs-wrap { margin-top: 24px; }

.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-tabs .tab {
  border: 1px solid var(--border);
  background: #1b1c21;
  color: #a1a1aa;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.product-tabs .tab.is-active {
  background: rgba(236,72,153,0.06);
  border-color: rgba(236,72,153,0.15);
  color: #e4e4e7;
}

.product-tab-content .editor { margin-top: 12px; }

/* =============================================================
   12. SHOWCASE / GALLERY
   ============================================================= */
.showcase.pro {
  --accent: #e4e4e7;
  --accent-2: #e4e4e7;
  --r: 18px;
  --dur: 300ms;
  position: relative;
  isolation: isolate;
  z-index: 0;
  max-width: 1120px;
  margin: 24px auto 48px;
  padding: 0 16px 18px;
}

.showcase.pro input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gallery__viewport {
  position: relative;
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.06);
  background: #1b1c21;
  z-index: 0;
}

.gallery__viewport::before {
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
  -webkit-mask: linear-gradient(#0f1012 0 0) content-box, linear-gradient(#0f1012 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .28;
}

.gallery__viewport::after {
  background:
    radial-gradient(120% 120% at 50% 100%, rgba(0,0,0,0.45), transparent 50%),
    radial-gradient(120% 120% at 50% 0%, rgba(0,0,0,0.35), transparent 40%);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform var(--dur) ease-in-out;
  z-index: 1;
  filter: saturate(0);
}

.cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 12px;
  font: 700 13px system-ui;
  color: #0f1012;
  background: #e4e4e7;
}

/* Active slide */
#g1:checked ~ .gallery__viewport .s1,
#g2:checked ~ .gallery__viewport .s2,
#g3:checked ~ .gallery__viewport .s3,
#g4:checked ~ .gallery__viewport .s4,
#g5:checked ~ .gallery__viewport .s5 { transform: translateX(0); }

/* Nav Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(236,72,153,0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  z-index: 9999;
  pointer-events: auto;
  display: none;
}

.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e4e4e7;
  border-right: 2px solid #e4e4e7;
}

.nav--prev { left: 14px; }
.nav--prev::after { transform: rotate(-135deg); }
.nav--next { right: 14px; }
.nav--next::after { transform: rotate(45deg); }

/* Active arrow pair */
#g1:checked ~ .gallery__viewport .set1 { display: block; }
#g2:checked ~ .gallery__viewport .set2 { display: block; }
#g3:checked ~ .gallery__viewport .set3 { display: block; }
#g4:checked ~ .gallery__viewport .set4 { display: block; }
#g5:checked ~ .gallery__viewport .set5 { display: block; }

/* Progress */
.progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 2px;
  background: rgba(236,72,153,0.06);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}

.progress .bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e4e4e7, #71717a);
  transition: width .5s;
}

#g1:checked ~ .gallery__viewport .progress .bar { width: 20%; }
#g2:checked ~ .gallery__viewport .progress .bar { width: 40%; }
#g3:checked ~ .gallery__viewport .progress .bar { width: 60%; }
#g4:checked ~ .gallery__viewport .progress .bar { width: 80%; }
#g5:checked ~ .gallery__viewport .progress .bar { width: 100%; }

/* Thumbs */
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  border: 1px solid var(--border);
  border-radius: 14px;
  aspect-ratio: 16/9;
  min-height: 84px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: border-color .2s;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.thumb:hover { border-color: rgba(236,72,153,0.12); }

#g1:checked ~ .gallery__thumbs .t1,
#g2:checked ~ .gallery__thumbs .t2,
#g3:checked ~ .gallery__thumbs .t3,
#g4:checked ~ .gallery__thumbs .t4,
#g5:checked ~ .gallery__thumbs .t5 {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.8), 0 16px 36px rgba(0,0,0,0.35);
}

/* Showcase Hero */
.showcase-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}

.showcase-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f1012;
  text-decoration: none;
  background: #e4e4e7;
  box-shadow: 0 8px 20px rgba(236,72,153,0.08);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.showcase-pill:hover { filter: brightness(1.1); transform: translateY(-1px); }

.showcase-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 20px 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #e4e4e7, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showcase-sub {
  font-size: 16px;
  color: #71717a;
  margin: 0 0 4px;
}

.showcase-by {
  font-size: 13px;
  color: #4a6a88;
  opacity: 0.7;
}

/* =============================================================
   13. FEATURES SECTION
   ============================================================= */
.cryptic-features {
  padding: 64px 0;
}

.cryptic-features .container {
  max-width: 1180px;
}

.hero-11-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .95rem;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0f1012;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 8px 20px rgba(236,72,153,0.06);
  backdrop-filter: blur(6px);
}

.hero-11-title {
  font-weight: 900;
  line-height: .95;
  font-size: clamp(2.8rem, 7.2vw, 6rem);
  letter-spacing: .02em;
  margin: 0;
  background: linear-gradient(180deg, #e4e4e7, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-11-subtitle {
  color: #a1a1aa;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 0;
}

.hero-11-subsubtitle {
  color: #71717a;
  font-size: .95rem;
  margin-bottom: 2.25rem;
}

/* Feature Grid */
.cryptic-features .cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cryptic-features .f-ui { grid-column: span 2; }
.cryptic-features .f-safe { grid-column: span 1; }

@media (max-width: 992px) {
  .cryptic-features .cf-grid { grid-template-columns: 1fr 1fr; }
  .cryptic-features .f-ui { grid-column: span 2; }
  .cryptic-features .f-safe { grid-column: span 2; }
}

@media (max-width: 576px) {
  .cryptic-features .cf-grid { grid-template-columns: 1fr; }
  .cryptic-features .f-ui,
  .cryptic-features .f-safe { grid-column: span 1; }
}

/* Feature Cards */
.cryptic-features .fcard {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  color: #e4e4e7;
  border: 1px solid var(--border);
  background: #17181d;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.cryptic-features .fcard:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,0.1);
  box-shadow: 0 26px 70px rgba(0,0,0,0.6);
}

.cryptic-features .fcard .f-inner {
  position: relative;
  padding: 18px 20px 20px;
}

.cryptic-features .fcard h4 {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #a1a1aa;
  position: relative;
  z-index: 1;
}

.cryptic-features .fcard h4 b { color: #e4e4e7; }

/* Feature Card Scan Effect */
.cryptic-features .fcard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(236,72,153,0.04), rgba(255,255,255,0));
  filter: blur(8px);
  animation: infoScanDown 5.6s ease-in-out infinite;
}

@keyframes infoScanDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

/* Progress Ring */
.cryptic-features .ring-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 6px auto 10px;
}

.cryptic-features .ring {
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.cryptic-features .ring .track {
  fill: none;
  stroke: rgba(236,72,153,0.08);
  stroke-width: 10;
  stroke-linecap: round;
}

.cryptic-features .ring .bar {
  fill: none;
  stroke: #e4e4e7;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.2s cubic-bezier(.22,1,.36,1);
}

.cryptic-features .ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cryptic-features .ring-center small { color: #a1a1aa; opacity: .9; }
.cryptic-features .ring-center .ring-val { font-size: 18px; margin-top: 6px; }

/* UI Demo Tabs */
.cryptic-features .ui-demo .tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 4px;
}

.cryptic-features .ui-demo .tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #a1a1aa;
  background: rgba(236,72,153,0.04);
  border: 1px solid var(--border);
  transition: transform .18s, box-shadow .25s, background .25s, border-color .25s;
}

.cryptic-features .ui-demo .tab:hover {
  transform: translateY(-1px);
  background: rgba(236,72,153,0.08);
  border-color: rgba(236,72,153,0.1);
}

.cryptic-features .ui-demo .tab.is-active {
  color: #0f1012;
  background: #e4e4e7;
  border-color: rgba(236,72,153,0.3);
  box-shadow: 0 8px 20px rgba(236,72,153,0.06);
}

/* Toggle Switch */
.cryptic-features .tgl input { display: none; }

.cryptic-features .tgl i {
  --w: 46px;
  --h: 26px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(236,72,153,0.08);
  border: 1px solid rgba(236,72,153,0.1);
  transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s cubic-bezier(.4,0,.2,1);
}

.cryptic-features .tgl i::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e4e4e7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

.cryptic-features .tgl input:checked + i {
  background: #e4e4e7;
  border-color: rgba(236,72,153,0.2);
}

.cryptic-features .tgl input:checked + i::after {
  transform: translateX(20px);
  background: #0f1012;
}

/* Safe Core */
.safe-core {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 6px auto 14px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.safe-core::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(236,72,153,0.06), transparent 60%);
  filter: blur(12px);
  z-index: 0;
}

.safe-core .fa-shield {
  font-size: 46px;
  color: #e4e4e7;
  text-shadow: 0 8px 22px rgba(236,72,153,0.1);
  animation: shieldPulse 2.4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.safe-core .orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(236,72,153,0.06), transparent 25%, transparent 75%, rgba(236,72,153,0.06));
  mask: radial-gradient(farthest-side, transparent calc(50% - 1px), #0f1012 calc(50% + 1px));
  animation: orbitSpin 5.6s linear infinite;
  z-index: 1;
  opacity: .7;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.safe-core .spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4e4e7;
  box-shadow: 0 0 12px rgba(236,72,153,0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: sparkOrbit 2.8s ease-in-out infinite;
}

@keyframes sparkOrbit {
  0% { transform: translate(-50%,-50%) rotate(0deg) translateX(70px); }
  50% { transform: translate(-50%,-50%) rotate(180deg) translateX(76px); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translateX(70px); }
}

/* Chat Bubbles */
.cryptic-features .bubble--sys {
  color: #fce7f3;
  background: rgba(236,72,153,0.06);
  border: 1px solid rgba(236,72,153,0.06);
}

.cryptic-features .bubble--me {
  margin-left: auto;
  color: #0f1012;
  background: #e4e4e7;
  border: 1px solid rgba(236,72,153,0.15);
  box-shadow: 0 10px 24px rgba(236,72,153,0.05);
}

/* Description Card */
.xph-desc-card {
  margin-top: .8rem;
  border-radius: 14px;
  background: #17181d;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.xph-desc-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
  -webkit-mask: linear-gradient(#0f1012 0 0) content-box, linear-gradient(#0f1012 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .22;
  pointer-events: none;
}

.xph-desc-head .pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  color: #0f1012;
  background: #e4e4e7;
  box-shadow: 0 10px 22px rgba(236,72,153,0.05);
}

.xph-desc-body {
  color: #c4c4cc;
  font-size: .92rem;
  line-height: 1.6;
}

.xph-desc-body a { color: #e4e4e7; }

/* =============================================================
   14. FOOTER
   ============================================================= */
footer.footer {
  position: relative;
  z-index: 20;
  background: #1b1c21;
  border-top: 1px solid var(--border);
}

/* =============================================================
   15. SCROLLBAR
   ============================================================= */
html {
  scrollbar-width: thin;
  scrollbar-color: #831843 #0f1012;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: #0f1012;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #831843, #1d1e23);
  border-radius: 999px;
  border: 2px solid #0f1012;
}

html::-webkit-scrollbar-thumb:hover {
  background: #4a6a88;
}

html::-webkit-scrollbar-corner {
  background: #0f1012;
}

/* =============================================================
   16. ANIMATIONS & REVEALS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.65,.2,1), filter .6s ease;
  will-change: opacity, transform, filter;
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal[data-anim="left"] { transform: translateX(-16px); }
.reveal[data-anim="right"] { transform: translateX(16px); }
.reveal[data-anim="pop"] { transform: scale(.96); }
.reveal { transition-delay: var(--d, 0s); }

/* Hero Animations */
.hero--anim .anim-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  filter: blur(6px);
  animation: revealUp .8s cubic-bezier(.2,.65,.2,1) both;
  animation-delay: var(--d, 0s);
}

.hero--anim .anim-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s ease-out both;
  animation-delay: var(--d, .2s);
}

.hero--anim .anim-glow {
  display: inline-block;
  position: relative;
  animation: glowPulse 1.4s ease-out .55s both;
  text-shadow: 0 0 0 rgba(255,255,255,0);
}

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(18px) scale(.98); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 0 rgba(255,255,255,0); transform: scale(.96); }
  60% { text-shadow: 0 0 22px rgba(236,72,153,0.3), 0 0 40px rgba(236,72,153,0.1); transform: scale(1); }
  100% { text-shadow: 0 0 10px rgba(236,72,153,0.15); }
}

/* Nav Icon Spin */
.nav-link .nav-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.nav-link:hover .nav-icon,
.nav-link:focus-visible .nav-icon {
  transform: rotate(1turn);
}

/* FAQ Hero Animations */
.faq-hero > * {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  animation: faqIn .7s cubic-bezier(.22,1,.36,1) forwards;
}

.faq-pill { animation-delay: .05s; }
.faq-title { animation-delay: .15s; }
.faq-sub { animation-delay: .25s; }
.faq-by { animation-delay: .35s; }

@keyframes faqIn {
  to { opacity: 1; transform: none; filter: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero--anim .anim-reveal,
  .hero--anim .anim-fade,
  .hero--anim .anim-glow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .faq-hero > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .status-card { transition: none; }
  .status .pulsating { animation: none; }

  .x-card-border,
  .x-card-glow,
  .x-logo-hex {
    animation: none !important;
  }

  .cryptic-features .fcard::before {
    animation: none !important;
  }

  body::before { animation: none; }
}

/* =============================================================
   17. RESPONSIVE
   ============================================================= */
@media (max-width: 1400px) { :root { --dock-margin: 120px; } }
@media (max-width: 1200px) { :root { --dock-margin: 72px; } }

@media (max-width: 992px) {
  :root { --dock-margin: 16px; }
  .topbar__right { gap: 10px; }
  .btn-cta-red { padding: .55rem .9rem; }
  .currency-selector.lg.top select { padding: .5rem 2.1rem .5rem .7rem; }
  .cart-btn.top { padding: .5rem .9rem; }
  .navbar.component > .container { border-radius: 12px; }
  .navbar.component .navbar-collapse {
    background: #17181d;
    border-top: 1px solid var(--border);
    margin-top: .6rem;
    padding: .75rem;
    border-radius: 12px;
  }
  .navbar.component .navbar-nav.me-auto .nav-link { width: 100%; }
}

@media (max-width: 991.98px) {
  .topbar { display: none !important; }

  nav.superbar {
    position: fixed !important;
    top: var(--safe-top) !important;
    left: 0;
    right: 0;
    z-index: 4000 !important;
    margin: 0;
    transform: none !important;
    overflow: visible !important;
  }

  body { padding-top: calc(var(--safe-top) + var(--bar-h) + 10px) !important; }

  #navbarSupportedContent.navbar-collapse {
    position: fixed !important;
    left: 12px;
    right: 12px;
    top: calc(var(--safe-top) + var(--bar-h) + 8px) !important;
    z-index: 4500 !important;
    max-height: calc(100vh - var(--safe-top) - var(--bar-h) - 24px - var(--safe-bot));
    overflow: auto;
    border-radius: 14px;
    padding: .8rem;
    background: rgba(9,9,11,0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  }

  body.menu-open { overflow: hidden; }
}

/* Small Mobile */
@media (max-width: 576px) {
  :root {
    --dock-margin: 16px;
    --dock-inner-pad: 14px;
    --dock-gap-top: 6px;
  }

  .topbar__inner { gap: 10px; }
  .topbar__logo { height: 36px; }
  .online .ping { width: 18px; height: 18px; }
  .online .count { font-weight: 700; }
  .online .label { font-size: .66rem; letter-spacing: .1em; }
  .topbar__right { gap: 10px; }

  .btn-cta-red {
    padding: .48rem .8rem;
    font-size: .88rem;
    border-radius: 10px;
  }

  .cart-btn.top {
    padding: .48rem .72rem;
    font-size: .86rem;
    border-radius: 10px;
  }

  .cart-btn.top .icon { width: 16px; height: 16px; }
  .cart-btn.top .count {
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    font-size: .65rem;
  }

  .currency-selector.lg.top select {
    padding: .46rem 1.8rem .46rem .6rem;
    font-size: .9rem;
    border-radius: 10px;
  }

  .navbar.component > .container {
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.4);
  }

  .navbar.component .container.py-2 {
    padding-top: .8rem !important;
    padding-bottom: .8rem !important;
  }

  .navbar.component .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
  }

  .hero .content h1 { font-size: clamp(34px, 8vw, 44px); }
  .hero .stats { gap: 18px; font-size: 13px; }
  .hero .stats .value { font-size: 18px; }

  .shop-wrapper .row.g-3 { --tile-width: 100%; }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 768px) {
  :root { --dock-margin: 24px; --dock-inner-pad: 18px; --dock-gap-top: 6px; }
  .btn-cta-red { padding: .5rem .9rem; font-size: .92rem; }
  .cart-btn.top { padding: .5rem .85rem; }
  .currency-selector.lg.top select { padding: .5rem 2rem .5rem .7rem; }
}

@media (min-width: 992px) {
  .floating-actions { display: none; }
}

/* Safe Area */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --header-h: 72px;
  --bar-h: 60px;
}

/* Editor styles */
.editor h2 { margin-top: 1.75rem; }
.editor ul { margin-left: 1rem; }
.editor strong { color: #e4e4e7; }

/* Products card buttons */
.products .card .card-body .btn-primary,
.products .card .card-body .btn-purchase {
  background: #e4e4e7;
  color: #0f1012;
  border: 1px solid rgba(236,72,153,0.2);
  box-shadow: 0 10px 22px rgba(236,72,153,0.05);
}

.products .card .card-body .btn-primary:hover,
.products .card .card-body .btn-purchase:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(236,72,153,0.1);
}

/* Body */
body { background: #0f1012; }

/* Tabs */
.cryptic-features .ui-demo .tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 4px;
}

/* Misc */
.d-none { display: none !important; }

/* License Box */
.cryptic-licbox {
  position: relative;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  overflow: hidden;
}

.clb-btn {
  display: block;
  width: 100%;
  margin: 10px auto 0;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #e4e4e7;
  color: #0f1012;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 12px 24px rgba(236,72,153,0.06);
  transition: transform .2s, box-shadow .25s;
  font-size: 12px;
}

.clb-success .clb-check {
  background: #e4e4e7;
}

.clb-success-text { color: #e4e4e7; }

/* Product Card Buttons */
.products .card {
  position: relative;
  background: none;
  border: none;
  transition: all .3s ease;
  background: #17181d;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.products .card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.products .card .card-img-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 16/9;
  background: #1b1c21;
}

.products .card .card-img-top img,
.products .card .card-img-top svg {
  object-fit: scale-down;
  aspect-ratio: 16/9;
}

.products .card .info {
  display: flex;
  justify-content: space-between;
  color: #a1a1aa;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.products .card .card-title {
  font-size: 1.125rem;
  margin-bottom: 0rem;
}

/* Cart */
.cart .product { background: #17181d; }
.cart .form { background: #17181d; }

/* Tickets */
.ticket .ticket-messages-scroll::-webkit-scrollbar-track { background: rgba(236,72,153,0.02); }
.ticket .ticket-messages-scroll::-webkit-scrollbar-thumb { background: rgba(236,72,153,0.08); }

/* Pagination */
.pagination .page-item:not(.active) .page-link {
  color: #a1a1aa;
  background-color: #17181d;
}

/* Currency Selector */
.currency-selector .symbol {
  background-color: rgba(236,72,153,0.06);
  color: #e4e4e7 !important;
}

.currency-selector select {
  border-color: rgba(236,72,153,0.12);
}

.choices .choices__inner {
  background-color: rgba(236,72,153,0.02);
  color: #e4e4e7;
}

/* Notification */
.notification-content {
  border: 1px solid var(--border);
  background-color: #17181d;
}

/* Testimonials */
.testimonial {
  background: #17181d;
}

.testimonial .footer {
  background: rgba(236,72,153,0.02);
  border-top: 1px solid var(--border);
}

/* Addon items */
.addon-item {
  border: 1px solid var(--border);
  background-color: rgba(236,72,153,0.02);
}

/* Features list */
.features .list .feature {
  background: #17181d;
  border: 1px solid var(--border);
}

/* Socials */
.socials {
  background: #1b1c21;
}

.socials .list .social {
  background: #17181d;
  border: 1px solid var(--border);
}

.socials .list .social .left svg {
  background-color: #e4e4e7;
  color: #0f1012;
}

/* CTA sections */
.cta-text-center { background: #0f1012; }

/* Announcement */
.announcement {
  background: #e4e4e7;
  color: #0f1012;
  border-bottom: 1px solid var(--border);
}

.announcement a { color: #0f1012; }

/* Hero mask */
.hero {
  -webkit-mask-image: linear-gradient(to bottom, #0f1012 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #0f1012 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #0f1012 30%, transparent 100%);
}

/* =============================================================
   TEXT HOVER ANIMATIONS
   ============================================================= */

/* --- Navbar brand --- */
.nav-brand-text {
  transition: text-shadow .3s ease, transform .3s ease;
}
.navbar-brand:hover .nav-brand-text {
  text-shadow: 0 0 20px rgba(236,72,153,0.3), 0 0 40px rgba(236,72,153,0.1);
  transform: scale(1.03);
}

/* --- Hero text --- */
.hero-pill {
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero:hover .hero-pill {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(236,72,153,0.12);
}
.hero-title-gradient {
  transition: filter .3s ease;
}
.hero:hover .hero-title-gradient {
  filter: brightness(1.3);
}
.hero-tagline {
  transition: filter .3s ease, transform .3s ease;
}
.hero:hover .hero-tagline {
  filter: brightness(1.2);
  transform: translateY(-2px);
}
.hero-desc {
  transition: color .3s ease, transform .3s ease;
}
.hero:hover .hero-desc {
  color: #a1a1aa;
  transform: translateY(-2px);
}
.hero-btn {
  transition: transform .2s ease, box-shadow .2s ease, letter-spacing .3s ease;
}
.hero-btn:hover {
  letter-spacing: 0.04em;
}

/* --- FAQ questions --- */
.faq-item .question {
  transition: text-shadow .3s ease, color .3s ease, transform .2s ease;
}
.faq-item:hover .question {
  text-shadow: 0 0 12px rgba(236,72,153,0.15);
  color: #e4e4e7;
  transform: translateX(3px);
}
.faq-item .icon {
  transition: transform .3s ease, box-shadow .3s ease;
}
.faq-item:hover .icon {
  transform: scale(1.12);
  box-shadow: 0 0 16px rgba(236,72,153,0.12);
}
.faq-item .toggle-icon {
  transition: color .3s ease;
}
.faq-item:hover .toggle-icon {
  color: #e4e4e7;
}

/* --- FAQ pill / byline --- */
.faq-pill {
  transition: transform .3s ease, box-shadow .3s ease, text-shadow .3s ease;
}
.faq-pill:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(236,72,153,0.15);
  text-shadow: 0 0 10px rgba(236,72,153,0.3);
}
.faq-by {
  transition: color .3s ease;
}
.faq-hero:hover .faq-by {
  color: #a1a1aa;
}

/* --- Section headings --- */
.section-title h2,
.section-title h1,
.catalog-box > h2,
.x-title,
.xph-title {
  transition: text-shadow .4s ease, transform .3s ease;
}
.section-title h2:hover,
.section-title h1:hover,
.catalog-box > h2:hover,
.x-title:hover,
.xph-title:hover {
  text-shadow: 0 0 20px rgba(236,72,153,0.12);
  transform: translateY(-1px);
}

/* --- Product cards --- */
.group-card__title,
.group-card .card-title,
.products .card .card-title {
  transition: color .3s ease, text-shadow .3s ease, transform .2s ease;
}
.group-card:hover .group-card__title,
.group-card:hover .card-title,
.products .card:hover .card-title {
  color: #e4e4e7;
  text-shadow: 0 0 12px rgba(236,72,153,0.15);
}
.group-card__img::after {
  transition: text-shadow .3s ease;
}
.group-card:hover .group-card__img::after {
  text-shadow: 0 0 10px rgba(236,72,153,0.2);
}
.products .card .info {
  transition: color .3s ease;
}
.products .card:hover .info {
  color: #e4e4e7;
}
.products .card .price {
  transition: text-shadow .3s ease, transform .2s ease;
}
.products .card:hover .price {
  text-shadow: 0 0 10px rgba(236,72,153,0.15);
}

/* --- Payment method labels --- */
.xpay-pro__label {
  transition: text-shadow .3s ease, letter-spacing .3s ease, color .3s ease;
}
.xpay-pro__card:hover .xpay-pro__label {
  text-shadow: 0 0 12px var(--glow);
  letter-spacing: 0.04em;
  color: #e4e4e7;
}
.xpay-pro__sub {
  transition: color .3s ease;
}
.xpay-pro__card:hover ~ .xpay-pro__sub,
.xpay-pro__wrap:hover .xpay-pro__sub {
  color: #c4c4cc;
}

/* --- Status cards --- */
.status-card__title {
  transition: text-shadow .3s ease;
}
.status-card:hover .status-card__title {
  text-shadow: 0 0 12px rgba(236,72,153,0.15);
}
#vision-status .x-label {
  transition: text-shadow .3s ease, color .3s ease;
}
#vision-status .x-card:hover .x-label {
  text-shadow: 0 0 10px rgba(236,72,153,0.12);
  color: #e4e4e7;
}
#vision-status .x-subtle {
  transition: color .3s ease;
}
#vision-status .x-card:hover .x-subtle {
  color: #c4c4cc;
}
#vision-status .x-pill .txt {
  transition: text-shadow .3s ease;
}
#vision-status .x-card:hover .x-pill .txt {
  text-shadow: 0 0 8px var(--st);
}

/* --- Announcement --- */
.announcement a {
  transition: text-shadow .3s ease;
}
.announcement a:hover {
  text-shadow: 0 0 10px rgba(236,72,153,0.3);
}

/* --- Filter/search --- */
.nav-search .filter-summary {
  transition: color .3s ease;
}
.nav-search .filter-summary:hover {
  color: #e4e4e7;
}
.nav-search .filter-menu label {
  transition: color .3s ease;
}
.nav-search .filter-menu label:hover {
  color: #e4e4e7;
}

/* --- Blog post cards --- */
.blog-card .card-title,
.card-title {
  transition: color .3s ease, text-shadow .3s ease;
}
.blog-card:hover .card-title {
  color: var(--cl-accent);
  text-shadow: 0 0 10px rgba(236,72,153,0.12);
}
.blog-card .text-muted {
  transition: color .3s ease;
}
.blog-card:hover .text-muted {
  color: #c4c4cc;
}

/* --- Product page --- */
.xph-price {
  transition: text-shadow .3s ease;
}
.xph-price:hover {
  text-shadow: 0 0 12px rgba(236,72,153,0.2);
}
.variant .name {
  transition: color .3s ease, text-shadow .3s ease;
}
.variant:hover .name {
  color: #e4e4e7;
  text-shadow: 0 0 8px rgba(236,72,153,0.1);
}
.addon-item p {
  transition: color .3s ease;
}
.addon-item:hover p {
  color: #e4e4e7;
}
.product-tabs .tab {
  transition: color .3s ease, text-shadow .3s ease, letter-spacing .3s ease;
}
.product-tabs .tab:hover {
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px rgba(236,72,153,0.1);
}
.buy-card .title {
  transition: text-shadow .3s ease;
}
.buy-card:hover .title {
  text-shadow: 0 0 12px rgba(236,72,153,0.12);
}

/* --- Cart page --- */
.cart-product-link {
  transition: text-shadow .3s ease;
}
.cart-product-link:hover {
  text-shadow: 0 0 10px rgba(236,72,153,0.15);
}

/* --- Footer --- */
footer h5, footer .footer h5 {
  transition: color .3s ease;
}
footer:hover h5, footer .footer:hover h5 {
  color: #e4e4e7;
}
footer .nav li a {
  transition: color .3s ease, transform .2s ease, letter-spacing .2s ease;
}
footer .nav li a:hover {
  letter-spacing: 0.03em;
}

/* --- Showcase / Gallery --- */
.showcase-title {
  transition: text-shadow .4s ease;
}
.showcase-title:hover {
  text-shadow: 0 0 20px rgba(236,72,153,0.1);
}
.showcase-sub {
  transition: color .3s ease;
}
.showcase:hover .showcase-sub {
  color: #a1a1aa;
}
.cap {
  transition: box-shadow .3s ease, text-shadow .3s ease;
}
.cap:hover {
  box-shadow: 0 0 16px rgba(236,72,153,0.15);
  text-shadow: 0 0 10px rgba(236,72,153,0.2);
}

/* --- CTA buttons letter-spacing expansion --- */
.btn-cta-red {
  transition: transform .2s ease, box-shadow .2s ease, letter-spacing .3s ease;
}
.btn-cta-red:hover {
  letter-spacing: 0.04em;
}
.btn-discord {
  transition: transform .2s ease, box-shadow .2s ease, letter-spacing .3s ease;
}
.btn-discord:hover {
  letter-spacing: 0.04em;
}
.x-btn {
  transition: transform .2s ease, letter-spacing .3s ease, box-shadow .25s ease;
}
.x-btn:hover {
  letter-spacing: 0.04em;
}

/* --- FAQ title --- */
.faq-title {
  transition: text-shadow .4s ease, transform .3s ease;
}
.faq:hover .faq-title {
  text-shadow: 0 0 24px rgba(236,72,153,0.12);
  transform: translateY(-2px);
}



/* =============================================================
   20. SMOOTH SCROLL SNAPPING
   ============================================================= */
html {
  scroll-behavior: smooth;
}

/* =============================================================
   21. MAGNETIC BUTTONS
   ============================================================= */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}
.btn-magnetic {
  transition: transform .2s ease;
}

/* =============================================================
   22. ANNOUNCEMENT MARQUEE
   ============================================================= */
.q-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #0f1012;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.q-marquee-track {
  display: inline-block;
  animation: qMarquee 30s linear infinite;
  will-change: transform;
}
.q-marquee-track span {
  display: inline-block;
  padding: 0 40px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.q-marquee-track span b {
  color: #e4e4e7;
  font-weight: 600;
}
@keyframes qMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   24. COUNT-UP STATS
   ============================================================= */
.q-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.q-stat {
  background: #0f1012;
  padding: 48px 20px;
  text-align: center;
}
.q-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e4e4e7;
  line-height: 1;
  margin-bottom: 8px;
}
.q-stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================================
   25. GLOW-ON-SCROLL
   ============================================================= */
#scroll-glow {
  position: fixed;
  left: 50%;
  top: 0;
  width: 600px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(236,72,153,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
#scroll-glow.active {
  opacity: 1;
}

/* =============================================================
   27. SCROLL-LINKED CARD PARALLAX
   ============================================================= */
.parallax-card {
  transition: transform .15s ease-out;
  will-change: transform;
}

/* =============================================================
   28. FLOATING CLOUDS
   ============================================================= */
.clouds-wrap {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(236,72,153,0.08) 0%, rgba(236,72,153,0.02) 60%, transparent 100%);
  filter: blur(1px);
  will-change: transform;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

/* Cloud 1 — large, slow */
.cloud--1 {
  width: 420px; height: 140px;
  top: 12%; left: -420px;
  animation: cloudDrift 65s linear infinite;
  opacity: 0.6;
}
.cloud--1::before {
  width: 200px; height: 160px;
  top: -60px; left: 80px;
}
.cloud--1::after {
  width: 160px; height: 120px;
  top: -30px; left: 200px;
}

/* Cloud 2 — medium, mid speed */
.cloud--2 {
  width: 300px; height: 100px;
  top: 28%; left: -300px;
  animation: cloudDrift 50s linear 12s infinite;
  opacity: 0.45;
}
.cloud--2::before {
  width: 140px; height: 110px;
  top: -45px; left: 60px;
}
.cloud--2::after {
  width: 120px; height: 90px;
  top: -25px; left: 150px;
}

/* Cloud 3 — small, fast */
.cloud--3 {
  width: 220px; height: 75px;
  top: 55%; left: -220px;
  animation: cloudDrift 38s linear 6s infinite;
  opacity: 0.35;
}
.cloud--3::before {
  width: 100px; height: 80px;
  top: -35px; left: 40px;
}
.cloud--3::after {
  width: 90px; height: 65px;
  top: -18px; left: 110px;
}

/* Cloud 4 — tiny accent, slow */
.cloud--4 {
  width: 180px; height: 60px;
  top: 72%; left: -180px;
  animation: cloudDrift 55s linear 20s infinite;
  opacity: 0.3;
}
.cloud--4::before {
  width: 80px; height: 65px;
  top: -28px; left: 35px;
}
.cloud--4::after {
  width: 70px; height: 50px;
  top: -12px; left: 90px;
}

/* Cloud 5 — bottom haze */
.cloud--5 {
  width: 500px; height: 120px;
  top: 85%; left: -500px;
  animation: cloudDrift 75s linear 30s infinite;
  opacity: 0.25;
}
.cloud--5::before {
  width: 250px; height: 130px;
  top: -55px; left: 100px;
}
.cloud--5::after {
  width: 180px; height: 100px;
  top: -25px; left: 280px;
}

@keyframes cloudDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 600px)); }
}

/* Hero-specific clouds (inside hero section) */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(221,214,238,0.06) 0%, rgba(221,214,238,0.01) 60%, transparent 100%);
  filter: blur(2px);
}

.hero-cloud::before,
.hero-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.hero-cloud--1 {
  width: 350px; height: 120px;
  top: 20%; left: 10%;
  animation: heroCloudFloat 20s ease-in-out infinite;
}
.hero-cloud--1::before { width: 160px; height: 130px; top: -50px; left: 70px; }
.hero-cloud--1::after  { width: 130px; height: 100px; top: -20px; left: 170px; }

.hero-cloud--2 {
  width: 250px; height: 85px;
  top: 40%; right: 8%;
  animation: heroCloudFloat 25s ease-in-out 5s infinite reverse;
}
.hero-cloud--2::before { width: 120px; height: 95px; top: -38px; left: 50px; }
.hero-cloud--2::after  { width: 100px; height: 75px; top: -15px; left: 130px; }

.hero-cloud--3 {
  width: 180px; height: 60px;
  bottom: 15%; left: 30%;
  animation: heroCloudFloat 18s ease-in-out 8s infinite;
}
.hero-cloud--3::before { width: 85px; height: 70px; top: -30px; left: 30px; }
.hero-cloud--3::after  { width: 70px; height: 55px; top: -10px; left: 80px; }

@keyframes heroCloudFloat {
  0%, 100% { transform: translateX(0) translateY(0); opacity: 0.5; }
  25%      { transform: translateX(30px) translateY(-8px); opacity: 0.7; }
  50%      { transform: translateX(15px) translateY(5px); opacity: 0.4; }
  75%      { transform: translateX(-20px) translateY(-3px); opacity: 0.6; }
}

/* =============================================================
   29. RAIN DROPS
   ============================================================= */
#rain {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.7) 100%);
  box-shadow: 0 0 3px rgba(255,255,255,0.2);
  will-change: transform;
}

/* =============================================================
   30. MARKER PRODUCTS — Premium interactive catalog
   ============================================================= */
.products-head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.products-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.1rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e4e4e7;
  background: linear-gradient(135deg, rgba(236,72,153,0.16), rgba(236,72,153,0.08));
  border: 1px solid rgba(236,72,153,0.28);
  box-shadow: none;
}
.products-title {
  margin: 1rem 0 .35rem;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  color: #e4e4e7;
}
.products-title span {
  background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.products-sub {
  margin: 0 auto;
  max-width: 480px;
  color: #71717a;
}

/* Product grid header panel */
.products-component .catalog-panel {
  border-color: rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(236,72,153,0.02), transparent 40%),
    #1b1c21;
}
.products-component .catalog-toolbar {
  border-color: rgba(255,255,255,0.06);
}
.products-component .catalog-letters .chip {
  background: #1d1e23;
}
.products-component .catalog-letters .chip:hover {
  border-color: rgba(236,72,153,0.5);
  background: #26272c;
  color: #e4e4e7;
  box-shadow: 0 0 12px rgba(236,72,153,0.2);
}
.products-component .catalog-letters .chip.is-active {
  background: linear-gradient(135deg, #f472b6, #db2777);
  border-color: rgba(251,207,232,0.4);
  color: #0a1220;
  box-shadow: 0 6px 22px rgba(236,72,153,0.4);
}
.products-component .catalog-search input {
  background: #1d1e23;
  border-color: rgba(236,72,153,0.16);
}
.products-component .catalog-search input:focus {
  border-color: rgba(236,72,153,0.55);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.12);
}

/* =============================================================
   31. MARKER PRODUCT CARD (ac-card)
   ============================================================= */
.ac-card.card {
  position: relative;
  display: block;
  border: 1px solid rgba(255,255,255,0.07);
  background: #17181d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.45);
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.ac-card.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(236,72,153,0.18);
  border-color: rgba(236,72,153,0.35);
}

/* media / image */
.products .ac-card .ac-media {
  aspect-ratio: 16/10;
  background: radial-gradient(120% 120% at 50% 0%, #26272c 0%, #131418 100%);
}
.products .ac-card .ac-media > img {
  object-fit: cover;
  aspect-ratio: auto;
  filter: saturate(0.85) contrast(1.03);
  transform: scale(1.05);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s ease;
}
.products .ac-card:hover .ac-media > img {
  transform: scale(1.14);
  filter: saturate(1.15) contrast(1.05) brightness(1.04);
}
.ac-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.78) 100%);
}

/* type badge */
.ac-type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  padding: .3rem .6rem;
  border-radius: 8px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: #e4e4e7;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(236,72,153,0.28);
  backdrop-filter: blur(6px);
}

/* badges */
.ac-card .ac-badges {
  top: auto;
  right: 12px;
  bottom: 12px;
  left: auto;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
  z-index: 4;
}
.ac-card .badges div {
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* CTA overlay */
.ac-cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 16px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.05rem;
  border-radius: 11px;
  font-size: .84rem;
  font-weight: 800;
  color: #0a1220;
  background: linear-gradient(135deg, #f472b6, #db2777);
  box-shadow: 0 10px 26px rgba(236,72,153,0.45);
  opacity: 0;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.ac-card:hover .ac-cta {
  opacity: 1;
  transform: translate(-50%, 0);
}
.ac-cta svg { transition: transform .25s ease; }
.ac-card:hover .ac-cta svg { transform: translateX(3px); }

/* body */
.ac-card .ac-body {
  display: block !important;
  padding: .95rem 1.05rem 1.05rem;
  background: #17181d;
}
.ac-card .ac-title {
  display: block !important;
  margin: 0 0 .55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #e4e4e7;
  line-height: 1.25;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.ac-card:hover .ac-title { color: #fbcfe8; }
.ac-card .ac-meta {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.ac-card .ac-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: #a1a1aa;
}
.ac-card .ac-tag svg { color: #ec4899; flex: none; }
.ac-card .ac-price {
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(90deg, #e4e4e7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* hide old title bubble on marker cards */
.ac-card .group-card__img::after { display: none; }
.ac-card .group-card__img::before { display: none; }

/* 3D tilt (JS adds inline transform on mousemove) */
.ac-card.tilting { transition: transform .12s ease-out, box-shadow .2s ease, border-color .2s ease; }

/* reveal-on-scroll */
.products-component .catalog-item { transition: opacity .55s ease var(--d, 0s), transform .55s cubic-bezier(.2,.8,.2,1) var(--d, 0s); }
.products-component .catalog-item.is-hidden { opacity: 0; transform: scale(.96); }

.products-component .catalog-item[data-reveal] { --d: 0s; }
.products-component .catalog-item[data-reveal]:nth-child(4n+2) { --d: .06s; }
.products-component .catalog-item[data-reveal]:nth-child(4n+3) { --d: .12s; }
.products-component .catalog-item[data-reveal]:nth-child(4n) { --d: .18s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* =============================================================
   32. MARKER TESTIMONIALS (replaces ticker)
   ============================================================= */
.q-testi {
  padding: 5rem 0 4rem;
  position: relative;
}
.q-testi-head { text-align: center; margin-bottom: 2.6rem; }
.q-testi-pill {
  display: inline-flex;
  padding: .38rem .95rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: #e4e4e7;
  background: linear-gradient(135deg, rgba(236,72,153,0.16), rgba(236,72,153,0.08));
  border: 1px solid rgba(236,72,153,0.28);
  box-shadow: none;
}
.q-testi-head h2 {
  margin: 1rem 0 .35rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #e4e4e7;
}
.q-testi-head p { margin: 0; color: #71717a; }
.q-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.q-testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: #17181d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .3s cubic-bezier(.2,.8,.2,1) var(--d, 0s), border-color .3s ease, box-shadow .3s ease, opacity .55s ease var(--d, 0s);
}
.q-testi-card[data-reveal] { opacity: 0; }
.q-testi-card.revealed { opacity: 1; }
.q-testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(90% 70% at 50% 0%, rgba(236,72,153,0.06), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
}
.q-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,0.32);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.q-testi-card:hover::before { opacity: 1; }
.q-testi-card .stars { color: #ec4899; letter-spacing: .12em; font-size: .95rem; }
.q-testi-card p { margin: 0; font-size: .92rem; line-height: 1.6; color: #a1a1aa; flex: 1; }
.q-testi-card .author {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  color: #a1a1aa;
}
.q-testi-card .avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  color: #0a1220;
  background: linear-gradient(135deg, #f472b6, #db2777);
  box-shadow: 0 0 12px rgba(236,72,153,0.4);
}
@media (max-width: 992px) {
  .q-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .q-testi-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ac-card, .q-testi-card { transition: none; }
}

/* =============================================================
   33. MARKER CHECKOUT & CART — custom brand styling
   ============================================================= */
.cart .section-title {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.6rem;
}
.cart .section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(236,72,153,0.35), transparent);
}

/* --- Cart item rows --- */
.cart .cart-item-bg {
  background: linear-gradient(180deg, #1b1c21, #17181d);
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cart .cart-item-bg:hover {
  border-color: rgba(236,72,153,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 24px rgba(236,72,153,0.06);
}
.cart .cart-image-container { background: #141519; border-radius: 12px; }
.cart .cart-product-image { border-radius: 10px; }
.cart .cart-product-link { color: #e4e4e7 !important; }
.cart .cart-product-link:hover { color: #f472b6 !important; }
.cart .cart-variant-text { color: #71717a; }
.cart .cart-discount-text { color: #ec4899; font-weight: 600; }
.cart .cart-addon-badge {
  background: rgba(236,72,153,0.10);
  border-color: rgba(236,72,153,0.25);
  color: #f9a8d4;
  border-radius: 8px;
}
.cart .cart-qty-btn {
  background: #202127;
  color: #e4e4e7;
  border-radius: 8px;
}
.cart .cart-qty-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #f472b6, #db2777);
  color: #0a1220;
}
.cart .cart-qty-input {
  background: #141519;
  color: #e4e4e7;
  border-radius: 8px;
}
.cart .cart-price-text {
  color: #e4e4e7;
  font-weight: 800;
}

/* --- Order summary panel --- */
.cart .form {
  background: linear-gradient(180deg, #1b1c21, #17181d);
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 18px;
}
.cart .form .border-bottom { border-color: rgba(255,255,255,0.08) !important; }
.cart .form .form-label {
  color: #a1a1aa;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
}
.cart .form .fw-bold { color: #e4e4e7; }

/* --- Checkout button --- */
.cart .form .btn.btn-outline-primary {
  background: linear-gradient(135deg, #f472b6, #db2777);
  color: #0a1220 !important;
  border: 1px solid rgba(251,207,232,0.35);
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: .8rem 1.25rem;
  box-shadow: 0 10px 30px rgba(236,72,153,0.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
}
.cart .form .btn.btn-outline-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 44px rgba(236,72,153,0.5);
  color: #0a1220 !important;
  background: linear-gradient(135deg, #f472b6, #db2777);
  border-color: rgba(251,207,232,0.35);
}
.cart .form .btn.btn-outline-primary:disabled {
  background: #26272c;
  color: #71717a !important;
  border-color: #26272c;
  box-shadow: none;
}
.cart .form .btn svg { margin-left: .4rem; }

/* --- States / alerts / misc --- */
.cart .alert-warning {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
  color: #fcd34d;
}
.cart .alert-danger {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.25);
  color: #fca5a5;
}
.cart .spinner-border { --bs-spinner-color: #ec4899; }
.cart .border.rounded.text-center {
  background: #17181d;
  border-color: rgba(255,255,255,0.07) !important;
  border-radius: 16px !important;
}
.cart .text-muted { color: #71717a !important; }

/* =============================================================
   34. MARKER PRODUCT PAGE — branded buy buttons & panels
   ============================================================= */
.product-wrapper .btn.btn-primary {
  background: linear-gradient(135deg, #f472b6, #db2777);
  border: 1px solid rgba(251,207,232,0.35);
  color: #0a1220;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(236,72,153,0.3);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.product-wrapper .btn.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 34px rgba(236,72,153,0.45);
  color: #0a1220;
  background: linear-gradient(135deg, #f472b6, #db2777);
}
.product-wrapper .btn.btn-primary:disabled {
  background: #26272c;
  color: #71717a;
  border-color: #26272c;
  box-shadow: none;
  transform: none;
  filter: none;
}

.product-wrapper .btn.btn-outline-primary {
  border-radius: 12px;
  font-weight: 700;
}
.product-wrapper .btn.btn-outline-primary:hover {
  background: rgba(236,72,153,0.14);
  border-color: #f472b6;
}

/* volume discount hint */
.product-wrapper .form-control.text-center.mt-2 {
  background: rgba(236,72,153,0.08);
  border-color: rgba(236,72,153,0.25);
  color: #f9a8d4;
  border-radius: 10px;
}

/* addons */
.product-wrapper .addon-item {
  background: #1b1c21;
  border-color: rgba(255,255,255,0.07);
  border-radius: 12px;
}
.product-wrapper .addon-item:hover {
  background: #202127;
}
.product-wrapper .btn-addon-add {
  border-radius: 10px;
}
.product-wrapper .btn-addon-remove {
  border-radius: 10px;
}

/* notification popup */
.product-wrapper .notification-popup {
  border-color: rgba(236,72,153,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 24px rgba(236,72,153,0.08);
}



