/*
 * فرم معرفی فروشگاه.
 *
 * همه‌ی گزینشگرها با `.zpss` پیشوند گرفته‌اند. دلیلش این است که قالب‌های وردپرس
 * معمولاً برای `button` و `input` قانون‌هایی با اولویت بالا دارند (مثلاً
 * `.entry-content button:hover { background: #c36 }`) که استایل تک‌کلاسی را
 * کنار می‌زنند. هر عنصر تعاملی هم حالت hover/focus/active صریح دارد تا هیچ
 * قانونی از قالب جای خالی پیدا نکند.
 */

.zpss {
	--zpss-accent: #7a0bf5;
	--zpss-accent-soft: #f6efff;
	--zpss-text: #1c1c1e;
	--zpss-muted: #8a8a8e;
	--zpss-border: #e3e3e8;
	--zpss-danger: #d92d20;
	--zpss-radius: 12px;

	max-width: 560px;
	margin-inline: auto;
	color: var(--zpss-text);
	font-size: 15px;
	line-height: 1.8;
}

.zpss *,
.zpss *::before,
.zpss *::after {
	box-sizing: border-box;
}

/* ---------- ریست پایه ---------- */

.zpss input,
.zpss textarea,
.zpss button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-shadow: none;
	box-shadow: none;
	margin: 0;
}

.zpss fieldset {
	min-width: 0;
	padding: 0;
	border: 0;
	background: none;
}

.zpss legend {
	padding: 0;
	width: auto;
}

/* هیچ دکمه‌ای رنگ پیش‌فرض قالب را نمی‌گیرد. */
.zpss button,
.zpss button:hover,
.zpss button:focus,
.zpss button:active {
	background-image: none;
	text-decoration: none;
	outline: none;
}

.zpss input:invalid,
.zpss textarea:invalid {
	box-shadow: none;
	outline: none;
}

/* ---------- چیدمان ---------- */

.zpss .zpss-header {
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--zpss-border);
}

.zpss .zpss-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.zpss .zpss-field {
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.zpss .zpss-field--last {
	margin-bottom: 0;
}

.zpss .zpss-label {
	display: block;
	margin: 0 0 8px;
	padding: 0;
	font-size: 14px;
	font-weight: 700;
}

.zpss .zpss-req {
	color: var(--zpss-accent);
}

.zpss .zpss-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- ورودی‌ها ---------- */

.zpss .zpss-input {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	padding: 14px 16px;
	color: var(--zpss-text);
	background: #fff;
	border: 1px solid var(--zpss-border);
	border-radius: var(--zpss-radius);
	transition: border-color .15s, box-shadow .15s;
}

.zpss .zpss-input::placeholder {
	color: var(--zpss-muted);
	opacity: 1;
}

.zpss .zpss-input:hover {
	border-color: #d0d0d6;
	background: #fff;
}

.zpss .zpss-input:focus {
	outline: none;
	border-color: var(--zpss-accent);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(122, 11, 245, .12);
}

.zpss .zpss-input.is-invalid {
	border-color: var(--zpss-danger);
}

.zpss .zpss-textarea {
	min-height: 120px;
	resize: vertical;
}

/* ---------- نوع فروشگاه ---------- */

.zpss .zpss-choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.zpss .zpss-choice input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.zpss .zpss-choice__box {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	color: var(--zpss-text);
	background: #fafafa;
	border: 1px solid var(--zpss-border);
	border-radius: var(--zpss-radius);
	cursor: pointer;
	transition: background .15s, border-color .15s;
}

.zpss .zpss-choice__box:hover {
	background: #f4f4f6;
}

.zpss .zpss-choice__dot {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border: 2px solid #d0d0d6;
	border-radius: 50%;
	background: #fff;
	position: relative;
	transition: background .15s, border-color .15s;
}

.zpss .zpss-choice input:checked + .zpss-choice__box {
	background: var(--zpss-accent-soft);
	border-color: var(--zpss-accent);
}

.zpss .zpss-choice input:checked + .zpss-choice__box .zpss-choice__dot {
	background: var(--zpss-accent);
	border-color: var(--zpss-accent);
}

.zpss .zpss-choice input:checked + .zpss-choice__box .zpss-choice__dot::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translateY(-1px) rotate(45deg);
}

