Hello, I would like to add colored border to the add to cart button, just like this example:

This is my current button:

This is my website: https://lovelmexico.com/products/sandalias-x-fresh
Thank you in advance!
Goal: Add a colored border to the “Add to Cart” button in the Focal theme to match a provided screenshot (images were shared as reference).
What was done:
Follow-up and latest update:
Outcome:
Status: Resolved. No remaining open questions or disagreements. Technical note: All changes were achieved with CSS only; no theme template edits beyond adding rules to theme.scss.liquid were required.
Hello, I would like to add colored border to the add to cart button, just like this example:

This is my current button:

This is my website: https://lovelmexico.com/products/sandalias-x-fresh
Thank you in advance!
@jtorres ,
product-payment-container#MainPaymentContainer {
border: 2px solid #000;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Hello @jtorres ,
Hello @jtorres ,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid
#AddToCart {
border: 3px solid #000;
}
@oscprofessional Hi, thank you very much, it worked, but could it be possible to work on the sticky add to cart as well?
@MandasaTech Hi, thank you very much, it worked, but could it be possible to work on the sticky add to cart as well?
@jtorres Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid
button#StickyAddToCart {
border: 2px solid #000;
}
@MandasaTech Thank you so much for your help! It worked perfectly!!