/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--secondary-color);
}

/* Album Detail Header */
.album-detail-header {
  display: flex;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.album-detail-cover {
  width: 250px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.album-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-detail-cover .cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 4rem;
}

.album-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.album-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.album-detail-info h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.album-artist {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.album-artist a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.album-artist a:hover {
  text-decoration: underline;
}

.album-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-muted);
}

.album-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.album-meta i {
  color: var(--primary-color);
}

.album-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.album-streaming-links {
  margin-top: auto;
}

.album-streaming-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.streaming-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-spotify {
  background: #1db954;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
}

.btn-spotify:hover {
  background: #1aa34a;
  color: #ffffff;
}

.btn-youtube {
  background: #ff0000;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
}

.btn-youtube:hover {
  background: #cc0000;
  color: #ffffff;
}

.btn-deezer {
  background: #ff0092;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
}

.btn-deezer:hover {
  background: #cc0075;
  color: #ffffff;
}

/* Tracks Section */
.album-tracks-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.album-tracks-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.tracks-list-full {
  display: flex;
  flex-direction: column;
}

.tracks-list-full span > .track-info {
  color: #888;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.2s;
}

.track-item:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.track-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.track-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.track-item:hover .track-number {
  background: var(--primary-color);
  color: #ffffff;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  display: block;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-composer {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.track-views {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.track-arrow {
  color: var(--text-muted);
  font-size: 12px;
}

.track-item:hover .track-arrow {
  color: var(--primary-color);
}

.empty-tracks {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

/* Share Section */
.share-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.share-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
}

.btn-share:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-share.facebook {
  background: #1877f2;
}
.btn-share.facebook:hover {
  background: #1565c0;
}
.btn-share.twitter {
  background: #1da1f2;
}
.btn-share.twitter:hover {
  background: #1a91da;
}
.btn-share.whatsapp {
  background: #25d366;
}
.btn-share.whatsapp:hover {
  background: #20bd5a;
}
.btn-share.copy {
  background: var(--secondary-color);
}
.btn-share.copy:hover {
  background: var(--primary-color);
}

/* Sidebar */
.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.artist-sidebar-card .artist-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 15px;
}

.artist-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 1.5rem;
}

.artist-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.artist-details span {
  font-size: 13px;
  color: var(--primary-color);
}

.artist-bio-preview {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.artist-social-links {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.artist-social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}

.artist-social-links a:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* Other Albums */
.other-albums-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.other-album-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.other-album-item:hover {
  background: var(--light-bg);
}

.other-album-cover {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.other-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 1rem;
}

.other-album-info {
  flex: 1;
  min-width: 0;
}

.other-album-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-album-item:hover .other-album-title {
  color: var(--primary-color);
}

.other-album-year {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 991.98px) {
  .album-detail-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .album-detail-cover {
    width: 200px;
    height: 200px;
  }

  .album-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .album-meta {
    justify-content: center;
  }

  .streaming-buttons {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .album-detail-header {
    padding: 20px;
  }

  .album-detail-cover {
    width: 180px;
    height: 180px;
  }

  .album-detail-info h1 {
    font-size: 1.5rem;
  }

  .track-item {
    padding: 12px 10px;
  }

  .track-views {
    display: none;
  }

  .share-buttons {
    justify-content: center;
  }
}