.zpss .zpss-choice input:focus-visible + .zpss-choice__box {
	box-shadow: 0 0 0 3px rgba(122, 11, 245, .18);
}

/* ---------- ردیف انتخابگر ---------- */

.zpss .zpss-picker,
.zpss .zpss-picker:hover,
.zpss .zpss-picker:focus,
.zpss .zpss-picker:active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 14px 16px;
	text-align: start;
	color: var(--zpss-text);
	background-color: #fff;
	border: 1px solid var(--zpss-border);
	border-radius: var(--zpss-radius);
	cursor: pointer;
	transition: border-color .15s, box-shadow .15s;
}

.zpss .zpss-picker:hover {
	border-color: #d0d0d6;
}

.zpss .zpss-picker:focus-visible {
	border-color: var(--zpss-accent);
	box-shadow: 0 0 0 3px rgba(122, 11, 245, .12);
}

.zpss .zpss-picker.is-invalid {
	border-color: var(--zpss-danger);
}

.zpss .zpss-picker__value {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--zpss-text);
}

.zpss .zpss-picker__value--empty {
	color: var(--zpss-muted);
}

.zpss .zpss-picker__chevron {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border: solid #b0b0b8;
	border-width: 0 0 1.8px 1.8px;
	transform: rotate(45deg);
}

/* ---------- ردیف‌های رادیویی ---------- */

.zpss .zpss-field--role {
	display: grid;
	gap: 12px;
}

.zpss .zpss-row input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.zpss .zpss-row__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
	color: var(--zpss-text);
	background: #fafafa;
	border: 1px solid transparent;
	border-radius: var(--zpss-radius);
	cursor: pointer;
	transition: background .15s, border-color .15s;
}

.zpss .zpss-row__box:hover {
	background: #f4f4f6;
}

.zpss .zpss-row__dot {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border: 2px solid #d0d0d6;
	border-radius: 50%;
	background: #fff;
	position: relative;
	transition: background .15s, border-color .15s;
}

.zpss .zpss-row input:checked + .zpss-row__box {
	background: var(--zpss-accent-soft);
	border-color: var(--zpss-accent);
}

.zpss .zpss-row input:checked + .zpss-row__box .zpss-row__dot {
	background: var(--zpss-accent);
	border-color: var(--zpss-accent);
}

.zpss .zpss-row input:checked + .zpss-row__box .zpss-row__dot::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translateY(-1px) rotate(45deg);
}

.zpss .zpss-row input:focus-visible + .zpss-row__box {
	box-shadow: 0 0 0 3px rgba(122, 11, 245, .18);
}

.zpss .zpss-field--role.is-invalid .zpss-row__box {
	border-color: var(--zpss-danger);
}

/* ---------- خطاها ---------- */

.zpss .zpss-error {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--zpss-danger);
}

.zpss .zpss-alert {
	margin: 0 0 20px;
	padding: 12px 16px;
	font-size: 14px;
	border-radius: var(--zpss-radius);
}

.zpss .zpss-alert--error {
	color: #7a271a;
	background: #fef3f2;
	border: 1px solid #fecdca;
}

/* تله‌ی ربات — بیرون از دید، ولی نه display:none */
.zpss .zpss-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- دکمه‌ی ارسال ---------- */

.zpss .zpss-submit,
.zpss .zpss-submit:hover,
.zpss .zpss-submit:focus,
.zpss .zpss-submit:active {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin: 8px 0 0;
	padding: 16px;
	font-weight: 700;
	color: #fff;
	background-color: var(--zpss-accent);
	border: 0;
	border-radius: var(--zpss-radius);
	cursor: pointer;
	transition: opacity .15s;
}

.zpss .zpss-submit:hover {
	opacity: .92;
}

.zpss .zpss-submit[disabled] {
	opacity: .6;
	cursor: default;
}

.zpss .zpss-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: zpss-spin .7s linear infinite;
}

.zpss .zpss-form.is-busy .zpss-spinner {
	display: block;
}

@keyframes zpss-spin {
	to { transform: rotate(360deg); }
}

/* ---------- پیام موفقیت ---------- */

