/* =========================================================
   BULQQ — Neon Purple / Black / Neon Pink Storefront Theme
   ========================================================= */

:root {
  --black:          #08050d;
  --black-soft:      #120c1c;
  --surface:         #17101f;
  --surface-2:       #1e1428;
  --border:          #34223f;

  --purple:          #9d1cff;
  --purple-deep:      #6d0adb;
  --purple-glow:      #b34dff;
  --pink:            #ff2ec4;
  --pink-glow:        #ff6fe0;
  --pink-deep:        #d600a2;

  --text:            #f4eefc;
  --text-dim:         #b9a9cc;
  --text-faint:       #8f7ba6;

  --gradient-brand:   linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
  --gradient-brand-v:  linear-gradient(160deg, var(--purple-deep) 0%, var(--black) 55%, var(--pink-deep) 130%);
  /* Darker, WCAG-AA-safe gradient (white text stays >=4.5:1 at both ends)
     used for anything text-bearing/interactive — buttons, active states,
     badges. The brighter --gradient-brand is reserved for purely
     decorative accents (scrollbar, hero glow, blurred footer shape). */
  --gradient-brand-btn: linear-gradient(90deg, #6f1bc0 0%, #c01490 100%);
  --shadow-neon-purple: 0 0 18px rgba(157, 28, 255, 0.55), 0 0 40px rgba(157, 28, 255, 0.25);
  --shadow-neon-pink:  0 0 18px rgba(255, 46, 196, 0.55), 0 0 40px rgba(255, 46, 196, 0.25);

  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* subtle grain/noise for depth */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
  margin: 0 0 12px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gradient-brand); border-radius: 10px; }

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(8, 5, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-topbar {
  background: var(--gradient-brand-btn);
}
.topbar-inner { padding: 7px 24px; text-align: center; }
.topbar-msg {
  font-size: 12.5px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #ffffff;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-brand-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-neon-purple);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: lowercase;
}
.logo-dot { color: var(--pink); }

.header-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 6px 4px 18px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.header-search:focus-within {
  border-color: var(--purple);
  box-shadow: var(--shadow-neon-purple);
}
.header-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 0;
}
.header-search input::placeholder { color: var(--text-faint); }
.header-search button {
  background: var(--gradient-brand-btn);
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.2s;
}
.icon-btn:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--shadow-neon-pink);
}
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  border-top: 1px solid var(--border);
  overflow-x: auto;
}
.nav-inner {
  display: flex;
  gap: 6px;
  padding: 10px 24px;
  white-space: nowrap;
}
.nav-link {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active {
  color: #ffffff;
  background: var(--gradient-brand-btn);
  font-weight: 600;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--gradient-brand-v);
  overflow: hidden;
  padding: 90px 24px 100px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}
.hero::before {
  width: 420px; height: 420px;
  background: var(--purple);
  top: -140px; left: -100px;
}
.hero::after {
  width: 380px; height: 380px;
  background: var(--pink);
  bottom: -160px; right: -80px;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-kicker {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--pink-glow);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink-glow);
  margin-bottom: 22px;
  box-shadow: var(--shadow-neon-pink);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 34px;
}
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------
   TRUST STRIP (homepage, under hero)
   --------------------------------------------------------- */
.trust-strip {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  padding: 18px 24px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.trust-strip-item .ic { font-size: 15px; }
@media (max-width: 700px) {
  .trust-strip-inner { justify-content: flex-start; gap: 10px 22px; }
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand-btn);
  color: #ffffff;
  box-shadow: var(--shadow-neon-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-neon-pink); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--purple-glow);
  color: var(--text);
}
.btn-outline:hover { background: rgba(157,28,255,0.12); box-shadow: var(--shadow-neon-purple); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */
.section { padding: 70px 24px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-glow);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0; }
.section-head p.sub { color: var(--text-dim); margin: 6px 0 0; }

/* ---------------------------------------------------------
   CATEGORY PILLS / STRIP
   --------------------------------------------------------- */
.category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.category-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-pink);
}
.category-card .cat-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.category-card .cat-name { font-weight: 600; font-size: 14px; }
.category-card .cat-count { color: var(--text-faint); font-size: 12px; margin-top: 4px; }

