/* Estilos para información de contacto en dispositivos móviles */
.mobile-contact-info {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-contact-info a {
    color: #28a745;
    text-decoration: none;
}

.mobile-contact-info .location {
    display: inline-block;
    margin-top: 2px;
    color: #666;
    font-size: 12px;
}

/* Solo mostrar en dispositivos móviles */
@media (max-width: 767.98px) {
    .mobile-contact-info {
        display: none;
    }
    
    /* Asegurar que la barra superior (language-switcher) muestre contacto en móviles */
    .language-switcher .lang-info {
        display: flex;
    }
}

/* Estilos RTL */
html[dir="rtl"] .mobile-contact-info i {
    margin-left: 5px;
    margin-right: 0;
}

html[dir="ltr"] .mobile-contact-info i {
    margin-right: 5px;
    margin-left: 0;
}

/* Estilos específicos de temas */
.mobile-contact-info.theme-roots {
    background-color: rgba(235, 248, 235, 0.95);
}

.mobile-contact-info.theme-ocean {
    background-color: rgba(235, 245, 250, 0.95);
}

.mobile-contact-info.theme-rose {
    background-color: rgba(250, 240, 245, 0.95);
}

.mobile-contact-info.theme-midnight {
    background-color: rgba(32, 35, 42, 0.95);
    color: #eee;
}

.mobile-contact-info.theme-midnight a {
    color: #4ade80;
}
