.product-card{

    transition:all .2s ease;

}

.product-card:hover{

    transform:translateY(-4px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.product-card img{

    object-fit:cover;
    height:250px;

}

.product-card{
    border:1px solid #eee;
    transition:all .2s ease;
}

.product-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.product-price{
    font-size:18px;
}
.card-img-top:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.card-img-top {
    height: 200px;
    object-fit: cover; /* ensures background scales nicely */
}

.product-card-img {
    background-size: contain;
    background-position: center;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background-repeat: no-repeat;
}
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
.badge.bg-success {
    font-size: 0.9rem;
    padding: 0.5rem 0.6rem;
}
.product-image {
    min-height: 300px; /* adjust as needed */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}