Could you please provide your store URL, thanks!
In the meantime, you could duplicate the section and change the button color. Then hide one section based on screen size (ie desktop section only shown on desktop, mobile on mobile) you can add this code to your base.css file you would just need to replace the Shopify section ID’s with your own:
@media screen and (max-width: 768px) {
#shopify-section-72bd75b8-a784-4453-8b3b-bc08a80d9530 {
display: none;
visibility: hidden;
}
}
@media screen and (min-width: 768px) {
#shopify-section-6e87ba40-9742-46c4-8ad5-27549cfd6c3c {
display: none;
visibility: hidden;
}
Hope that helps!
@biznazz101