/* ============================================================
   CATALOG PAGE
   ============================================================ */

.catalog-hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.catalog-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.catalog-hero__title {
  position: relative;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.catalog-hero__sub {
  position: relative;
  font-family: "Caveat", cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-2);
}

.product-img-link { display: block; }
.product-img-link:hover img { transform: scale(1.04); }
.product-img-link img { transition: transform .35s var(--ease); }
