/* ── Map Products Bar ─────────────────────────────────────────────────── */
#mp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(34, 34, 34);
}
.mp-bar-total {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(34, 34, 34);
    white-space: nowrap;
}
.mp-bar-total strong {
    font-weight: 400;
    color: rgb(34, 34, 34);
}
.mp-bar-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.mp-bar-sort label {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(34, 34, 34);
    margin: 0;
}
#mp-bar-sort {
    padding: 6px 32px 6px 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(34, 34, 34);
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
    min-width: 200px;
}
#mp-bar-sort:focus {
    border-color: #F9BC06;
}
@media (max-width: 600px) {
    #mp-bar      { flex-direction: column; align-items: flex-start; }
    #mp-bar-sort { min-width: 100%; }
}