/* ---------------------------------------------------------
   PRODUCT GRID / CARDS
   --------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-glow);
  box-shadow: var(--shadow-neon-purple);
}

.product-card .card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0d0813;
  overflow: hidden;
}
.product-card .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-media img { transform: scale(1.06); }
img.img-fallback {
  object-fit: contain !important;
  padding: 20%;
  box-sizing: border-box;
  transform: none !important;
}
.pd-media img.img-fallback { padding: 15%; }

.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gradient-brand-btn);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.wishlist-toggle {
  position: absolute;
  top: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(8,5,13,0.65);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.wishlist-toggle:hover, .wishlist-toggle.active {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--shadow-neon-pink);
}

.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-category {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-glow);
  font-weight: 600;
}
.card-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.card-price { font-size: 17px; font-weight: 700; color: var(--pink-glow); }
.card-price-old {
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.card-cta {
  margin-top: 10px;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.card-cta:hover {
  background: var(--gradient-brand-btn);
  color: #ffffff;
  border-color: transparent;
}

/* ---------------------------------------------------------
   FILTER BAR (shop page)
   --------------------------------------------------------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
}

.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 24px;
}
.filter-panel-header { display: none; }
.filter-panel h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--pink-glow);
}
.filter-group { margin-bottom: 26px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { margin-bottom: 4px; }
.filter-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.filter-list a:hover { background: var(--surface-2); color: var(--text); }
.filter-list a.active {
  background: var(--gradient-brand-btn);
  color: #ffffff;
  font-weight: 600;
}
.filter-list .count { color: var(--text-faint); font-size: 12px; }
.filter-list a.active .count { color: rgba(255,255,255,0.75); }

.price-filter-form { display: flex; flex-direction: column; gap: 10px; }
.price-filter-form .price-inputs { display: flex; gap: 8px; }
.price-filter-form input {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  color: var(--text);
  font-size: 13px;
}
.price-filter-form input:focus { outline: none; border-color: var(--purple); }

/* ---------------------------------------------------------
   MOBILE FILTER TRIGGER, DRAWER & ACTIVE-FILTER CHIPS
   On small screens the filter sidebar becomes a slide-in
   drawer instead of a full-width block that buries the
   product grid below the fold.
   --------------------------------------------------------- */
.mobile-filter-bar { display: none; }
.active-filters { display: none; }

@media (max-width: 900px) {
  .mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0 0;
  }
  .mobile-filter-trigger { flex-shrink: 0; }
  .mobile-sort-form { flex: 1; max-width: 190px; }
  .mobile-sort-form .sort-select { width: 100%; }

  .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 14px 0 0;
  }
  .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--purple-glow);
    color: var(--text);
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .filter-chip .chip-x { color: var(--pink-glow); font-weight: 700; }
  .clear-all-link {
    font-size: 12px;
    color: var(--text-faint);
    text-decoration: underline;
    padding: 6px 4px;
  }

  .filter-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 2, 8, 0.7);
    backdrop-filter: blur(2px);
    z-index: 200;
  }
  .filter-drawer-backdrop.open { display: block; }

  .filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 86vw);
    max-width: 86vw;
    z-index: 201;
    border-radius: 0;
    border-left: 1px solid var(--border);
    border-top: none; border-right: none; border-bottom: none;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    padding-top: 18px;
  }
  .filter-panel.open { transform: translateX(0); }

  .filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }
  .filter-panel-header h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }
  .filter-drawer-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 15px;
    line-height: 1;
  }
}

.empty-state-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.suggestion-pill {
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}
.suggestion-pill:hover { border-color: var(--pink); color: var(--pink-glow); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.shop-toolbar .result-count { color: var(--text-dim); font-size: 13.5px; }
@media (max-width: 900px) {
  .shop-toolbar { display: none; } /* replaced by .mobile-filter-bar + .active-filters above */
}
.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

/* ---------------------------------------------------------
   PAGINATION
   --------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13.5px;
  padding: 0 12px;
}
.pagination a:hover { border-color: var(--purple); color: var(--text); }
.pagination .active {
  background: var(--gradient-brand-btn);
  color: #ffffff;
  font-weight: 700;
  border-color: transparent;
}

/* ---------------------------------------------------------
   PRODUCT DETAIL PAGE
   --------------------------------------------------------- */
.breadcrumbs {
  font-size: 12.5px;
  color: var(--text-faint);
  padding: 20px 24px 0;
}
.breadcrumbs a:hover { color: var(--pink-glow); }
.breadcrumbs span { margin: 0 6px; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 36px 24px 80px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
}

.pd-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .card-category { font-size: 12px; }
.pd-info h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 10px 0 16px;
  line-height: 1.2;
}
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price { font-size: 30px; font-weight: 700; color: var(--pink-glow); }
.pd-price-old { font-size: 17px; text-decoration: line-through; color: var(--text-faint); }
.pd-save-badge {
  display: inline-block;
  background: rgba(255,46,196,0.15);
  border: 1px solid var(--pink);
  color: var(--pink-glow);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.pd-stock { font-size: 13px; margin: 14px 0 22px; display: flex; align-items: center; gap: 8px; }
.pd-stock .dot { width: 9px; height: 9px; border-radius: 50%; background: #2ee6a4; box-shadow: 0 0 8px #2ee6a4; }
.pd-cta-row { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.style-pairing-block {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.style-pairing-heading {
  font-family: var(--font-display);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.style-vibe-tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gradient-brand-btn);
  padding: 4px 10px;
  border-radius: 999px;
}
.style-pairing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.style-pairing-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}
.style-pairing-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-glow);
  font-size: 12px;
}

