If you add the following to Custom CSS, it should add a border radius to all images. This can save you time changing all images one by one. Adjust the number to your preference.
img {
border-radius: 25px;
}
If you want to just target the Products themselves, use the following within Custom CSS.
div.products img {
border-radius: 25px !important;
}