/**
 * پیغامبر - طراحی مینیمال به سبک صفحه ورود اسنپ
 * نسخه بنفش (بازار چهارسو)
 *
 * @package Peyghambar
 */

/* مخفی‌سازی فرم‌های قدیمی ووکامرس فقط وقتی فرم ما حضور دارد */
body:has(.peyghambar-otp-login-wrapper) form.woocommerce-form-login,
body:has(.peyghambar-otp-login-wrapper) form.woocommerce-form-register {
	display: none !important;
}

/* کارت اصلی */
.peyghambar-otp-login-wrapper {
	direction: rtl;
	text-align: right;
	max-width: 400px;
	margin: 28px auto;
	padding: 36px 28px 28px;
	background: #ffffff;
	border: 1px solid rgba(138, 27, 227, 0.08);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(138, 27, 227, 0.08);
	box-sizing: border-box;
}

/* ✅ آیکون تمیز داخل دایره رنگی ملایم */
.peyghambar-otp-icon {
	width: 78px;
	height: 78px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(140deg, #f4edff 0%, #f8f2ff 100%);
	border-radius: 50%;
	color: #8A1BE3;
}

.peyghambar-otp-icon svg {
	width: 42px;
	height: 42px;
}

/* عنوان */
.peyghambar-otp-login-wrapper h2 {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 800;
	color: #1A0A2A;
	text-align: center;
	letter-spacing: -0.2px;
}

.peyghambar-otp-subtitle {
	font-size: 12.5px;
	color: #8A5AAA;
	line-height: 2;
	text-align: center;
	margin: 0 0 26px;
}

/* انیمیشن ملایم بین مراحل */
.peyghambar-otp-step {
	animation: pgbFade .28s ease;
}

@keyframes pgbFade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: none; }
}

/* ردیف‌های فرم */
.peyghambar-form-row {
	margin: 0 0 16px;
}

.peyghambar-form-row label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #4A2A6A;
}

/* اینپوت‌های اسنپی: بزرگ، گرد، تمیز */
.peyghambar-form-row input {
	width: 100%;
	box-sizing: border-box;
	height: 52px;
	padding: 0 16px;
	border: 1.5px solid #e6eaf0;
	border-radius: 14px;
	background: #f9fafc;
	font-size: 16px;
	color: #1A0A2A;
	transition: border-color .2s, box-shadow .2s, background .2s;
}

.peyghambar-form-row input::placeholder {
	color: #A88AC2;
	letter-spacing: 1px;
}

.peyghambar-form-row input:focus {
	outline: none;
	border-color: #8A1BE3;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(138, 27, 227, .10);
}

/* دکمه اصلی (CTA تمام‌عرض مثل اسنپ) */
.peyghambar-otp-login-wrapper .button {
	display: block;
	width: 100%;
	margin: 0;
	height: 52px;
	padding: 0 16px;
	border: none;
	border-radius: 14px;
	background: #8A1BE3;
	color: #fff !important;
	font-size: 15.5px;
	font-weight: 700;
	text-align: center;
	text-shadow: none;
	cursor: pointer;
	transition: background .2s, transform .1s, box-shadow .2s;
	box-shadow: 0 6px 18px rgba(138, 27, 227, .22);
}

.peyghambar-otp-login-wrapper .button:hover {
	background: #6E10B8;
	box-shadow: 0 8px 22px rgba(138, 27, 227, .28);
}

.peyghambar-otp-login-wrapper .button:active {
	transform: scale(.98);
}

/* دکمه ثانویه (ارسال مجدد) */
.peyghambar-otp-login-wrapper .button:not(.alt) {
	background: #f2f5f9;
	color: #4A2A6A !important;
	box-shadow: none;
}

.peyghambar-otp-login-wrapper .button:not(.alt):hover {
	background: #e8edf4;
}

.peyghambar-otp-login-wrapper .button.disabled,
.peyghambar-otp-login-wrapper .button:disabled {
	opacity: .55;
	cursor: not-allowed;
	box-shadow: none;
}

/* نمایش شماره */
.peyghambar-otp-phone-display {
	font-size: 12.5px;
	color: #8A5AAA;
	margin: 0 0 18px;
	text-align: center;
	line-height: 2;
}

.peyghambar-otp-phone-display strong {
	color: #1A0A2A;
	font-size: 13.5px;
	font-weight: 700;
}

/* تایمر */
.peyghambar-otp-timer {
	font-size: 12px;
	color: #8A5AAA;
	margin: 12px 0 0;
	text-align: center;
}

/* پیام‌ها */
.peyghambar-otp-message {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13px;
	text-align: center;
	line-height: 1.8;
	animation: pgbFade .28s ease;
}

.peyghambar-msg-success {
	background: #ecf9f1;
	color: #177245;
	border: 1px solid #bfe9d2;
}

.peyghambar-msg-error {
	background: #fdefef;
	color: #b42323;
	border: 1px solid #f5c9c9;
}

.peyghambar-msg-loading {
	background: #f4edff;
	color: #6E10B8;
	border: 1px solid #e8d6ff;
}

/* ریسپانسیو موبایل */
@media (max-width: 480px) {
	.peyghambar-otp-login-wrapper {
		margin: 16px auto;
		padding: 30px 20px 22px;
		border-radius: 18px;
	}

	.peyghambar-otp-icon {
		width: 70px;
		height: 70px;
	}

	.peyghambar-otp-icon svg {
		width: 38px;
		height: 38px;
	}
}