/* ===========================================
   Estilos del Language Switcher (Banderas)
   =========================================== */

.lang-switcher-inline {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    padding: 0 10px;
    vertical-align: middle;
    margin: 0;
}

.flag-link {
    display: flex !important;
    transition: transform 0.2s ease !important;
    text-decoration: none !important;
    width: 28px;
    height: auto;
    border: none !important;
    background: none !important;
}

.flag-link:hover {
    transform: scale(1.2);
}

.flag-link svg {
    width: 100% !important;
    height: auto !important;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive - móviles */
@media (max-width: 480px) {
    .lang-switcher-inline {
        gap: 8px;
        padding: 0 5px;
    }

    .flag-link {
        width: 24px;
    }
}