.zpss .zpss-success {
	padding: 32px 24px;
	text-align: center;
	background: var(--zpss-accent-soft);
	border-radius: var(--zpss-radius);
}

.zpss .zpss-success__check {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	font-size: 24px;
	line-height: 48px;
	color: #fff;
	background: var(--zpss-accent);
	border-radius: 50%;
}

.zpss .zpss-success__text {
	margin: 0 0 20px;
}

.zpss .zpss-again,
.zpss .zpss-again:hover,
.zpss .zpss-again:focus,
.zpss .zpss-again:active {
	padding: 10px 20px;
	font-size: 14px;
	color: var(--zpss-accent);
	background-color: #fff;
	border: 1px solid var(--zpss-accent);
	border-radius: 10px;
	cursor: pointer;
}

/* ---------- بوتم‌شیت ---------- */

.zpss .zpss-sheet {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.zpss .zpss-sheet[hidden] {
	display: none;
}

/* دراور موقعیت یک لایه پایین‌تر، تا انتخابگر استان و شهر رویش باز شود */
.zpss .zpss-sheet--geo {
	z-index: 99998;
}

.zpss .zpss-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	animation: zpss-fade .2s ease;
}

.zpss .zpss-sheet__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 560px;
	max-height: 85vh;
	padding: 12px 20px 20px;
	background: #fff;
	border-radius: 24px 24px 0 0;
	animation: zpss-rise .25s cubic-bezier(.2, .8, .3, 1);
}

@keyframes zpss-fade {
	from { opacity: 0; }
}

@keyframes zpss-rise {
	from { transform: translateY(100%); }
}

@media (prefers-reduced-motion: reduce) {
	.zpss .zpss-sheet__backdrop,
	.zpss .zpss-sheet__panel,
	.zpss .zpss-spinner { animation: none; }
}

.zpss .zpss-sheet__grip {
	flex: 0 0 auto;
	width: 56px;
	height: 5px;
	margin: 0 auto 12px;
	background: #3c3c43;
	border-radius: 999px;
	opacity: .3;
}

.zpss .zpss-sheet__head {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.zpss .zpss-sheet__title {
	flex: 1 1 auto;
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

/* هم‌عرضِ دکمه‌ی بستن، تا عنوان دقیقاً وسط بماند */
.zpss .zpss-sheet__spacer,
.zpss .zpss-sheet__close {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
}

.zpss .zpss-sheet__close,
.zpss .zpss-sheet__close:hover,
.zpss .zpss-sheet__close:focus,
.zpss .zpss-sheet__close:active {
	position: relative;
	padding: 0;
	background-color: #f2f2f7;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.zpss .zpss-sheet__close:hover {
	background-color: #e6e6eb;
}

/* ضربدر با دو خط کشیده می‌شود تا به فونت قالب وابسته نباشد */
.zpss .zpss-sheet__close span,
.zpss .zpss-sheet__close span::before,
.zpss .zpss-sheet__close span::after {
	position: absolute;
	inset: 0;
	margin: auto;
}

.zpss .zpss-sheet__close span::before,
.zpss .zpss-sheet__close span::after {
	content: "";
	width: 14px;
	height: 2px;
	background: #3c3c43;
	border-radius: 2px;
}

.zpss .zpss-sheet__close span::before {
	transform: rotate(45deg);
}

.zpss .zpss-sheet__close span::after {
	transform: rotate(-45deg);
}

.zpss .zpss-sheet__subtitle {
	flex: 0 0 auto;
	margin: -8px 0 16px;
	font-size: 14px;
	color: var(--zpss-muted);
	text-align: center;
}

.zpss .zpss-sheet__search {
	flex: 0 0 auto;
	position: relative;
	margin-bottom: 8px;
}

.zpss .zpss-sheet__input {
	width: 100%;
	padding: 14px 16px;
	padding-inline-end: 48px;
	color: var(--zpss-text);
	background: #f7f7f9;
	border: 1px solid transparent;
	border-radius: var(--zpss-radius);
}

.zpss .zpss-sheet__input::placeholder {
	color: var(--zpss-muted);
	opacity: 1;
}

.zpss .zpss-sheet__input:focus {
	outline: none;
	border-color: var(--zpss-accent);
	background: #fff;
}

.zpss .zpss-sheet__search-icon {
	position: absolute;
	inset-inline-end: 18px;
	top: 50%;
	width: 15px;
	height: 15px;
	margin-top: -10px;
	border: 2px solid #8a8a8e;
	border-radius: 50%;
	pointer-events: none;
}

.zpss .zpss-sheet__search-icon::after {
	content: "";
	position: absolute;
	top: 12px;
	left: 11px;
	width: 7px;
	height: 2px;
	background: #8a8a8e;
	border-radius: 2px;
	transform: rotate(45deg);
}

.zpss .zpss-sheet__list {
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
	-webkit-overflow-scrolling: touch;
}

.zpss .zpss-sheet__list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zpss .zpss-sheet__body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.zpss .zpss-option,
.zpss .zpss-option:hover,
.zpss .zpss-option:focus,
.zpss .zpss-option:active {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 12px 8px;
	text-align: start;
	color: var(--zpss-text);
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #f0f0f3;
	border-radius: 10px;
	cursor: pointer;
}

.zpss .zpss-option:hover,
.zpss .zpss-option:focus-visible {
	background-color: #f7f7f9;
}

.zpss .zpss-option[aria-selected="true"],
.zpss .zpss-option[aria-selected="true"]:hover {
	background-color: var(--zpss-accent-soft);
}

.zpss .zpss-option__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	background: #f2f2f7;
	border-radius: 50%;
}

.zpss .zpss-option__name {
	flex: 1 1 auto;
}

.zpss .zpss-option__mark {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border: 2px solid #d0d0d6;
	border-radius: 50%;
	position: relative;
	opacity: 0;
	transition: opacity .12s, background .12s, border-color .12s;
}

.zpss .zpss-option:hover .zpss-option__mark {
	opacity: 1;
}

.zpss .zpss-option[aria-selected="true"] .zpss-option__mark {
	opacity: 1;
	background: var(--zpss-accent);
	border-color: var(--zpss-accent);
}

.zpss .zpss-option[aria-selected="true"] .zpss-option__mark::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translateY(-1px) rotate(45deg);
}

