@charset "UTF-8";
/* =========================================================================
   Language switcher — AR | EN chip in the header.
   Extracted from css/style-black.css 2026-04-25 (Pass 1).

   The .lang-switcher pill rendered by layout/main.php on every page.
   Mobile + desktop rules co-located.
   ========================================================================= */

/* ═══════════════════════════════════════════════════════════════════════════
   Language switcher — small AR | EN chip in the header
   ═══════════════════════════════════════════════════════════════════════════ */
.lang-switcher {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    align-self: center;
    padding: 4px 8px;
    margin: 0 12px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    vertical-align: middle;
}
.lang-switcher a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
}
.lang-switcher a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.lang-switcher a.active {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

