Problem section "you might like" cart drawer

Hello everyone, I would like to ask for your help.

In short, I don’t know why, now the images in the “You might like” section are not visible properly, that is, it creates a gray space underneath.
How can I solve this problem?

The “You might like” section appears when you add a product to your cart and suggests other products.

The site link is: memoir-vintage.com

Thanks to everyone who will help me

Hi @Jhon16

There is a background color that shows up below the image so try this code, in assets/component-cart-drawer.css line 323

just try to set background as transparent

.mini-cart__navigation .product-image {
    width: 7rem;
    border-radius: min(var(--card-radius),0.3rem);
    background-color: transparent;
}

It works perfectly

thank you very much :folded_hands:

1 Like