/* Dil seçici — ana menünün dışında, sağ üst köşede */
.oh-header-lang {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.oh-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.oh-lang-btn {
    color: #b3b3b3;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 3px;
    line-height: 1;
    display: inline;
    transition: color .15s ease;
}

.oh-lang-btn:hover {
    color: #fff;
    text-decoration: none;
}

.oh-lang-btn.is-active {
    color: #48e0a4;
}

.oh-lang-sep {
    color: rgba(255, 255, 255, .22);
    font-weight: 400;
    font-size: 9px;
    line-height: 1;
}

/* Sağ blok: dil seçici + müşteri paneli (menü akışının dışında) */
.siteHeader .wrapper {
    position: relative;
}

.headerAside {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 76px;
    z-index: 2;
}

.headerAside .headerNav {
    margin: 0;
    float: none;
}

.headerAside .headerNav li {
    margin-left: 0;
    line-height: 1;
}

.headerAside .headerNav .loginLink {
    line-height: 1;
}

/* Masaüstünde sağ üstte sabit; menüyle çakışmaz */
@media (min-width: 1011px) {
    .siteHeader .wrapper {
        max-width: 1360px;
    }

    .headerAside {
        position: absolute;
        top: 0;
        right: 20px;
        float: none;
    }

    .primaryNav {
        padding-right: 190px;
    }

    .primaryNav .navItem a {
        padding-left: 14px;
        padding-right: 18px;
    }
}

/* Mobil: hamburger ikonunun solunda, menü dışında */
@media (max-width: 1010px) {
    .headerAside {
        position: absolute;
        top: 0;
        right: 68px;
        height: 76px;
        gap: 0;
    }

    .oh-lang-switcher {
        font-size: 11px;
    }
}
