/* ===== ХЭЛНИЙ ТОВЧ ===== */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 101;
}

#google_translate_element {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 0; left: 0;
    width: 1px; height: 1px;
    overflow: hidden;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #e8f0fe;
    border: 1.5px solid #c5d8fb;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #003a8f;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.lang-btn:hover {
    background: #003a8f;
    color: #fff;
    border-color: #003a8f;
}
.lang-btn .lang-icon { font-size: 16px; }
.lang-btn .lang-arrow {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.2s;
}
.lang-btn.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #dde3f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,58,143,0.12);
    overflow: hidden;
    z-index: 500;
    min-width: 160px;
}
.lang-dropdown.open { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.lang-option:hover { background: #e8f0fe; color: #003a8f; }
.lang-option.active {
    background: #f0f5ff;
    color: #003a8f;
    font-weight: 600;
}
.lang-option .flag { font-size: 20px; }

/* Google toolbar нуух */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }