.flag-lang-switcher {
    position: relative;
    display: inline-block;
}
.flag-current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border-radius: 8px;
}
.flag-lang-switcher img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: block;
}
.flag-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-top: 6px;
    padding: 8px 0;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
}
.flag-dropdown.flag-open {
    opacity: 1;
    visibility: visible;
}
.flag-lang-switcher:hover .flag-dropdown {
    opacity: 1;
    visibility: visible;
}
.flag-dropdown a {
    display: flex;
    justify-content: center;
    padding: 8px 12px;
    text-decoration: none;
}
.flag-dropdown a:hover {
    background: #f8f9fa;
}