I’m sure I’m a n00b and I used you gents solution to the problem with 320px with mobile screens, but this is the solution that worked for me. Chopping all the uneccessary stuff off the table as such:
.woocommerce-page table.shop_table th.product-thumbnail {
display: none !important;
}
.woocommerce-page table.shop_table td.product-thumbnail {
display: none !important;
}
.woocommerce-page table.shop_table th.product-price {
display: none !important;
}
.woocommerce-page table.shop_table td.product-price {
display: none !important;
}
.woocommerce-page table.shop_table th.product-quantity {
display: none !important;
}
.woocommerce-page table.shop_table td.product-quantity {
display: none !important;
}