/*
 * Hides the wc_gerencianet_pix payment_box on checkout (theme/boom's own
 * payment.php: <div class="payment_box boom-payment-method__box
 * payment_method_wc_gerencianet_pix">). That box only ever contained the
 * vendor plugin's own CPF/CNPJ input (class-wc-gerencianet-pix.php's
 * payment_fields()) plus boom's own billing_cpf field — both now
 * auto-filled server-side (EfiBillingCpf.php) instead of asked from the
 * shopper, so there's nothing left in it for them to interact with.
 * efi-checkout-tip.js adds the replacement "QR Code after pressing pagar"
 * note right after this gateway's own label, outside this hidden box.
 * Update-proof since it lives here instead of a theme/vendor-plugin edit
 * (CLAUDE.md #46 pattern, same as ../../mercadopago/assets/css/
 * mercadopago-checkout.css).
 */
.payment_box.payment_method_wc_gerencianet_pix {
	display: none !important;
}

/*
 * efi-checkout-tip.js's replacement note, injected as a sibling right
 * after this gateway's own <label> (not nested inside .boom-payment-
 * method__row) — so unlike the row's own content, it only inherits the
 * checked-state .boom-payment-method li's own padding (--space-3), not
 * the row's ADDITIONAL --space-3 padding on top of that, leaving it
 * --space-3 short of the radio button's real left edge (user report,
 * 2026-07-30). padding-left here compensates the same way .boom-cpf-field
 * already does a few lines up in boom.css, for the same reason. Text-only
 * (2026-07-30: the QR-code icon was dropped from the tip —
 * efi-checkout-tip.js no longer appends an <i>, so no icon rule is needed
 * here either).
 */
.boom-efi-pix-tip {
	margin-top: var(--space-8);
	padding-left: var(--space-3);
	font-size: var(--text-2xs);
	line-height: var(--leading-relaxed);
	color: var(--color-text-checkout-info);
}
