.skiptranslate {
    height: 0;
}


.lang-wrapper {
    z-index: 9999;
    position: fixed;
    right: 0;
    top: 60px;
}

.lang-btn {
    background: #1f2937;
    color: #fff;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    list-style: none;
    padding: 8px 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
}

.lang-dropdown li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.lang-dropdown li:hover {
    background: #f3f4f6;
}

.lang-wrapper:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
