/* ======================================
   Hide Stripe Link Button & Branding
   ====================================== */

/* Hide the green Stripe Link button that appears above card fields */
.__PrivateStripeElement iframe[title*="Link"],
.p-LinkAuthenticationElement,
[data-testid="Link-authentication"],
div[class*="Link"],
button[aria-label*="Link"],
.p-PaymentMethodsSection-Link,
.LinkButton,
div[id*="link"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Hide "Powered by Stripe" and Stripe logos */
.p-Footer,
.p-Logo,
div[class*="PoweredBy"],
div[class*="Footer"],
a[href*="stripe.com"],
img[alt*="Stripe"],
img[alt*="stripe"],
img[src*="stripe"],
svg[class*="Stripe"],
svg[class*="stripe"] {
    display: none !important;
}

/* Hide Stripe branding in iframe */
iframe[title*="Stripe"],
iframe[name*="stripe"],
.__PrivateStripeElement div[class*="p-Logo"],
.__PrivateStripeElement div[class*="p-Footer"] {
    display: none !important;
}

/* Additional fallback to hide any green button with "link" text */
button[style*="background: rgb(0"] {
    display: none !important;
}