/**
 * barabd — Top navbar language / currency button (no flag)
 */

#header .barabd-navbar-locale-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f2847 0%, #052138 100%);
    border: 1px solid rgba(57, 211, 83, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 3px 0 #016a4d,
        0 6px 18px rgba(5, 33, 56, 0.28);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

#header .barabd-navbar-locale-btn:hover,
#header .barabd-navbar-locale-btn:focus {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #163a5c 0%, #0a2540 100%);
    border-color: rgba(74, 222, 128, 0.65);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 4px 0 #15803d,
        0 10px 24px rgba(57, 211, 83, 0.22);
    color: #fff;
}

#header .barabd-navbar-locale-label {
    letter-spacing: 0.01em;
}

@media (max-width: 1199.98px) {
    #header .barabd-navbar-locale-label {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 575.98px) {
    #header .barabd-navbar-locale-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    #header .barabd-navbar-locale-label {
        max-width: 115px;
    }
}
