/* ==========================================================================
   DREWBEEE RIPS — singles.css (Shop Singles page only)
   ========================================================================== */

/* ---- Page hero: compact, honeycomb texture + lightning glow ---- */
.singles-hero {
  position: relative;
  padding: 58px 0 46px;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 49, 232, 0.28);
}

/* low-opacity honeycomb field, echoing the card backs in the logo art */
.singles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      from 30deg,
      rgba(168, 85, 247, 0.10) 0deg 60deg,
      transparent 60deg 120deg
    );
  background-size: 52px 90px;
  opacity: 0.16;
  pointer-events: none;
}

/* purple energy + gold payoff glows behind the headline */
.singles-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 640px 300px at 12% 0%, rgba(139, 49, 232, 0.30), transparent 65%),
    radial-gradient(ellipse 520px 260px at 88% 100%, rgba(255, 180, 0, 0.10), transparent 60%);
  pointer-events: none;
}

.singles-hero .wrap {
  position: relative;
  z-index: 1;
}

.singles-hero h1 {
  font-size: clamp(2.7rem, 8vw, 4.4rem);
  text-shadow: 0 0 34px rgba(168, 85, 247, 0.35);
}

.singles-hero h1 .marker {
  font-size: 0.88em;
}

.hero-sub {
  margin-top: 12px;
  font-weight: 800;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  letter-spacing: 0.01em;
}

.hero-note {
  margin-top: 8px;
  color: var(--ink-dim);
  font-size: 0.92rem;
  max-width: 62ch;
}

.hero-note strong {
  color: var(--purple-hot);
}

/* ---- Filter bar ---- */
.shop-section {
  padding-top: 36px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: transparent;
  border: 2px solid rgba(168, 85, 247, 0.55);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.filter-pill:hover {
  background: rgba(139, 49, 232, 0.18);
  box-shadow: var(--glow-purple);
}

.filter-pill[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
  box-shadow: var(--glow-gold);
}

.filter-pill[aria-pressed="true"]:hover {
  background: var(--gold-hot);
  border-color: var(--gold-hot);
}

.sold-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  min-height: 44px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-dim);
  user-select: none;
}

.sold-toggle:hover {
  color: var(--ink);
}

.sold-toggle input {
  width: 17px;
  height: 17px;
  accent-color: var(--gold);
  cursor: pointer;
}

@media (max-width: 560px) {
  .sold-toggle {
    margin-left: 0;
  }
}

/* [hidden] must beat .card-tile { display:flex } from base.css */
.card-tile[hidden] {
  display: none;
}

.grid-empty {
  margin-top: 22px;
  padding: 26px 20px;
  text-align: center;
  border: 1px dashed rgba(168, 85, 247, 0.45);
  border-radius: var(--radius);
}

/* ---- Buying info strip ---- */
.buy-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 820px) {
  .buy-panels {
    grid-template-columns: 1fr;
  }
}

.buy-panel {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid rgba(139, 49, 232, 0.4);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  overflow: hidden;
}

/* thin gold payoff line across the top of each panel */
.buy-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-hot), var(--gold), transparent);
  opacity: 0.85;
}

.buy-panel .bp-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.buy-panel h3 {
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 8px;
}

.buy-panel p {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.buy-panel p strong {
  color: var(--ink);
}

/* ---- Live banner ---- */
.live-banner {
  position: relative;
  text-align: center;
  padding: 52px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(168, 85, 247, 0.5);
  background:
    radial-gradient(ellipse 560px 260px at 50% 0%, rgba(139, 49, 232, 0.35), transparent 70%),
    linear-gradient(180deg, var(--bg-panel), var(--bg-raised));
  box-shadow: var(--glow-purple);
  overflow: hidden;
}

/* faint honeycomb echo inside the banner */
.live-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      from 30deg,
      rgba(255, 180, 0, 0.10) 0deg 60deg,
      transparent 60deg 120deg
    );
  background-size: 44px 76px;
  opacity: 0.10;
  pointer-events: none;
}

/* two lightning streaks slicing the corners */
.live-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 12%, rgba(168, 85, 247, 0.35) 13%, transparent 14.5%),
    linear-gradient(115deg, transparent 84%, rgba(255, 180, 0, 0.22) 85%, transparent 86.5%);
  pointer-events: none;
}

.live-banner > * {
  position: relative;
  z-index: 1;
}

.live-banner h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto;
}

.live-banner h2 .marker {
  display: inline-block;
  font-size: 0.82em;
}

.banner-sub {
  color: var(--ink-dim);
  margin: 12px auto 22px;
  max-width: 48ch;
}
