/* SlideFeast Custom Order form — matches the site's #f1b24a accent */
.sfco-wrap {
	max-width: 640px;
	margin: 0 auto;
}
.sfco-form {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
.sfco-field {
	margin-bottom: 18px;
	flex: 1;
}
.sfco-row {
	display: flex;
	gap: 16px;
}
@media (max-width: 540px) {
	.sfco-row { flex-direction: column; gap: 0; }
}
.sfco-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
	color: #222;
}
.sfco-req { color: #e0432f; }
.sfco-form input[type="text"],
.sfco-form input[type="email"],
.sfco-form input[type="file"],
.sfco-form textarea,
.sfco-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.sfco-form input:focus,
.sfco-form textarea:focus,
.sfco-form select:focus {
	outline: none;
	border-color: #f1b24a;
	box-shadow: 0 0 0 3px rgba(241, 178, 74, 0.25);
}
.sfco-hint {
	font-size: 12px;
	color: #888;
	margin: 6px 0 0;
}
.sfco-summary {
	background: #fff7e8;
	border: 1px solid #f5e2bd;
	border-radius: 8px;
	padding: 14px 16px;
	margin: 8px 0 20px;
}
.sfco-summary-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	color: #555;
}
.sfco-summary-line strong {
	font-size: 22px;
	color: #222;
}
.sfco-pay-btn {
	width: 100%;
	background: #f1b24a;
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, transform 0.05s;
}
.sfco-pay-btn:hover:not(:disabled) { background: #e6a233; }
.sfco-pay-btn:active:not(:disabled) { transform: translateY(1px); }
.sfco-pay-btn:disabled {
	background: #e4e4e4;
	color: #999;
	cursor: not-allowed;
}
.sfco-message {
	margin: 14px 0 0;
	font-size: 14px;
	text-align: center;
	min-height: 18px;
}
.sfco-ok { color: #1a7f37; }
.sfco-err { color: #d63638; }
