/* BATCHAM MINI PLAYER STYLES — Marron Theme */
.batcham-mini-player {
    font-family: 'Outfit', sans-serif;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #5c3317 0%, #8b5e3c 50%, #6b3a20 100%);
    color: #fff;
    margin-bottom: 30px;
}
.batcham-mini-player * {
    box-sizing: border-box;
}

/* Common Text */
.fmp-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}
.fmp-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
    font-family: 'Manrope', sans-serif;
}

/* Controls Base */
.fmp-ctrl-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fmp-ctrl-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

.fmp-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: #5c3317;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.fmp-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.fmp-icon-play, .fmp-icon-pause {
    width: 22px;
    height: 22px;
}

/* Progress Bar Base */
.fmp-progress-bar-wrap {
    height: 5px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    transition: height 0.2s ease;
}
.fmp-progress-bar-wrap:hover {
    height: 7px;
}
.fmp-progress-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #f5deb3, #fff);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Times */
.fmp-time {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    opacity: 0.85;
}


/* --------------------------
 * MODE: VERTICAL 
 * --------------------------*/
.fmp-vertical {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.fmp-vertical .fmp-cover {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.fmp-vertical .fmp-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #5c3317, transparent);
}
.fmp-vertical .fmp-content {
    padding: 25px 20px;
    position: relative;
}
.fmp-vertical .fmp-info {
    margin-right: 65px;
}
.fmp-vertical .fmp-play-btn {
    position: absolute;
    top: 25px;
    right: 20px;
}
.fmp-vertical .fmp-progress-area {
    margin-top: 5px;
    margin-bottom: 12px;
}
.fmp-vertical .fmp-bottom-ctrls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fmp-vertical .fmp-time {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 15px;
}
.fmp-vertical .fmp-time-sep { display: none; }
.fmp-vertical .fmp-sub-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}


/* --------------------------
 * MODE: HORIZONTAL 
 * --------------------------*/
.fmp-horizontal {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 200px;
}
.fmp-horizontal .fmp-cover {
    width: 200px;
    min-width: 200px;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.fmp-horizontal .fmp-content {
    flex: 1;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fmp-horizontal .fmp-play-btn {
    position: absolute;
    top: 25px;
    right: 25px;
}
.fmp-horizontal .fmp-bottom-ctrls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.fmp-horizontal .fmp-time {
    margin-right: auto;
}
.fmp-horizontal .fmp-sub-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}
.fmp-horizontal .fmp-progress-area {
    margin-top: 18px;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .fmp-horizontal {
        flex-direction: column;
        height: auto;
    }
    .fmp-horizontal .fmp-cover {
        width: 100%;
        height: 220px;
    }
}
