Thank you for your question. Unfortunately our themes do not have a way of directly modifying the way WooCommerce controls the break points and responsiveness for how products display on their shop catalog pages. However, I was able to locate a thread from Stack Overflow that shows you how to use Custom CSS rule to change the widths of your shop items for mobile devices.
This is the the code you will need to enter to make sure your products display in 2 columns for mobile devices:
@media(max-width:767px){
.entry-content .products li {
float: left;
width: 50%;
}
}
I hope that code gives you the design that you need and please let us know if you have any additional questions in the future, we are always happy to help.