/* ===== COLLECTION PAGE HERO (lighter than hub hero) ===== */
.collection-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.collection-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 50% 40%, rgba(167,139,250,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 30% 60%, rgba(34,211,238,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 70% 30%, rgba(251,113,133,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.collection-hero .hero-content {
  position: relative;
  z-index: 1;
}

.collection-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 50%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.collection-hero .subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.collection-hero .stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.collection-hero .nav-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .collection-hero { min-height: 40vh; padding: 3rem 1rem 1rem; }
  .collection-hero .stats { gap: 1.5rem; }
}
