.lang-switcher {
    position: relative;
    display: inline-flex;
}
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    color: #101B33;
    cursor: pointer;
    font-family: Inter, sans-serif;
    white-space: nowrap;
}
.lang-switcher-btn:hover { border-color: #C9A84C; }
.lang-switcher-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 6px;
    z-index: 1200;
    max-height: 320px;
    overflow-y: auto;
}
.lang-switcher.open .lang-switcher-menu { display: block; }
.lang-switcher-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #111827;
    text-decoration: none;
}
.lang-switcher-menu a:hover { background: #F8FAFC; }
.lang-switcher-menu a.active {
    background: #FBF6EA;
    color: #101B33;
    font-weight: 600;
}
