.pso-order-wrap {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 1px 8px rgba(0,0,0,.08);
	font-family: Tahoma, "Vazir", sans-serif;
}
.pso-step-title {
	margin: 22px 0 10px;
	padding-bottom: 8px;
	border-bottom: 2px solid #eee;
	font-size: 17px;
	color: #333;
}
.pso-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.pso-field {
	flex: 1 1 220px;
	margin-bottom: 14px;
}
.pso-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
	font-size: 14px;
	color: #444;
}
.pso-req { color: #c62828; }
.pso-field input[type="text"],
.pso-field input[type="tel"],
.pso-field input[type="number"],
.pso-field input[type="file"],
.pso-field select,
.pso-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
	font-family: inherit;
}
.pso-field input:focus, .pso-field select:focus, .pso-field textarea:focus {
	outline: none;
	border-color: #999;
}
.pso-hint {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}
.pso-radio-group {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.pso-radio-group label {
	font-weight: normal !important;
	display: flex;
	align-items: center;
	gap: 6px;
}
.pso-payment-group {
	flex-direction: column;
	gap: 10px;
}
.pso-payment-option {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	cursor: pointer;
}
.pso-payment-option:has(input:checked) {
	border-color: #333;
	background: #fafafa;
}
.pso-total-box {
	background: #f7f7f7;
	border-radius: 8px;
	padding: 14px 18px;
	margin: 16px 0;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#pso-total-price {
	font-size: 20px;
	color: #1a7f37;
}
.pso-submit-btn {
	width: 100%;
	padding: 14px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 8px;
}
.pso-submit-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}
.pso-submit-btn:hover:not(:disabled) {
	background: #000;
}
.pso-message {
	padding: 12px 14px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}
.pso-message.error {
	background: #fdecea;
	color: #c62828;
	border: 1px solid #f5c6cb;
}
.pso-message.success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}
#pso-file-preview img {
	max-width: 120px;
	max-height: 120px;
	margin-top: 8px;
	border-radius: 6px;
	border: 1px solid #ddd;
}
.pso-success-box {
	text-align: center;
	padding: 30px 15px;
}
.pso-success-box .pso-order-code {
	font-size: 22px;
	font-weight: bold;
	color: #1a7f37;
	margin: 10px 0;
}
