/* ========================================
   NOW PLAYING PRODUCT PAGE
======================================== */
.page-product-nowplaying {
  padding-top: 108px;
  padding-bottom: 88px;
}

.product-nowplaying {
  width: 100%;
  padding: 0 24px;
}

.product-nowplaying__panel {
  width: min(100%, 700px);
  margin: 0 auto;
  padding: 34px 26px 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
}

.product-nowplaying__hero {
  margin-bottom: 120px;
}

.product-nowplaying__title {
  margin: 0;
  font-size: clamp(34px, 7vw, 66px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #000;
}

.product-nowplaying__kicker {
  margin: 0;
  font-size: clamp(30px, 6.4vw, 58px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.34);
}

.product-nowplaying__subtitle {
  margin: 0;
  font-size: clamp(30px, 6.4vw, 58px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.34);
}

.product-nowplaying__meta {
  margin: 0 0 34px;
  display: grid;
  gap: 2px;
}

.product-nowplaying__meta-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.product-nowplaying__meta-row dt {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.34);
}

.product-nowplaying__meta-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
}

.product-nowplaying__media {
  width: 100%;
  margin: 0 0 18px;
}

.product-nowplaying__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.product-nowplaying__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 0 0 38px;
}

.product-nowplaying__soldout {
  min-width: 240px;
  background: transparent;
  color: #000;
  border-color: rgba(0, 0, 0, 0.75);
  cursor: default;
  pointer-events: none;
}

.product-nowplaying__soldout:hover,
.product-nowplaying__soldout:active,
.product-nowplaying__soldout:focus {
  background: transparent;
  color: #000;
  border-color: rgba(0, 0, 0, 0.75);
}

.product-nowplaying__back {
  min-width: 170px;
}

.product-nowplaying__back--desktop {
  background: transparent;
  color: #000;
  border-color: rgba(0, 0, 0, 0.75);
}

.product-nowplaying__back--mobile {
  display: none;
}

.product-nowplaying__description {
  display: grid;
  gap: 18px;
}

.product-nowplaying__description p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: #000;
}

.product-nowplaying__section-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}

.product-nowplaying__tracklist {
  padding-top: 6px;
}

.product-nowplaying__tracklist-list {
  margin: 0;
  padding: 10px 0 10px 20px;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.product-nowplaying__tracklist-list li {
  font-size: 10px;
  line-height: 1.5;
}

.product-nowplaying__specs {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.product-nowplaying__spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
  line-height: 1;
}

/* ========================================
   NOW PLAYING PRODUCT PAGE / MOBILE
======================================== */
@media (max-width: 640px) {
  .page-product-nowplaying {
    padding-top: 84px;
    padding-bottom: 56px;
  }

  .product-nowplaying {
    padding: 0 8px;
  }

  .product-nowplaying__panel {
    width: 100%;
    padding: 20px 12px 28px;
    border-radius: 24px;
  }

  .product-nowplaying__hero {
    margin-bottom: 82px;
  }

  .product-nowplaying__title {
    font-size: clamp(30px, 10.5vw, 48px);
  }

  .product-nowplaying__kicker {
    font-size: clamp(28px, 9.5vw, 44px);
  }

  .product-nowplaying__subtitle {
    font-size: clamp(28px, 9.5vw, 44px);
  }

  .product-nowplaying__meta {
    margin-bottom: 22px;
  }

  .product-nowplaying__meta-row dt,
  .product-nowplaying__meta-row dd {
    font-size: 14px;
  }

  .product-nowplaying__media {
    margin-bottom: 16px;
  }

  .product-nowplaying__actions {
    margin-bottom: 28px;
  }

  .product-nowplaying__soldout {
    width: 100%;
    min-width: 0;
  }

  .product-nowplaying__back--desktop {
    display: none;
  }

  .product-nowplaying__back--mobile {
    display: inline-flex;
    width: min(100%, 220px);
    min-width: 0;
    margin: 8px auto 0;
    background: #d0d0d0;
    color: #000;
    border-color: rgba(0, 0, 0, 0.75);
  }

  .product-nowplaying__description {
    gap: 12px;
  }

  .product-nowplaying__description p {
    font-size: 7.6px;
    line-height: 1.5;
  }

  .product-nowplaying__section-title {
    font-size: 10px;
  }

  .product-nowplaying__tracklist-list {
    gap: 4px;
    padding: 8px 0 8px 18px;
  }

  .product-nowplaying__tracklist-list li {
    font-size: 7.6px;
    line-height: 1.5;
  }

  .product-nowplaying__spec-row {
    font-size: 7.6px;
    line-height: 1.2;
  }
}