.seecommerce-checkout-form-pro {
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	padding: 24px;
	background: #ffffff;
}

.checkout-form-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
}

.checkout-form-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #1a202c;
}

.checkout-form-preview {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.form-section h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #2d3748;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-field label {
	font-size: 14px;
	font-weight: 500;
	color: #4a5568;
}

.form-field input {
	padding: 10px 12px;
	border: 1px solid #cbd5e0;
	border-radius: 6px;
	font-size: 14px;
	background: #f7fafc;
}

.payment-methods {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.payment-option {
	padding: 12px;
	border: 2px solid #e2e8f0;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.payment-option:hover {
	border-color: #3182ce;
	background: #ebf8ff;
}

.checkout-actions {
	margin-top: 16px;
}

.checkout-button {
	width: 100%;
	padding: 14px 24px;
	background: #3182ce;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: not-allowed;
	opacity: 0.8;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.checkout-button:not([disabled]) {
	cursor: pointer;
	opacity: 1;
}

.checkout-button:not([disabled]):hover {
	background: #2c5aa0;
}

.checkout-button .button-icon {
	font-size: 18px;
}

.checkout-button .button-total {
	font-weight: 700;
	opacity: 0.95;
}

.help-text {
	margin: 12px 0 0;
	font-size: 13px;
	color: #718096;
	text-align: center;
}

/* Form Row - 2 column layout */
.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

/* Mobile Responsive - Single column */
@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}
