/* product card css */
.product_card .image_container{
    height: 16rem;
    overflow: hidden;
}
.product_card .image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_card a{
    transition: color 0.18s;
}
.product_card a:hover{
    color: var(--primary-clr) !important;
}