
/* Contenedor principal */
.restaurant-buttons-container {
    position: fixed;
    bottom: 12px; /* Encima del botón móvil */
    right: 15px;
    z-index: 3999; /* Un nivel por debajo del botón móvil */
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Botones redondos del restaurante */
.restaurant-fab {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.restaurant-fab:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Asegurar que los textos sean legibles */
.restaurant-fab small {
    font-size: 0.65rem;
    line-height: 1;
    font-weight: 600;
}

/* Estado oculto */
.restaurant-buttons-container.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Estado visible */
.restaurant-buttons-container.visible {
    opacity: 0.9;
    transform: translateY(0);
    pointer-events: all;
}


/* Responsive: Ocultar en móviles si es necesario */
@media (max-width: 576px) {
    .restaurant-buttons-container {
        bottom: 12px;
        right: 15px;
    }
    
    .restaurant-fab {
        width: 60px;
        height: 60px;
    }
}
