/* Default state: donation step visible, signup step hidden. */
.donation-flow .gravity-form-wrap {
    display: none;
}

/* After a continue button is clicked, swap the visible section. */
.donation-flow.is-donation-complete .donation-form-wrap {
    display: none;
}

.donation-flow.is-donation-complete .gravity-form-wrap {
    display: block;
}

/* Minimal spacing for the buttons; style the rest via your theme/Elementor. */
.donation-flow__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Offset the scroll target if you have a sticky header; adjust to its height. */
.donation-flow {
    scroll-margin-top: 180px;
}

/* Belt-and-suspenders: kill smooth scrolling globally for reduced-motion
   users, in case any CSS-driven scroll-behavior is in play. */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
