/* Lumière — Shop page */
.shop-hero {
  padding: var(--sp-10) 0 var(--sp-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--rose-100) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.shop-hero > .container { position: relative; z-index: 1; }
.shop-hero .eyebrow { margin-bottom: var(--sp-4); }
.shop-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-7);
}
.shop-title .italic { font-style: normal; color: var(--rose-500); }
.shop-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.filter-pill {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-500);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.filter-pill:hover { color: var(--ink-900); }
.filter-pill.active {
  background: var(--ink-900);
  color: var(--paper);
}