.zpss .zpss-sheet__empty {
	padding: 24px 0;
	margin: 0;
	color: var(--zpss-muted);
	text-align: center;
}

.zpss .zpss-sheet__confirm,
.zpss .zpss-sheet__confirm:hover,
.zpss .zpss-sheet__confirm:focus,
.zpss .zpss-sheet__confirm:active {
	flex: 0 0 auto;
	width: 100%;
	margin: 12px 0 0;
	padding: 16px;
	font-weight: 700;
	color: #fff;
	background-color: var(--zpss-accent);
	border: 0;
	border-radius: var(--zpss-radius);
	cursor: pointer;
}

.zpss .zpss-sheet__confirm[disabled] {
	opacity: .45;
	cursor: default;
}

/* ---------- نقشه ---------- */

.zpss .zpss-map {
	position: relative;
	height: 220px;
	margin-bottom: 20px;
	overflow: hidden;
	background: #e8e8ec;
	border-radius: var(--zpss-radius);
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.zpss .zpss-map.is-dragging {
	cursor: grabbing;
}

.zpss .zpss-map__tiles {
	position: absolute;
	inset: 0;
}

.zpss .zpss-map__tiles img {
	max-width: none;
	pointer-events: none;
}

/* سنجاق ثابت وسط — کاربر نقشه را زیر آن جابه‌جا می‌کند */
.zpss .zpss-map__pin {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	margin: -30px 0 0 -11px;
	background: var(--zpss-accent);
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
	pointer-events: none;
}

/* دکمه‌های زوم */

.zpss .zpss-map__zoom {
	position: absolute;
	inset-inline-end: 12px;
	top: 12px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.zpss .zpss-map__zoom button,
.zpss .zpss-map__zoom button:hover,
.zpss .zpss-map__zoom button:focus,
.zpss .zpss-map__zoom button:active {
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.zpss .zpss-map__zoom button:hover {
	background-color: #f2f2f7;
}

.zpss .zpss-map__zoom button[disabled] {
	opacity: .4;
	cursor: default;
}

.zpss .zpss-map__zoom .zpss-map__zoom-in {
	border-bottom: 1px solid #e3e3e8;
}

/*
 * علامت + و − با خط کشیده می‌شوند تا به فونت قالب وابسته نباشند.
 * ::after فقط روی دکمه‌ی + تعریف می‌شود — وگرنه روی دکمه‌ی − شبه‌المانِ
 * بدون ابعاد، کل دکمه را سیاه پر می‌کند.
 */
.zpss .zpss-map__zoom button::before,
.zpss .zpss-map__zoom-in::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: #1c1c1e;
	border-radius: 2px;
}

.zpss .zpss-map__zoom button::before {
	width: 15px;
	height: 2px;
}

.zpss .zpss-map__zoom-in::after {
	width: 2px;
	height: 15px;
}

/* دکمه‌ی تمام‌صفحه */

.zpss .zpss-map__expand,
.zpss .zpss-map__expand:hover,
.zpss .zpss-map__expand:focus,
.zpss .zpss-map__expand:active {
	position: absolute;
	inset-inline-start: 12px;
	top: 12px;
	width: 40px;
	height: 40px;
	padding: 0;
	background-color: #fff;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	cursor: pointer;
}

.zpss .zpss-map__expand:hover {
	background-color: #f2f2f7;
}

.zpss .zpss-map__expand::before,
.zpss .zpss-map__expand::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border: 2px solid #1c1c1e;
	border-radius: 1px;
}

/* دو گوشه‌ی مقابل هم — خوانا به‌عنوان «بزرگ کن» */
.zpss .zpss-map__expand::before {
	top: 10px;
	left: 10px;
	border-width: 2px 0 0 2px;
}

.zpss .zpss-map__expand::after {
	bottom: 10px;
	right: 10px;
	border-width: 0 2px 2px 0;
}

/* در حالت باز، گوشه‌ها به سمت داخل برمی‌گردند: «کوچک کن» */
.zpss .zpss-map.is-expanded .zpss-map__expand::before {
	top: 12px;
	left: 12px;
	border-width: 0 0 2px 2px;
}

.zpss .zpss-map.is-expanded .zpss-map__expand::after {
	bottom: 12px;
	right: 12px;
	border-width: 2px 2px 0 0;
}

/* حالت تمام‌صفحه */

.zpss .zpss-map.is-expanded {
	position: fixed;
	inset: 0;
	z-index: 100000;
	height: auto;
	margin: 0;
	border-radius: 0;
}

.zpss .zpss-map.is-expanded .zpss-map__expand,
.zpss .zpss-map.is-expanded .zpss-map__zoom {
	top: max(12px, env(safe-area-inset-top));
}

.zpss .zpss-map__locate,
.zpss .zpss-map__locate:hover,
.zpss .zpss-map__locate:focus,
.zpss .zpss-map__locate:active {
	position: absolute;
	inset-inline-end: 12px;
	bottom: 12px;
	width: 40px;
	height: 40px;
	padding: 0;
	background-color: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	cursor: pointer;
}

.zpss .zpss-map__locate::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 14px;
	height: 14px;
	border: 2px solid var(--zpss-accent);
	border-radius: 50%;
}

.zpss .zpss-map__locate::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 4px;
	height: 4px;
	background: var(--zpss-accent);
	border-radius: 50%;
}

.zpss .zpss-map__locate.is-busy {
	opacity: .5;
}

.zpss .zpss-map__offline {
	display: none;
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--zpss-muted);
	text-align: center;
	background: #e8e8ec;
}

.zpss .zpss-map.is-unavailable .zpss-map__offline {
	display: flex;
}

.zpss .zpss-map.is-unavailable .zpss-map__pin,
.zpss .zpss-map.is-unavailable .zpss-map__credit {
	display: none;
}

.zpss .zpss-map__credit {
	position: absolute;
	inset-inline-start: 6px;
	bottom: 4px;
	margin: 0;
	padding: 1px 6px;
	font-size: 10px;
	line-height: 1.6;
	color: #3c3c43;
	background: rgba(255, 255, 255, .75);
	border-radius: 4px;
	pointer-events: none;
}

/* ---------- موبایل ---------- */

@media (max-width: 360px) {
	.zpss .zpss-choice__box {
		padding: 12px;
	}
	.zpss .zpss-choices {
		gap: 8px;
	}
}
