/* ================= LANGUAGE DROPDOWN ================= */

.lang-dropdown {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 50;
    user-select: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.12),
                -4px -4px 10px rgba(255,255,255,0.8);
    border: 1px solid #e4e4e4;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.lang-btn:hover {
    transform: scale(1.03);
}

.lang-btn img.flag {
    height: 20px;
    width: 20px;
}

.lang-btn img.arrow {
    height: 12px;
    opacity: 0.7;
}

.lang-menu {
    position: absolute;
    top: 42px;
    right: 0;
    width: 154px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.15),
                -4px -4px 12px rgba(255,255,255,0.8);
    border: 1px solid #e1e1e1;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s ease;
}

.lang-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.lang-item:hover {
    background: #f2f2f2;
}

.lang-item img {
    height: 20px;
    width: 20px;
}