.product_types .product_image_wrapper{
    width: 100%;
    aspect-ratio: 1/1.3;

    /* Default Image in case there's no product image */
    background: url(../assets/images/default_product_img.png);
    background-position: center center;
    background-size: cover;   
}
.product_types .product_image {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.product_types, .product_types *{
    transition: all 0.3s ease;
}
.product_types .product_item:hover{
    transform: scale(1.02);
    transition: all 0.3s ease;
}