/* =========================
   Global SEO Language Switcher
========================= */

.global-language-switcher {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 8px;

    background: rgba(0,0,0,.72);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;

    padding: 8px 10px 8px 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.global-language-current {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    font-size: .85rem;
    font-weight: 900;
    pointer-events: none;
}

.language-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.language-short {
    letter-spacing: .04em;
}

.global-language-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    min-width: 145px;

    background: #ff7a1a;
    color: #000;

    border: none;
    border-radius: 999px;

    padding: 9px 34px 9px 14px;

    font-size: .85rem;
    font-weight: 900;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #000 50%),
        linear-gradient(135deg, #000 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

.global-language-select:focus {
    outline: 2px solid rgba(255,122,26,.35);
    outline-offset: 3px;
}

@media (max-width: 650px) {
    .global-language-switcher {
        right: 12px;
        bottom: 12px;
        padding: 7px 8px 7px 10px;
    }

    .global-language-select {
        min-width: 118px;
        font-size: .78rem;
        padding: 8px 30px 8px 11px;
    }

    .language-short {
        display: none;
    }
}

.language-switcher {
    display: none !important;
}
