/* =========================
   NO HEART CATALOG CSS
========================= */

.catalog-page {
  min-height: 100vh;
  padding: 140px 0 80px;
}

.catalog-hero {
  margin-bottom: 34px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 26px;
}

.catalog-card,
.beat-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 26px;
  background:
    radial-gradient(circle at top left,
      rgba(240,201,106,.12),
      transparent 35%),
    rgba(15,15,15,.96);

  border: 1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(18px);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.catalog-card:hover,
.beat-card:hover {
  transform: translateY(-4px);

  border-color: rgba(240,201,106,.3);

  box-shadow:
    0 20px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(240,201,106,.08);
}

/* =========================
   COVER IMAGE
========================= */

.catalog-card img,
.beat-card img,
.beat-artwork,
.beat-cover,
.catalog-cover {
  width: 100%;
  height: 340px;
  max-height: 340px;

  object-fit: cover;
  object-position: center;

  display: block;

  border-radius: 24px;

  background: #050505;

  margin-top: 18px;
  margin-bottom: 18px;
}

/* =========================
   AUDIO PLAYER
========================= */

.catalog-card audio,
.beat-card audio {
  width: 100%;
  margin: 14px 0 18px;
  border-radius: 18px;
}

/* =========================
   TAGS
========================= */

.catalog-tags,
.beat-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.catalog-tag,
.genre-pill,
.status-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.08);

  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* =========================
   TITLES
========================= */

.catalog-card h3,
.beat-card h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.catalog-meta,
.beat-meta {
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* =========================
   PRICE
========================= */

.catalog-price,
.beat-price {
  margin-top: 18px;
}

.catalog-price-label {
  color: #f0c96a;
  font-size: .82rem;
  letter-spacing: .12em;
  font-weight: 800;
}

.catalog-price strong,
.beat-price strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
}

/* =========================
   ACTION BUTTONS
========================= */

.catalog-actions,
.beat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.catalog-actions .btn,
.beat-actions .btn {
  min-width: 110px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card img,
  .beat-card img,
  .beat-artwork,
  .beat-cover,
  .catalog-cover {
    height: 240px;
    max-height: 240px;
  }

  .catalog-card,
  .beat-card {
    padding: 20px;
  }

  .catalog-card h3,
  .beat-card h3 {
    font-size: 1.5rem;
  }
}