/*
 * Hides the Stripe "developer tools" panel that appears in test mode (pk_test_*)
 * and overlaps the sticky Pay button on mobile. The panel does not appear in
 * production with live keys.
 *
 * Served as a static file from /public to bypass Tailwind v4's lightningcss
 * pipeline, which silently drops this rule on the Alpine musl docker build.
 */
iframe[title*="Stripe"][title*="developer"] {
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}
