/*
 * 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 right after this
 * gateway's own <label>. Deliberately mirrors boom-core's own
 * #boom-checkout-account-notice (theme's boom.css, checkout-hooks.php
 * render_checkout_notice()) rule-for-rule — same subdued icon+text
 * treatment already used elsewhere on this exact checkout step, rather
 * than a plain paragraph (2026-07-29 feedback: a plain <p> read as an
 * unstyled afterthought next to that notice's polish).
 */
.boom-efi-pix-tip {
	display: flex;
	align-items: flex-start;
	gap: var(--space-4);
	margin-top: var(--space-8);
	font-size: var(--text-2xs);
	line-height: var(--leading-relaxed);
	color: var(--color-text-checkout-info);
}
.boom-efi-pix-tip i {
	font-size: 13px;
	color: var(--color-icon-checkout-info);
	flex-shrink: 0;
	margin-top: 1px;
}
