/* Ajustes generales */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Tarjetas de producto */
.card-product {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background: white;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Botones */
.btn-primary-custom {
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-primary-custom:hover {
    background-color: #0b5ed7;
}

/* Checkout */
.checkout-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}