/* BÜYEM Dil Seçici (TR / EN) — header ile uyumlu sade metin toggle */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
    vertical-align: middle;
}

.lang-switcher .lang-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 4px 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    color: rgba(255, 255, 255, .75);
    border-radius: 5px;
    transition: color .15s, background-color .15s;
}

.lang-switcher .lang-opt:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .14);
}

.lang-switcher .lang-opt.active {
    color: #fff;
    background-color: rgba(255, 255, 255, .22);
    cursor: default;
}

.lang-switcher .lang-sep {
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
    font-weight: 400;
}

/* Sticky header açık zemin üzerinde de okunur olsun */
.sticky-header .lang-switcher .lang-opt {
    color: rgba(15, 30, 61, .6);
}
.sticky-header .lang-switcher .lang-opt:hover {
    color: #0f1e3d;
    background-color: rgba(15, 30, 61, .08);
}
.sticky-header .lang-switcher .lang-opt.active {
    color: #0f1e3d;
    background-color: rgba(15, 30, 61, .12);
}
.sticky-header .lang-switcher .lang-sep {
    color: rgba(15, 30, 61, .3);
}

/* Mobil menü içindeki dil seçici (koyu metin, satır düzeni) */
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}
.mobile-lang-switcher .mobile-lang-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}
.mobile-lang-switcher .lang-switcher .lang-opt {
    color: #475569;
    border: 1px solid #e2e8f0;
    min-width: 44px;
    padding: 7px 12px;
    font-size: 13px;
}
.mobile-lang-switcher .lang-switcher .lang-opt:hover {
    color: #1d458b;
    background-color: #f1f5f9;
}
.mobile-lang-switcher .lang-switcher .lang-opt.active {
    color: #fff;
    background-color: #1d458b;
    border-color: #1d458b;
}
.mobile-lang-switcher .lang-switcher .lang-sep {
    display: none;
}

/* Anasayfa üst bar — detay sayfasındaki utility ikon hizası gibi */
.header-nav-top-glass-buttons {
    padding-right: 12px;
}
.header-nav-top-glass-buttons .header-lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin-left: 4px;
    flex-shrink: 0;
    width: auto;
    background: transparent;
    border: 0;
}
.header-nav-top-glass-buttons .header-lang-switcher .lang-switcher {
    margin: 0;
    gap: 1px;
}
.header-nav-top-glass-buttons .header-lang-switcher .lang-opt {
    min-width: 28px;
    padding: 5px 8px;
    font-size: 12px;
}

/* Detay header: ikonlarla aynı satırda, sıkışmadan */
.header-utility-icons .lang-switcher {
    margin-left: 2px;
    flex-shrink: 0;
}
