/* Estilos personalizados para Heladería Online */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.container {
    flex: 1;
}

/* Tarjetas de productos */
.producto-card {
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.producto-nombre {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd;
}

.producto-precio {
    font-size: 1.8rem;
    color: #198754;
    font-weight: bold;
}

/* Sabores */
.sabor-item {
    cursor: pointer;
    transition: all 0.2s;
}

.sabor-item:hover {
    background-color: #f0f0f0;
}

.sabor-item.selected {
    background-color: #0d6efd;
    color: white;
}

.sabor-checkbox {
    width: 20px;
    height: 20px;
}

/* Carrito */
.carrito-item {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

.carrito-item:last-child {
    border-bottom: none;
}

.badge-sabor {
    font-size: 0.85rem;
    margin: 2px;
}

/* Checkout */
.resumen-pedido {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.total-final {
    font-size: 2rem;
    color: #198754;
    font-weight: bold;
}

/* Botones */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    color: white;
}

/* Alerts personalizados */
.alert-info-custom {
    background-color: #e7f3ff;
    border-left: 4px solid #0d6efd;
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .producto-precio {
        font-size: 1.4rem;
    }

    .producto-nombre {
        font-size: 1.2rem;
    }

    .total-final {
        font-size: 1.5rem;
    }
}
