/* === Ogunde Music Store - Album Track Listing === */

/* Album tracks container */
.oms-album-tracks {
    margin: 20px 0;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.oms-album-meta {
    padding: 12px 16px;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.oms-meta-tag {
    font-size: 13px;
    color: #555;
}

.oms-meta-tag strong {
    color: #333;
}

/* Track list header */
.oms-tracklist-header {
    display: grid;
    grid-template-columns: 40px 1fr 80px 100px 80px 120px;
    padding: 8px 16px;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

/* Track listing */
.oms-tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.oms-track-row {
    display: grid;
    grid-template-columns: 40px 1fr 80px 100px 80px 120px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.15s;
}

.oms-track-row:last-child {
    border-bottom: none;
}

.oms-track-row:hover {
    background: #fef8f3;
}

.oms-track-num {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.oms-track-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.oms-track-duration {
    font-size: 13px;
    color: #888;
    text-align: center;
}

.oms-track-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Play button */
.oms-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #EC781B;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(236, 120, 27, 0.25);
}

.oms-play-btn:hover {
    background: #d46a15;
    transform: scale(1.1);
}

.oms-play-btn.playing {
    background: #d46a15;
}

/* Preview badge */
.oms-preview-badge {
    font-size: 10px;
    background: #EC781B;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Album footer */
.oms-album-footer {
    padding: 10px 16px;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

.oms-track-count {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Now playing highlight */
.oms-track-row.oms-now-playing {
    background: #fef3e8;
}

.oms-track-row.oms-now-playing .oms-track-num {
    color: #EC781B;
    font-weight: 700;
}

.oms-track-row.oms-now-playing .oms-track-title {
    color: #EC781B;
}

/* Shop page track count */
.oms-shop-track-count {
    text-align: center;
    font-size: 12px;
    color: #EC781B;
    margin-top: 4px;
    font-weight: 500;
}

/* Lyrics */
.oms-lyrics {
    max-width: 700px;
}

.oms-lyrics h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.oms-lyrics pre {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .oms-tracklist-header,
    .oms-track-row {
        grid-template-columns: 30px 1fr 80px 100px;
        padding: 8px 10px;
    }

    .oms-th-duration,
    .oms-track-duration,
    .oms-th-preview,
    .oms-track-preview {
        display: none;
    }

    .oms-track-title {
        font-size: 13px;
    }

    .oms-album-meta {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .oms-tracklist-header,
    .oms-track-row {
        grid-template-columns: 25px 1fr 70px;
        padding: 8px 8px;
    }

    .oms-th-price,
    .oms-track-price {
        display: none;
    }
}
