/** Shopify CDN: Minification failed

Line 467:0 Unexpected "}"

**/
#tw-music-library {
  --ink: #2e2117;
  --muted: #5f4b38;
  --espresso: #17120d;
  --gold: #b88734;
  --line: rgba(184, 138, 59, 0.22);
  --shadow: 0 22px 60px rgba(80, 52, 20, 0.12);

  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  padding: 28px 18px 90px;

  background:
    radial-gradient(
      circle at top left,
      rgba(216, 180, 106, 0.3),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.65),
      transparent 28%
    ),
    linear-gradient(180deg, #fbf6ed 0%, #f2e6d4 100%);
}

#tw-music-library * {
  box-sizing: border-box;
}

/* Shared panels */

#tw-music-library .tw-hero,
#tw-music-library .tw-section {
  max-width: 1180px;
  margin: 0 auto 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 250, 242, 0.94);
}

/* Hero */

#tw-music-library .tw-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
}

#tw-music-library .tw-hero-copy h1,
#tw-music-library .tw-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
}

#tw-music-library .tw-hero-copy h1 {
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.92;
}

#tw-music-library .tw-hero-copy p,
#tw-music-library .tw-section-head p {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 21px;
  line-height: 1.75;
  color: var(--muted);
}

#tw-music-library .tw-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

#tw-music-library .tw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#tw-music-library .tw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

#tw-music-library .tw-btn.primary {
  background: var(--espresso);
  color: #fff8ee;
}

#tw-music-library .tw-btn.secondary {
  background: rgba(184, 135, 52, 0.1);
  border: 1px solid rgba(184, 135, 52, 0.28);
  color: var(--ink);
}

#tw-music-library .tw-btn:hover,
#tw-music-library .tw-platform:hover,
#tw-music-library .tw-song-card:hover,
#tw-music-library .tw-favorite-card:hover {
  transform: translateY(-2px);
}

#tw-music-library .tw-hero-art {
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  background: #f3e5cf;
}

#tw-music-library .tw-hero-art img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* Sections */

#tw-music-library .tw-section {
  padding: 32px;
}

#tw-music-library .tw-section-head {
  margin-bottom: 24px;
}

#tw-music-library .tw-section-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.98;
}

/* Streaming platforms */

#tw-music-library .tw-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

#tw-music-library .tw-platform {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fffaf2;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(80, 52, 20, 0.08);
  transition: 0.25s ease;
}

/* Artist favorites */

#tw-music-library .tw-favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#tw-music-library .tw-favorite-card,
#tw-music-library .tw-song-card {
  appearance: none;
  border: 1px solid var(--line);
  background: #fffaf2;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(80, 52, 20, 0.1);
  transition: 0.25s ease;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

#tw-music-library .tw-favorite-card {
  border-radius: 24px;
  padding: 18px;
  min-height:auto;
}

#tw-music-library .tw-favorite-card span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  font-weight: 600;
  margin: 14px 0 12px;
}

#tw-music-library .tw-favorite-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

#tw-music-library .tw-favorite-card.active,
#tw-music-library .tw-song-card.active {
  border-color: rgba(184, 135, 52, 0.55);
  background: linear-gradient(180deg, #fff8ee, #f5e7d2);
}

/* Artwork */

#tw-music-library .tw-card-cover {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 59, 0.18);
  background: #efe2cf;
  box-shadow: 0 10px 24px rgba(40, 25, 10, 0.1);
}

#tw-music-library .tw-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Search */

#tw-music-library .tw-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  background: #fffaf2;
  color: var(--ink);
  outline: none;
  margin-bottom: 16px;
}

#tw-music-library .tw-search:focus {
  border-color: rgba(184, 135, 52, 0.58);
  box-shadow: 0 0 0 3px rgba(184, 135, 52, 0.1);
}

#tw-music-library .tw-search::placeholder {
  color: rgba(95, 75, 56, 0.72);
}

/* Filters */

#tw-music-library .tw-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

#tw-music-library .tw-filter {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  padding: 9px 13px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#tw-music-library .tw-filter.active {
  background: var(--espresso);
  color: #fff8ee;
}

/* Song library */

#tw-music-library .tw-song-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

#tw-music-library .tw-song-card {
  border-radius: 20px;
  padding: 14px;
}

#tw-music-library .tw-song-card h3 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  color: var(--ink);
  font-weight: 600;
}

#tw-music-library .tw-song-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* Now listening tab */

#tw-music-library .tw-listening-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform:
    translateY(-50%)
    rotate(-90deg)
    translateY(-46px);
  transform-origin: right center;
  z-index: 70;
  border: 1px solid var(--line);
  border-bottom: none;
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  border-radius: 18px 18px 0 0;
  padding: 11px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(40, 25, 10, 0.18);
  cursor: pointer;
}

/* Listening drawer */

#tw-music-library .tw-listening-drawer {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translate(120%, -50%);
  width: min(360px, calc(100vw - 36px));
  z-index: 80;
  background: rgba(255, 250, 242, 0.97);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(40, 25, 10, 0.24);
  padding: 22px;
  transition: 0.3s ease;
  backdrop-filter: blur(12px);
}

#tw-music-library .tw-listening-drawer.open {
  transform: translate(0, -50%);
}

#tw-music-library .tw-drawer-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

#tw-music-library .tw-drawer-art {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  background: #efe2cf;
}

#tw-music-library .tw-drawer-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#tw-music-library .tw-listening-drawer h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.95;
  color: var(--ink);
}

#tw-music-library .tw-listening-drawer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

#tw-music-library audio {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
}

#tw-music-library .tw-drawer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

#tw-music-library .tw-drawer-links a {
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  padding: 10px 12px;
  background: #fffaf2;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

/* Tablet */

@media (max-width: 980px) {
  #tw-music-library .tw-hero {
    grid-template-columns: 1fr;
  }

  #tw-music-library .tw-favorites-grid,
  #tw-music-library .tw-song-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #tw-music-library .tw-platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
}

/* Mobile */

@media (max-width: 640px) {
  #tw-music-library {
    padding: 18px 12px 90px;
  }

  #tw-music-library .tw-hero,
  #tw-music-library .tw-section {
    padding: 22px;
    border-radius: 24px;
  }

  #tw-music-library .tw-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  #tw-music-library .tw-hero-copy p,
  #tw-music-library .tw-section-head p {
    font-size: 17px;
  }

  #tw-music-library .tw-btn {
    width: 100%;
  }

  #tw-music-library .tw-hero-art,
  #tw-music-library .tw-hero-art img {
    min-height: 260px;
  }

  #tw-music-library .tw-platform-grid,
  #tw-music-library .tw-song-grid {
    grid-template-columns: 1fr;
  }

  #tw-music-library .tw-listening-tab {
    top: auto;
    right: 14px;
    bottom: 16px;
    transform: none;
    border-radius: 999px;
    border: 1px solid var(--line);
  }

  #tw-music-library .tw-listening-drawer {
    top: auto;
    bottom: 72px;
    right: 14px;
    transform: translateY(120%);
    width: calc(100vw - 28px);
  }

  #tw-music-library .tw-listening-drawer.open {
    transform: translateY(0);
  }
}