.gsp-payment-shell {
	box-sizing: border-box;
	max-width: 860px;
	margin: 22px 0;
	padding: 24px;
	border: 1px solid #d9e1dc;
	border-radius: 8px;
	background: #fbfcfb;
	color: #17211b;
	box-shadow: 0 12px 32px rgba(16, 29, 21, 0.08);
}

.gsp-payment-shell *,
.gsp-payment-shell *::before,
.gsp-payment-shell *::after {
	box-sizing: border-box;
}

.gsp-payment-header {
	margin-bottom: 18px;
}

.gsp-payment-header .gsp-eyebrow {
	margin: 0 0 4px;
	color: #6a4f14;
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.gsp-payment-header h2 {
	margin: 0 0 8px;
	color: #14261d;
	font-size: 1.55rem;
	line-height: 1.2;
	letter-spacing: 0;
}

.gsp-payment-header p {
	max-width: 760px;
	margin: 0;
	color: #49554e;
	font-size: 0.96rem;
	line-height: 1.55;
}

.gsp-payment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0 20px;
}

.gsp-payment-grid--compact {
	margin-top: 16px;
}

.gsp-field {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.gsp-field span {
	color: #233329;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.25;
}

.gsp-field em {
	color: #6d7871;
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 500;
}

.gsp-field input {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #b8c5bd;
	border-radius: 6px;
	background: #fff;
	color: #111;
	font-size: 1rem;
	line-height: 1.2;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.gsp-field input:focus {
	border-color: #2b7a57;
	box-shadow: 0 0 0 3px rgba(43, 122, 87, 0.17);
	outline: none;
}

.gsp-field input[readonly] {
	background: #f4f7f5;
	color: #25342b;
}

.gsp-prefill-note {
	margin: -8px 0 16px;
	padding: 9px 12px;
	border: 1px solid #c8dbce;
	border-radius: 6px;
	background: #f1f8f3;
	color: #244a31;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.35;
}

.gsp-assent-stack {
	display: grid;
	gap: 12px;
}

.gsp-checkrow {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 13px;
	border: 1px solid #d4ddd7;
	border-radius: 8px;
	background: #fff;
}

.gsp-checkrow input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: #2b7a57;
}

.gsp-checkrow label {
	display: grid;
	gap: 3px;
	margin: 0;
	color: #2f3a34;
	font-size: 0.94rem;
	line-height: 1.42;
}

.gsp-checkrow strong {
	color: #15221a;
	font-size: 0.95rem;
}

.gsp-checkrow a {
	color: #235f8f;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.gsp-payment-details {
	border: 1px solid #d4ddd7;
	border-radius: 8px;
	background: #f6f8f6;
	color: #344238;
}

.gsp-payment-details summary {
	min-height: 40px;
	padding: 10px 13px;
	cursor: pointer;
	font-weight: 700;
	line-height: 1.25;
}

.gsp-payment-details p {
	margin: 0;
	padding: 0 13px 13px;
	color: #4c5b52;
	font-size: 0.92rem;
	line-height: 1.5;
}

.gsp-form-message {
	min-height: 20px;
	margin: 0;
	color: #6a4f14;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
}

.gsp-form-message.is-ready {
	color: #2a674b;
}

.gsp-payment-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 280px);
	min-height: 48px;
	padding: 12px 18px;
	border: 0;
	border-radius: 7px;
	background: #1d6f50;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: background-color 120ms ease, opacity 120ms ease, transform 120ms ease;
}

.gsp-payment-button:hover:not(:disabled),
.gsp-payment-button:focus-visible:not(:disabled) {
	background: #155c42;
	transform: translateY(-1px);
}

.gsp-payment-button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.gsp-noscript {
	margin: 0;
	color: #9b2f2f;
	font-weight: 700;
}

.gsp-legacy-plan-display {
	margin-top: 10px;
	padding: 9px 12px;
	border: 1px solid #d4ddd7;
	border-radius: 6px;
	background: #f6f8f6;
	color: #223129;
}

@media (max-width: 720px) {
	.gsp-payment-shell {
		padding: 18px;
	}

	.gsp-payment-grid {
		grid-template-columns: 1fr;
	}

	.gsp-payment-header h2 {
		font-size: 1.35rem;
	}

	.gsp-payment-button {
		width: 100%;
	}
}
