body {
    background: #f6f8fb;
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #003f88);
    color: white;
    padding: 70px 0;
}

.product-card {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.product-img {
    height: 220px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
}

.price {
    color: #0d6efd;
    font-size: 1.4rem;
    font-weight: 700;
}
