/* GD Product Order Forms — single product order form */

.gdpof-form-wrap {
	margin: 1.5rem 0 1rem;
	padding: 1.25rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.gdpof-form-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e2e8f0;
}

.gdpof-step {
	font-size: 0.8125rem;
	color: #64748b;
}

.gdpof-step.is-active {
	color: #0f172a;
	font-weight: 600;
}

.gdpof-form-notice {
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	background: #fffbeb;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	font-size: 0.875rem;
	color: #78350f;
}

.gdpof-form-notice p {
	margin: 0 0 0.5rem;
}

.gdpof-form-notice p:last-child {
	margin-bottom: 0;
}

.gdpof-section {
	margin-bottom: 1.5rem;
}

.gdpof-section-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
}

.gdpof-section-desc,
.gdpof-field-help,
.gdpof-field-note,
.gdpof-field-help-block {
	font-size: 0.8125rem;
	color: #64748b;
	margin: 0 0 0.5rem;
}

.gdpof-field-help-block {
	padding: 0.75rem;
	background: #fff;
	border-radius: 8px;
	border: 1px dashed #cbd5e1;
	margin-bottom: 0.75rem;
}

.gdpof-field {
	margin-bottom: 0.875rem;
}

.gdpof-field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.35rem;
}

.gdpof-req {
	color: #dc2626;
}

.gdpof-field input[type="text"],
.gdpof-field input[type="file"],
.gdpof-field textarea,
.gdpof-field select {
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 0.875rem;
	background: #fff;
	color: #0f172a;
}

.gdpof-field textarea {
	min-height: 72px;
	resize: vertical;
}

.gdpof-field input:focus,
.gdpof-field textarea:focus,
.gdpof-field select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.gdpof-live-total {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	margin-top: 1rem;
	padding: 1rem;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 10px;
}

.gdpof-live-total__label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1e40af;
}

.gdpof-live-total__value {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1d4ed8;
}

.gdpof-live-total__note {
	flex: 1 1 100%;
	font-size: 0.75rem;
	color: #64748b;
}

.gd-single-atc-wrap form.cart.gdpof-order-form {
	flex-direction: column;
	align-items: stretch;
}

.gd-single-atc-wrap form.cart.gdpof-order-form .quantity {
	margin-bottom: 0.5rem;
}

.gd-single-atc-wrap form.cart.gdpof-order-form .single_add_to_cart_button {
	width: 100%;
	margin-top: 0.5rem;
}

@media (max-width: 640px) {
	.gdpof-form-wrap {
		padding: 1rem;
	}

	.gdpof-form-steps {
		flex-direction: column;
	}
}
