body.page-merch {
  --page-color: var(--color-merch);
  background: var(--black);
  color: var(--white);
}

/* ── Merch Hero — same structure as .releases-hero/.events-hero ── */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.merch-hero {
  background: var(--color-merch);
  padding: 48px var(--gutter) 0;
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  animation: hero-enter 0.5s var(--ease-out) both;
  animation-delay: 0.1s;
}

.merch-hero-eyebrow {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.merch-hero-title {
  font-family: var(--font-main);
  font-size: var(--text-section-title);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.82;
}

.merch-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 0;
  border-top: 1.5px solid rgba(255, 255, 255, 0.18);
  margin-top: 16px;
}

.merch-hero-tagline {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.merch-count-wrap { text-align: right; }

.merch-count-num {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  letter-spacing: -0.03em;
}

.merch-count-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Product grid — reuses .poster-wall (assets/css/poster.css) ── */
.poster-wall--merch { border-top: 1px solid #141414; }

.merch-card {
  position: relative;
  background: #0a0a0a;
  color: var(--white);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2.5vw, 26px);
  overflow: hidden;
  font-family: var(--font-main);
  background-size: cover;
  background-position: center;
}

.merch-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.merch-card-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1) 70%);
  margin: -26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.merch-card-name {
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.merch-card-price {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.merch-card-cta {
  margin-top: 4px;
}

/* ── Storefront band ── */
.merch-storefront-band {
  background: var(--color-merch);
  padding: 40px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.merch-storefront-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.merch-storefront-headline {
  font-family: var(--font-main);
  font-size: var(--text-section-title);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
}

.merch-storefront-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
  max-width: 380px;
  line-height: 1.55;
}

.merch-storefront-cta { flex-shrink: 0; }

@media (max-width: 640px) {
  .page-merch .poster-wall { grid-template-columns: 1fr 1fr; }
  .merch-storefront-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .page-merch .poster-wall { grid-template-columns: 1fr; }
}
