.spof-form-wrap {
	direction: rtl;
	text-align: right;
	max-width: 480px;
	margin: 20px auto;
	font-family: inherit;
}

.spof-form-wrap * {
	box-sizing: border-box;
}

.spof-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.spof-field {
	margin-bottom: 16px;
}

.spof-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #222;
}

.spof-req {
	color: #e02b2b;
}

.spof-field input[type="text"],
.spof-field input[type="tel"],
.spof-field input[type="number"],
.spof-field select,
.spof-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	font-size: 15px;
	background: #fff;
}

.spof-field input:focus,
.spof-field select:focus,
.spof-field textarea:focus {
	outline: none;
	border-color: #2b8a3e;
	box-shadow: 0 0 0 2px rgba(43, 138, 62, 0.15);
}

.spof-qty-box {
	display: flex;
	align-items: center;
	width: fit-content;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	overflow: hidden;
}

.spof-qty-btn {
	background: #f2f2f2;
	border: none;
	width: 38px;
	height: 38px;
	font-size: 18px;
	cursor: pointer;
}

.spof-qty-btn:hover {
	background: #e6e6e6;
}

.spof-qty-box input[type="number"] {
	width: 60px;
	border: none;
	border-right: 1px solid #d5d5d5;
	border-left: 1px solid #d5d5d5;
	text-align: center;
	-moz-appearance: textfield;
}

.spof-price-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f7f9f7;
	border: 1px solid #e2e8e2;
	border-radius: 6px;
	padding: 12px 14px;
	margin-bottom: 16px;
	font-size: 16px;
}

.spof-total-price {
	color: #2b8a3e;
	font-size: 18px;
}

.spof-message {
	margin-bottom: 12px;
	font-size: 14px;
	border-radius: 6px;
	padding: 0;
}

.spof-message.spof-error {
	color: #a4161a;
	background: #fdeaea;
	padding: 10px 12px;
}

.spof-message.spof-success {
	color: #1b5e20;
	background: #e8f5e9;
	padding: 10px 12px;
}

.spof-submit-btn {
	width: 100%;
	background: #2b8a3e;
	color: #fff;
	border: none;
	padding: 14px 16px;
	font-size: 17px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.spof-submit-btn:hover {
	background: #23732f;
}

.spof-submit-btn:disabled {
	background: #9dbfa4;
	cursor: not-allowed;
}

@media (max-width: 480px) {
	.spof-form-wrap {
		padding: 0 12px;
	}
}
