Adding border to product images in collection page

As you can see https://www.balenciaga.com/en-us/women/bags/view-all

The product images have a border

https://lobonewyork.com/collections/all-bags

I want my collection page to have a border separation.

@gihan7575

Please add the following code at the bottom of your css file.

.product-grid-container .card__heading a:after {
    border: 1px solid #000;
}

That was kinda what I wanted, but now I want to remove the padding between the product cards.

@gihan7575

Please add the following code in your css file to remove gap.

.grid {
column-gap: 0px !important;
}