.gf-whop-payment-button {
	cursor: pointer;
}

.gf-whop-payment-status {
	display: block;
	margin-top: .5rem;
}

/* Hide Gravity Forms' native submit while Whop embedded checkout owns the CTA.
   Uses a class we toggle via JS AND inline style for maximum robustness. */
.gf-whop-embedded-active .gform_footer,
.gf-whop-embedded-active .gform_footer input[type="submit"],
.gf-whop-embedded-active .gform_footer button[type="submit"],
.gf-whop-embedded-active .gform_footer .gform_button,
.gf-whop-footer-hidden input[type="submit"],
.gf-whop-footer-hidden button[type="submit"],
.gf-whop-footer-hidden .gform_button {
	visibility: hidden;
}

/* Ensure the hidden submit still avoids capturing clicks and space in layout */
.gf-whop-footer-hidden {
	pointer-events: none;
}

.gf-whop-embedded-checkout {
	position: relative;
	min-height: 420px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
}

.gf-whop-embedded-checkout iframe {
	display: block;
	width: 100%;
	min-height: 420px;
	border: 0;
	border-radius: 10px;
}

.gf-whop-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border-top-color: #0073aa;
	animation: gf-whop-spin 1s ease-in-out infinite;
	margin-bottom: 1rem;
}

@keyframes gf-whop-spin {
	to {
		transform: rotate(360deg);
	}
}

.gf-whop-status {
	text-align: center;
	margin: 0.5rem 0;
	color: #555;
}

.gf-whop-status.gf-whop-error {
	color: #d63638;
}

.gf-whop-retry {
	margin-top: 1rem;
	padding: 0.5rem 1.25rem;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	transition: background-color 0.2s ease;
}

.gf-whop-retry:hover,
.gf-whop-retry:focus {
	background: #006799;
	outline: none;
}

.gf-whop-retry:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0073aa;
}

@media (max-width: 782px) {
	.gf-whop-embedded-checkout,
	.gf-whop-embedded-checkout iframe {
		min-height: 480px;
	}
}