/**
 * ویجت جستجوی محصول المنتور (پاییزان)
 */
.paezan-product-search-widget {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	direction: rtl;
	--paezan-ps-accent: #ff7a1a;
	--paezan-ps-border: #e2e8f0;
	--paezan-ps-bg: #ffffff;
	--paezan-ps-muted: #64748b;
}

/* بالای هدر/المنتور تا پنل وسط صفحه دیده شود */
.paezan-product-search-widget.is-open {
	position: relative;
	z-index: 999990;
}

.paezan-ps-scrim {
	position: fixed;
	inset: 0;
	z-index: 999991;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.52);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
}

.paezan-ps-scrim[hidden] {
	display: none !important;
}

.paezan-ps-notice {
	margin: 0;
	font-size: 14px;
	color: var(--paezan-ps-muted);
}

.paezan-ps-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: 1px solid var(--paezan-ps-border);
	border-radius: 12px;
	background: #f8fafc;
	color: #334155;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
	-webkit-tap-highlight-color: rgba(148, 163, 184, 0.35);
}

.paezan-ps-trigger:hover,
.paezan-ps-trigger:focus-visible {
	background: #fff;
	color: #0f172a;
	border-color: #cbd5e1;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	outline: none;
}

.paezan-ps-trigger[aria-expanded='true'] {
	background: #fff;
	border-color: var(--paezan-ps-accent, #ff7a1a);
	box-shadow: 0 0 0 2px rgba(255, 122, 26, 0.2);
	position: relative;
	z-index: 999993;
}

.paezan-ps-trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.paezan-ps-trigger-icon i {
	font-size: 22px;
	line-height: 1;
}

.paezan-ps-panel {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 999992;
	width: min(94vw, 720px);
	max-width: 95vw;
	max-height: min(90vh, 820px);
	display: flex;
	flex-direction: column;
	background: var(--paezan-ps-bg);
	border: 1px solid var(--paezan-ps-border);
	border-radius: 18px;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
	box-sizing: border-box;
	overflow: hidden;
}

.paezan-ps-panel[hidden] {
	display: none !important;
}

.paezan-ps-panel-inner {
	padding: 18px 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.paezan-ps-body-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.paezan-ps-body-block[hidden] {
	display: none !important;
}

:where(.paezan-product-search-widget .paezan-ps-input) {
	font-size: 17px;
	line-height: 1.4;
}

.paezan-ps-input {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid var(--paezan-ps-border);
	border-radius: 12px;
	background: #f8fafc;
	direction: rtl;
	text-align: right;
	flex: 0 0 auto;
}

.paezan-ps-input:focus {
	outline: 2px solid rgba(255, 122, 26, 0.35);
	outline-offset: 1px;
	border-color: #cbd5e1;
	background: #fff;
}

/* پیش‌فرض تایپو با :where تا استایل‌های تب «استایل» المنتور اولویت داشته باشند */
:where(.paezan-product-search-widget .paezan-ps-heading) {
	font-size: 13px;
	font-weight: 800;
	color: var(--paezan-ps-muted);
	letter-spacing: 0.02em;
}

.paezan-ps-heading {
	text-align: right;
	min-height: 1.2em;
	flex: 0 0 auto;
}

.paezan-ps-results {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 auto;
	min-height: 0;
	max-height: min(52vh, 420px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.paezan-ps-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	padding: 10px 8px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.paezan-ps-item:hover,
.paezan-ps-item:focus-visible {
	background: #f1f5f9;
	outline: none;
}

.paezan-ps-item-thumb {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background: #e2e8f0;
}

.paezan-ps-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.paezan-ps-item-text {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
}

:where(.paezan-product-search-widget .paezan-ps-item-name) {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
}

.paezan-ps-item-name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

:where(.paezan-product-search-widget .paezan-ps-item-sku) {
	font-size: 14px;
	color: var(--paezan-ps-muted);
}

.paezan-ps-item-sku {
	margin-top: 4px;
}

.paezan-ps-empty {
	padding: 12px 8px;
	text-align: center;
	font-size: 13px;
	color: var(--paezan-ps-muted);
}

.paezan-ps-loading {
	padding: 14px;
	text-align: center;
	font-size: 13px;
	color: var(--paezan-ps-muted);
}

.paezan-ps-footer {
	padding-top: 6px;
	border-top: 1px dashed #cbd5e1;
	text-align: center;
	flex: 0 0 auto;
}

:where(.paezan-product-search-widget .paezan-ps-more.button) {
	font-size: 16px;
	font-weight: 700;
	background: var(--paezan-ps-accent, #ff7a1a);
	color: #fff;
}

.paezan-ps-more.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 14px 18px;
	border-radius: 12px;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}

.paezan-ps-more.button:hover,
.paezan-ps-more.button:focus-visible {
	filter: brightness(1.05);
}

.paezan-ps-more[hidden] {
	display: none !important;
}

body.paezan-ps-modal-open {
	overflow: hidden;
}
