.products-hero {

    background:
    linear-gradient(
        135deg,
        #0B1F3A,
        #061229
    );

    color: white;

    padding: 100px 0;

}

.product-card {

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s;

    background: white;

}

.product-card:hover {

    transform: scale(1.02);

}

.product-image {

    width: 100%;
    height: 220px;

    object-fit: cover;

}