.nzs-wrap {
	--nzs-primary: #6d5bd0;
	--nzs-secondary: #a48be0;
	--nzs-text: #ffffff;
	--nzs-button: #6d5bd0;
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	direction: rtl;
	text-align: right;
	max-width: 640px;
	margin: 24px auto;
}

.nzs-wrap * { box-sizing: border-box; }

.nzs-title { font-size: 22px; margin: 0 0 6px; color: #222; }
.nzs-desc { color: #666; margin: 0 0 18px; font-size: 14px; }

.nzs-form {
	background: #fff;
	border: 1px solid #e5e5ef;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.nzs-fieldset {
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 16px;
	margin: 0 0 18px;
}
.nzs-fieldset legend {
	padding: 0 8px;
	font-weight: 600;
	color: var(--nzs-primary);
}

.nzs-field { margin-bottom: 14px; }
.nzs-field label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; color: #333; }
.nzs-field input[type=text],
.nzs-field input[type=tel],
.nzs-field input[type=email],
.nzs-field input[type=number],
.nzs-field select,
.nzs-field textarea,
.nzs-captcha-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
}
.nzs-field textarea { min-height: 80px; }
.req { color: #e0524d; }

.nzs-question { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px dashed #eee; }
.nzs-question:last-child { border-bottom: none; }
.nzs-question-text { font-weight: 600; margin: 0 0 10px; color: #222; }

.nzs-choices { display: flex; flex-direction: column; gap: 8px; }
.nzs-choice { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.nzs-choice input { transform: scale(1.15); }

.nzs-stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 6px; font-size: 30px; cursor: pointer; }
.nzs-star { color: #ddd; transition: color .15s; }
.nzs-star.active { color: #f5b301; }

.nzs-honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; }

.nzs-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 11px 20px;
	border-radius: 10px;
	border: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.nzs-btn-filled { background: var(--nzs-button); color: #fff; }
.nzs-btn-filled:hover { opacity: .92; }
.nzs-btn-outline { background: #fff; color: var(--nzs-primary); border: 1.5px solid var(--nzs-primary); }

.nzs-submit-btn { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }

.nzs-alert { padding: 10px 14px; border-radius: 8px; margin-bottom: 14px; font-size: 14px; }
.nzs-alert-error { background: #fdecea; color: #b3261e; border: 1px solid #f5c6c3; }

.nzs-result-box { text-align: center; margin-bottom: 20px; }
.nzs-panel {
	background: linear-gradient(135deg, var(--nzs-primary), var(--nzs-secondary));
	color: var(--nzs-text);
	border-radius: 16px;
	padding: 28px 24px;
}
.nzs-result-icon { font-size: 34px; }
.nzs-result-title { margin: 6px 0 18px; font-size: 17px; font-weight: 700; }
.nzs-code-box {
	background: rgba(255,255,255,.15);
	border: 1.5px dashed rgba(255,255,255,.6);
	border-radius: 12px;
	padding: 16px;
	margin: 0 auto;
	max-width: 320px;
}
.nzs-code-text { font-size: 24px; letter-spacing: 3px; font-weight: 800; }
.nzs-result-desc { font-size: 13px; opacity: .9; margin: 14px 0 0; }
.nzs-result-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
