/* Wallet save buttons (Google Pay / Apple Wallet) wrap the official SVG art in an <a>
   that also has Bootstrap's .btn class, which the partner theme paints with
   var(--organiser-color) on :hover/:focus/:active. That leaks the club color out behind
   the SVG (visible as a colored slab on press). Strip every state to transparent so only
   the SVG art renders.

   ID-suffix selector covers every wallet anchor across the site: MyProducts,
   _PartnerTicketCoupons, _PartnerCards, _CardsPartial, _SeasonCardPartial,
   Cards, Renewals, Tickets/Ticket, _TicketPartial. Every render uses
   id="...-appleWalletBtn" / id="...-googlePayBtn" regardless of class. */
a[id$="-appleWalletBtn"],
a[id$="-googlePayBtn"],
a[id$="-appleWalletBtn"]:hover, a[id$="-appleWalletBtn"]:focus, a[id$="-appleWalletBtn"]:active, a[id$="-appleWalletBtn"].active,
a[id$="-googlePayBtn"]:hover, a[id$="-googlePayBtn"]:focus, a[id$="-googlePayBtn"]:active, a[id$="-googlePayBtn"].active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
