/* Barra fija inferior solo en móvil, estilo "pastilla" centrada */

.fmcb-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    font-family: inherit; /* Hereda tipografía del tema */
    padding: 8px 12px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
    max-width: 480px;
    margin: 0 auto 10px;
    border-radius: 999px;
    box-sizing: border-box;
}

/* Cada botón (solo icono) */
.fmcb-item {
    flex: 0 0 auto;
    padding: 0 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Iconos circulares */
.fmcb-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Tamaño de los iconos Font Awesome */
.fmcb-icon i {
    font-size: 22px;
}

/* Colores por defecto (los sobrescribe el CSS inline generado en wp_head) */
.fmcb-icon-wa {
    background: #25D366;
}

.fmcb-icon-mail {
    background: #ff6b6b;
}

.fmcb-icon-phone {
    background: #0069d9;
}

/* Solo visible en pantallas pequeñas (móvil) */
@media screen and (min-width: 769px) {
    .fmcb-bar {
        display: none !important;
    }
}
