/* Toggle style - Circular Flag Button */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-secondary);
    transform: scale(1.1);
}

.lang-toggle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lang-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 32px;
        height: 32px;
    }
}