To make the WooCommerce templates full width (without a sidebar) - first remove any widgets within Appearance > Widgets > Shop Sidebar.
Next, add the following css snippet to Appearance > Customize > Additional CSS:
.ccfw-shop-main .col-lg-9.right-content {
left: 0%;
width: 100%;
padding-left: 15px;
}
.ccfw-shop-main .sidebar {
display: none;
}