Remove Button Animations on specific sections on Prestige Theme

Cheers everyone,

I am working on my prestige theme and wondered whether it was possible to remove button animations on a specific section. In this case a collection list.

I am wondering this because the contrast is not working well on this specific section but I generally want to keep button animations on .

The store is amoandoak.se the section is the collection list with “Cashmere” “Angora” and “Alpaca” on the Homepage.

I have tried code snippets that I found the forum but none of them seem to work in this specific case.

Appreciate any help I can get!

Please add this code to Custom CSS of that section to do that

button.button:hover {
color: #fff;
background-position: unset;
border-color: rgb(var(--button-background));
background-size: 100%;
}

That worked, thank you!