/* ── Shop listing play button ── */
.taka-beat-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 10px 0 4px;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.taka-beat-play-btn:hover { background: #ccc; transform: scale(1.05); }
.taka-beat-play-btn.is-playing { background: #fff; }
.taka-beat-play-btn svg { width: 14px; height: 14px; fill: #000; display: block; }

/* ── Single product waveform player ── */
.taka-waveform-player {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 20px;
    margin-bottom: 24px;
}
.taka-waveform-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.taka-waveform-play-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.taka-waveform-play-btn:hover { background: #ddd; }
.taka-waveform-play-btn svg { width: 18px; height: 18px; fill: #000; display: block; }
.taka-waveform-wrap { flex: 1; min-width: 0; }
#taka-waveform { width: 100%; }
.taka-waveform-time {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.1em;
    margin-top: 6px;
    font-family: Helvetica, Arial, sans-serif;
}
.taka-preview-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: #444;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    margin: 10px 0 0;
}

/* ── Mini player — fixed bottom ── */
#taka-mini-player {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 64px;
    background: #000;
    border-top: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    z-index: 9999;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: Helvetica, Arial, sans-serif;
}
#taka-mini-player.active { bottom: 0; }
.mini-play-btn {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mini-play-btn:hover { background: #ccc; }
.mini-play-btn svg { width: 13px; height: 13px; fill: #000; display: block; }
.mini-info { flex: 1; min-width: 0; }
.mini-name {
    display: block;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
}
.mini-progress-wrap { cursor: pointer; }
.mini-progress-bar {
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    overflow: hidden;
}
.mini-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.2s linear;
}
.mini-time {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.mini-buy-btn {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    background: #fff;
    padding: 7px 14px;
    text-decoration: none;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s;
}
.mini-buy-btn:hover { background: #ddd; color: #000; }
.mini-close-btn {
    background: none;
    border: none;
    color: #444;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 2px;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s;
}
.mini-close-btn:hover { color: #fff; }

@media (max-width: 767px) {
    #taka-mini-player { padding: 0 12px; gap: 8px; height: 60px; }
    .mini-name { font-size: 10px; }
    .mini-buy-btn { padding: 6px 10px; font-size: 9px; }
}
