.wc-audio-floating-player {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid rgba(227, 24, 28, 0.25);
    box-shadow: 0 8px 25px rgba(227, 24, 28, 0.18);
    border-radius: 50px;
    padding: 8px 18px 8px 8px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wc-audio-floating-player.pos-left {
    left: 20px;
    right: auto;
}

.wc-audio-floating-player.pos-right {
    right: 20px;
    left: auto;
}

.wc-audio-content {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.wc-audio-btn {
    background-color: #E3181C !important;
    border: none !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(227, 24, 28, 0.35);
}

.wc-audio-btn:hover {
    transform: scale(1.06);
    background-color: #c41317 !important;
}

.wc-audio-btn svg {
    display: none !important;
    width: 18px !important;
    height: 18px !important;
    fill: #ffffff !important;
    stroke: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.wc-audio-btn .icon-play {
    display: block !important;
    margin-left: 2px !important;
}

.wc-audio-btn .icon-pause {
    display: none !important;
}

.wc-audio-floating-player.is-playing .wc-audio-btn .icon-play {
    display: none !important;
}

.wc-audio-floating-player.is-playing .wc-audio-btn .icon-pause {
    display: block !important;
}

.wc-audio-info {
    display: flex !important;
    flex-direction: column !important;
}

.wc-audio-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.wc-audio-status {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #E3181C !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
}

.wc-audio-floating-player.is-playing {
    border-color: #E3181C;
    box-shadow: 0 10px 30px rgba(227, 24, 28, 0.25);
}

@media (max-width: 768px) {
    .wc-audio-floating-player {
        padding: 7px 15px 7px 7px;
    }
    .wc-audio-floating-player.pos-left {
        bottom: 15px;
        left: 15px;
        right: auto;
    }
    .wc-audio-floating-player.pos-right {
        bottom: 15px;
        right: 15px;
        left: auto;
    }
    .wc-audio-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }
    .wc-audio-title {
        font-size: 12px !important;
    }
    .wc-audio-status {
        font-size: 10px !important;
    }
}