Hello Sebastian,
Thanks for writing in! To resolve this issue and have 2 columns with no spacing between the columns, please add the following css code in the customizer, Appearance > Customize > Custom > CSS;
@media(min-width: 980px){
.woocommerce .cols-2 li.product, .woocommerce.columns-2 li.product {
width: 50%;
margin-right: 0;
}
}
By default, it has a width of 48% and a right margin of 4%. In the given code, we just have zeroed out the margin and made the width to 50%.
Hope this helps.