Suppose we need to remove these images on Cart Page.

#1. Remove All Product Images
You can use this code to Custom CSS box.
div.cart-row-img-wrapper {
display: none;
}

Result

#2. Remove specific product image
You can use CSS code like this
div.cart-row:has(a[href="/shop/p/one-hundred"]) div.cart-row-img-wrapper {
display: none;
}

Result

Note: this is Product URL