.pd-meta {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.pd-meta div span { color: var(--text); font-weight: 500; }
.pd-trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pd-trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}
.pd-trust-item .ic { font-size: 20px; display: block; margin-bottom: 6px; }
.pd-disclosure {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-faint);
  border-left: 2px solid var(--purple);
  padding-left: 12px;
}

/* ---------------------------------------------------------
   STICKY MOBILE "BUY NOW" BAR
   Hidden on desktop; on mobile it stays off-screen until the
   main CTA scrolls out of view (toggled via IntersectionObserver
   in main.js), so the purchase path is always one tap away.
   --------------------------------------------------------- */
.sticky-buy-bar {
  display: none;
}
@media (max-width: 700px) {
  .sticky-buy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(18, 12, 28, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }
  .sticky-buy-bar.visible { transform: translateY(0); }
  .sticky-buy-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
  }
  .sticky-buy-price { font-weight: 700; color: var(--pink-glow); font-size: 15px; }
  .sticky-buy-name {
    font-size: 11.5px;
    color: var(--text-faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-buy-bar .btn { flex-shrink: 0; white-space: nowrap; }
}

/* ---------------------------------------------------------
   NEWSLETTER / CTA BANNER
   --------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-brand-v);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(26px, 3.6vw, 40px); }
.cta-banner p { color: var(--text-dim); max-width: 480px; margin: 0 auto 30px; }

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.footer-glow {
  position: absolute;
  width: 500px; height: 260px;
  background: var(--gradient-brand);
  filter: blur(120px);
  opacity: 0.18;
  top: -80px; left: 50%;
  transform: translateX(-50%);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 50px;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
/* Standard CSS Grid fix: grid items default to min-width:auto, which
   stops them shrinking below their content's natural width and can
   silently force the whole grid (and page) to scroll horizontally.
   Forcing min-width:0 lets text wrap/shrink to fit its track instead. */
.footer-grid > * { min-width: 0; }
.footer-col ul a { overflow-wrap: anywhere; }

.footer-brand p { color: var(--text-dim); font-size: 13.5px; margin: 14px 0 18px; max-width: 320px; }
.footer-logo { margin-bottom: 4px; }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--text-dim);
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--pink); color: var(--pink-glow); box-shadow: var(--shadow-neon-pink); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-glow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--text-dim); }
.footer-col ul a:hover { color: var(--pink-glow); }

.footer-newsletter-copy { font-size: 13.5px; color: var(--text-dim); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
}
.newsletter-form input:focus { outline: none; border-color: var(--purple); }
.newsletter-form button {
  background: var(--gradient-brand-btn);
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
}

.footer-disclosure {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-disclosure p { font-size: 11.5px; color: var(--text-faint); margin: 0; max-width: 900px; }

.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner > * { min-width: 0; overflow-wrap: anywhere; }
.footer-legal-links a:hover { color: var(--pink-glow); }

/* ---------------------------------------------------------
   MISC / STATES
   --------------------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-dim);
}
.empty-state h3 { margin-bottom: 10px; }

.page-header {
  padding: 56px 24px 20px;
  text-align: center;
}
.page-header .eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-glow);
  font-weight: 600;
  margin-bottom: 10px;
}
.page-header h1 { font-size: clamp(30px, 4vw, 46px); }
.page-header p { color: var(--text-dim); max-width: 560px; margin: 12px auto 0; }

.static-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 24px 90px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}
.static-content h2 { margin-top: 34px; color: var(--text); }
.static-content strong { color: var(--text); }

@media (max-width: 700px) {
  .header-main { flex-wrap: wrap; }
  .header-search { order: 3; max-width: 100%; }
  .pd-trust { grid-template-columns: 1fr; }
}
