/* ─── AryBali Currency Switcher ──────────────────────────────── */

#abl-curr-switcher {
    display: flex;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}

#abl-curr-select {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    color: rgba(26, 26, 26, 0.65);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 10px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    height: 34px;
    min-width: 76px;
    text-align: center;
    transition: border-color 0.18s, color 0.18s;
}

#abl-curr-select:hover,
#abl-curr-select:focus {
    border-color: rgba(167, 139, 78, 0.5);
    color: #a78b4e;
}

#abl-curr-select option {
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
}

/* ─── Mobile ─────────────────────────────────────────────────── */

@media (max-width: 900px) {
    #abl-curr-switcher {
        margin-right: 8px;
    }

    #abl-curr-select {
        height: 30px;
        min-width: 68px;
        font-size: 9px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    #abl-curr-switcher {
        display: none;
    }
}
