.ssc-checkout {
	max-width: 32rem;
	margin: 0 auto;
	padding: 1rem;
	box-sizing: border-box;
}

.ssc-checkout__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ssc-checkout__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ssc-checkout__label {
	font-size: 0.95rem;
	font-weight: 600;
}

.ssc-checkout__input {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.65rem 0.75rem;
	font-size: 1rem;
	border: 1px solid #c7c7c7;
	border-radius: 0.5rem;
	box-sizing: border-box;
}

.ssc-checkout__input:focus {
	outline: 2px solid #005696;
	outline-offset: 2px;
}

.ssc-checkout__payment-element {
	padding: 0.25rem 0;
}

.ssc-checkout__status {
	min-height: 1.25rem;
	margin: 0;
	font-size: 0.95rem;
	color: #b42318;
}

.ssc-checkout__submit {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	border: none;
	border-radius: 0.65rem;
	background: #005696;
	color: #ffffff;
	cursor: pointer;
	touch-action: manipulation;
}

.ssc-checkout__submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.ssc-checkout__submit:focus {
	outline: 3px solid #005696;
	outline-offset: 2px;
}

@media (min-width: 480px) {
	.ssc-checkout {
		padding: 1.25rem 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ssc-checkout__submit {
		transition: none;
	}
}
