/* ==========================================================================
   BLOCK HP-5 — Merch Store
   Files: block-hp-5-merch.php | block-hp-5-merch.css
   ========================================================================== */

/* ── Section shell ──────────────────────────────────────────────────────── */
.taula-merch {
  background: #ffffff;
  padding: 100px 100px 80px;
}

/* ── Section heading ────────────────────────────────────────────────────── */
.taula-merch__heading {
  font-family: var(--font-heading); /* Staatliches */
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 60px;
}

/* ── 3-column card grid ─────────────────────────────────────────────────── */
.taula-merch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ── Card ───────────────────────────────────────────────────────────────── */
.taula-merch__card {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  overflow: hidden;
}

/* ── Card image area — 2/3 of card, with pill overlay ───────────────────── */
.taula-merch__card-img-wrap {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 3 / 4; /* portrait — tall enough for merch shots */
  overflow: hidden;
}

.taula-merch__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Split title/price pill — centred horizontally, 10px from image bottom  */
.taula-merch__pill {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: stretch;
  border: 1px solid #000;
  overflow: hidden;
  white-space: nowrap;
  max-width: calc(100% - 20px); /* never overflow the card */
  pointer-events: none; /* Coming Soon — not clickable */
}

/* LEFT half — title: black bg, white text */
.taula-merch__pill-title {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* RIGHT half — price: white bg, black text */
.taula-merch__pill-price {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-left: 1px solid #000;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Card footer — Coming Soon status ─────────────────────────────────── */
.taula-merch__card-foot {
  padding: 16px 20px;
  border-top: 1px solid #000;
}

.taula-merch__status {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0;
  text-align: center;
}

/* ── CSS-driven language switching ─────────────────────────────────────── */
.taula-merch__lang {
  display: none;
}

html[data-taula-lang="CA"] .taula-merch__lang[data-lang="CA"],
html[data-taula-lang="ES"] .taula-merch__lang[data-lang="ES"],
html[data-taula-lang="EN"] .taula-merch__lang[data-lang="EN"] {
  display: inline;
}

html:not([data-taula-lang]) .taula-merch__lang[data-lang="EN"],
html[data-taula-lang=""] .taula-merch__lang[data-lang="EN"] {
  display: inline;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .taula-merch {
    padding: 80px 60px 60px;
  }

  .taula-merch__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .taula-merch {
    padding: 60px 25px 48px;
  }

  .taula-merch__grid {
    grid-template-columns: 1fr;
  }

  .taula-merch__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .taula-merch {
    padding: 48px 20px 40px;
  }
}
