/* ==========================================================================
   MERCH — fan collection
   ========================================================================== */

.merch { background: var(--sand); padding: clamp(4.5rem, 10vh, 8rem) 0; }

.merch-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.merch-head { margin-bottom: 3rem; }
.merch-head .section-title { margin-top: 1.2rem; }

/* ─── Product grid ─── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.merch-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.merch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(46, 33, 24, 0.10);
}

/* Placeholder image */
.merch-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0,0,0,0.03) 14px 15px),
    var(--paper);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.merch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.merch-card:hover .merch-thumb img { transform: scale(1.04); }

/* Card body */
.merch-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.merch-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.merch-name {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--espresso);
  line-height: 1.2;
}

.merch-name-soon {
  color: var(--taupe);
  font-style: italic;
}

/* ─── CTA ─── */
.merch-cta {
  display: flex;
  justify-content: center;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
  .merch-body { padding: 0.85rem 1rem 1.1rem; }
  .merch-name { font-size: 0.95rem; }
}
