Full width product grid on Testament theme

On collection page, my product grid has gap on both side. I want to increase the width of this product grid, so that my product images get bigger.
Can anyone guide me to it?

saucypeach .com

In “Customize” you can paste this code into product grid section “Custom CSS” setting:

#main-collection-form .grid__wrapper {
  max-width: 100%;
  width: 100%;
}

If you use the code elsewhere, you’d need to add !important for each property:

#main-collection-form .grid__wrapper {
  max-width: 100% !important;
  width: 100% !important;
}