/* İNCE MEHTER PLAYER BAR - SABİT */
.corp-bar {
    background: var(--msb-bordo);
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid var(--msb-beyaz);
    position: relative;
    overflow: hidden;
}

/* Gradient/desen overlay kaldırıldı - düz bordo */
.corp-bar::before {
    content: none;
}

.mehter-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}

.mehter-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.mehter-icon-mini {
    background: var(--msb-beyaz);
    color: var(--msb-bordo);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mehter-info {
    display: flex;
    flex-direction: column;
}

.mehter-title {
    color: var(--msb-beyaz);
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.mehter-subtitle {
    font-size: 11px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.2;
}

.mehter-bar-center {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
}

.mehter-progress-container {
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
    height: 4px;
    flex-grow: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mehter-progress-bar {
    background: var(--msb-beyaz);
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s;
}

.mehter-time {
    color: var(--msb-beyaz);
    font-size: 12px;
    font-weight: bold;
    min-width: 45px;
    text-align: center;
}

.mehter-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mehter-play-btn {
    background: var(--msb-beyaz);
    color: var(--msb-bordo);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

    .mehter-play-btn:hover {
        transform: scale(1.08);
        background: #fff;
        box-shadow: 0 6px 14px rgba(0, 0, 0, .35);
    }

    .mehter-play-btn:active {
        transform: scale(.96);
    }

.mehter-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100px;
}

.mehter-volume-slider {
    width: 70px;
    height: 4px;
    -webkit-appearance: none; /* ← Bu olmadan thumb stilleri çalışmaz */
    appearance: none;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    outline: none;
}

    .mehter-volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none; /* ← Zorunlu */
        background: var(--msb-beyaz);
        width: 12px;
        height: 12px;
        border-radius: 50%; /* ← Yuvarlak thumb */
        cursor: pointer;
    }

    .mehter-volume-slider::-moz-range-thumb {
        background: var(--msb-beyaz);
        width: 12px;
        height: 12px;
        border-radius: 50%; /* ← Yuvarlak thumb (Firefox'ta kare görünür, bu olmadan) */
        border: none;
        cursor: pointer;
    }

.fa-volume-low, .fa-volume-high {
    color: var(--msb-beyaz);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .corp-bar {
        height: auto;
        padding: 10px 12px;
    }

    .mehter-bar-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "icon info play"
            "time progress duration";
        align-items: center;
        column-gap: 10px;
        row-gap: 8px;
        padding: 0;
        width: 100%;
    }

    .mehter-bar-left {
        grid-column: 1 / 3;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin: 0;
        justify-content: flex-start;
    }

    .mehter-icon-mini {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .mehter-info {
        min-width: 0;
        flex: 1;
    }

    .mehter-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mehter-subtitle {
        font-size: 10.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mehter-bar-right {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        margin: 0;
        justify-content: flex-end;
        gap: 8px;
    }

    .mehter-play-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Alt satır: zaman | progress | zaman */
    .mehter-bar-center {
        grid-column: 1 / 4;
        grid-row: 2;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        max-width: none;
        margin: 0;
        width: 100%;
        order: initial;
    }

    .mehter-bar-center .mehter-time {
        font-size: 11px;
        min-width: 36px;
    }

    .mehter-volume {
        display: none;
    }
}
