I have an online store and in the mobile version, on the product page, the "Add to Cart" button is at the bottom of the page.
The problem is that only in the Samsung Internet browser, a "Scroll to Top" button is placed on the "Add to Cart" button and covers it.
So how can I remove this button programmatically with a HTML/CSS/JS Code?
Note: This button is added to the page by Samsung Browser and there is no problem with other browsers such as Google Chrome and Firefox.

First of all you have to check the class, id or tag of the scroll to top button on the basis of which you can let javascript to identify that button. lets suppose you get id i.e. scroll-btn
Now you can write javascript code
there you go..