/* ════════════════════════════════════════════════════
   LINEN — Store-First Home
   ════════════════════════════════════════════════════ */

/* ── Slim centered intro ── */
.store-intro {
  padding: var(--sp-10) 0 var(--sp-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.store-intro::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--rose-100) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.store-intro > .container {
  position: relative;
  z-index: 1;
}
.store-intro .eyebrow {
  margin-bottom: var(--sp-4);
}
.store-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto var(--sp-4);
  color: var(--ink-900);
}
.store-title .stroke {
  position: relative;
  display: inline-block;
}
.store-title .stroke::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%;
  bottom: 0.10em;
  height: 0.16em;
  background: var(--rose-100);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.85;
}
.store-sub {
  font-size: var(--fs-md);
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}

/* ── Filter chips (centered pill row) ── */
.store-filters {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  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);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.filter-pill:hover {
  color: var(--ink-900);
}
.filter-pill.active {
  background: var(--ink-900);
  color: var(--paper);
}

/* ── Products grid section ── */
.store-grid-section {
  padding: var(--sp-7) 0 var(--sp-11);
}
.store-empty {
  text-align: center;
  padding: var(--sp-11) 0;
  color: var(--ink-500);
  font-size: var(--fs-md);
}

/* ── Old shop-hero (used by /pages/shop.html) — keep working ── */
.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 .stroke {
  position: relative;
  display: inline-block;
}
.shop-title .stroke::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%;
  bottom: 0.10em;
  height: 0.18em;
  background: var(--rose-100);
  z-index: -1;
  border-radius: 4px;
}
.shop-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
