Only "Add To Cart" & "Checkout" Button Border Radius (Dawn Theme)

I would like to make all buttons rounded, except for the “Add To Cart” buttons in all collection pages and the product pages (also checkout button)

URL: https://glowkitti.com/

Thank you

please try

/* Rounded buttons */
button:not(.btn-cart) {
  border-radius: 20px;
}

/* Add to cart button */
button.btn-cart {
  border-radius: 0;
}

This code will apply the border-radius property to all buttons except for the “Add to Cart” button, which will have a border-radius of 0, effectively making it not rounded.