/* ==========================================================================
   FaraService Core – استایل ویجت‌ها (منطبق بر خروجی فیگما)
   همه مقادیر با CSS Variable قابل بازنویسی از کنترل‌های المنتور هستند.
   ========================================================================== */

.as-widget {
	/* توکن‌های پایه طرح */
	--as-primary: #060928;
	--as-secondary: #f84e1d;
	--as-title: #3b3b3b;
	--as-border: #e6eaf0;
	--as-muted: #67646a;

	box-sizing: border-box;
	font-family: inherit;
	width: 100%;
}

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

.as-widget[dir="rtl"] {
	direction: rtl;
}

.as-widget[dir="ltr"] {
	direction: ltr;
}

.as-empty {
	padding: 16px 18px;
	border: 1px dashed #c9cedd;
	border-radius: 8px;
	color: #8a90a6;
	font-size: 14px;
	text-align: center;
	direction: rtl;
}

/* اسکرول افقی مشترک */
.as-scroller {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
	cursor: grab;
}

.as-scroller::-webkit-scrollbar {
	display: none;
}

.as-scroller.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
	user-select: none;
}

.as-nav {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.as-nav.as-nav--start { justify-content: flex-start; }
.as-nav.as-nav--center { justify-content: center; }
.as-nav.as-nav--end { justify-content: flex-end; }

.as-nav__btn {
	width: var(--as-nav-size, 44px);
	height: var(--as-nav-size, 44px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--as-nav-border, var(--as-border));
	background: var(--as-nav-bg, #fff);
	color: var(--as-nav-color, var(--as-primary));
	border-radius: var(--as-nav-radius, 50%);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.as-nav__btn:hover {
	background: var(--as-nav-bg-hover, var(--as-secondary));
	border-color: var(--as-nav-bg-hover, var(--as-secondary));
	color: var(--as-nav-color-hover, #fff);
}

.as-nav__btn svg {
	width: 20px;
	height: 20px;
}

.as-widget button:focus-visible,
.as-widget a:focus-visible {
	outline: 2px solid var(--as-secondary);
	outline-offset: 2px;
}

/* ==========================================================================
   ۱) لیست قیمت
   ========================================================================== */

.as-pricelist {
	--as-head-bg: var(--as-primary);
	--as-head-radius: 8px;
	--as-head-pad: 20px 30px;
	--as-head-min-h: 104px;
	--as-eyebrow-color: #ffffff;
	--as-eyebrow-size: 13px;
	--as-dot-color: var(--as-secondary);
	--as-headline-color: #ffffff;
	--as-headline-size: 36px;
	--as-gap: 15px;
	--as-row-gap: 10px;
	--as-row-radius: 8px;
	--as-row-min-h: 67px;
	--as-row-bg: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
	--as-row-border: var(--as-border);
	--as-row-shadow: 0px 6px 20px 0px rgba(15, 35, 64, 0.04);
	--as-row-pad: 0;
	--as-label-color: var(--as-title);
	--as-label-size: 20px;
	--as-bar-w: 4px;
	--as-bar-h: 25px;
	--as-bar-color: var(--as-secondary);
	--as-price-bg: var(--as-secondary);
	--as-price-pad: 10px;
	--as-price-color: #ffffff;
	--as-price-size: 24px;
	--as-unit-color: #ffffff;
	--as-unit-size: 12px;

	display: flex;
	flex-direction: column;
	gap: var(--as-gap);
}

.as-pricelist__head {
	position: relative;
	overflow: hidden;
	background: var(--as-head-bg);
	border-radius: var(--as-head-radius);
	min-height: var(--as-head-min-h);
	padding: var(--as-head-pad);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

/* حلقه تزیینی گوشه – طبق طرح */
.as-pricelist__ring {
	position: absolute;
	inset-inline-end: -87px;
	top: -59px;
	width: 262px;
	height: 262px;
	border-radius: 50%;
	border: 36px solid rgba(113, 113, 113, .15);
	pointer-events: none;
}

.as-pricelist__eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--as-eyebrow-color);
	font-size: var(--as-eyebrow-size);
	font-weight: 500;
	letter-spacing: .1px;
	line-height: 1.8;
}

.as-pricelist__eyebrow i {
	flex: none;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: var(--as-dot-color);
	box-shadow: 0 0 0 6px rgba(244, 122, 32, .14);
}

.as-pricelist__title {
	position: relative;
	margin: 0;
	color: var(--as-headline-color);
	font-size: var(--as-headline-size);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.4px;
}

.as-pricelist__rows {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--as-row-gap);
}

.as-pricelist__row {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 12px;
	min-height: var(--as-row-min-h);
	background: var(--as-row-bg);
	border: 1px solid var(--as-row-border);
	border-radius: var(--as-row-radius);
	box-shadow: var(--as-row-shadow);
	overflow: hidden;
	transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.as-pricelist__row:hover {
	border-color: color-mix(in srgb, var(--as-secondary) 35%, transparent);
	box-shadow: 0 10px 26px rgba(15, 35, 64, .09);
}

.as-pricelist__main {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 1 1 auto;
	min-width: 0;
}

.as-pricelist__bar {
	flex: none;
	width: var(--as-bar-w);
	height: var(--as-bar-h);
	background: var(--as-bar-color);
	border-radius: 6px 0 0 6px;
	opacity: .9;
}

.as-widget[dir="ltr"] .as-pricelist__bar {
	border-radius: 0 6px 6px 0;
}

.as-pricelist__label {
	padding: var(--as-row-pad);
	color: var(--as-label-color);
	font-size: var(--as-label-size);
	font-weight: 500;
	line-height: 1.52;
	min-width: 0;
	margin:0;
}

.as-pricelist__price {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: var(--as-price-pad);
	background: var(--as-price-bg);
	color: var(--as-price-color);
}

.as-pricelist__price .as-unit {
	font-size: var(--as-unit-size);
	font-weight: 400;
	color: var(--as-unit-color);
}

.as-pricelist__price .as-amount {
	font-size: var(--as-price-size);
	font-weight: 500;
	letter-spacing: -.2px;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.as-pricelist {
		--as-headline-size: 22px;
		--as-label-size: 15px;
		--as-price-size: 18px;
		--as-row-pad: 14px 12px 14px 10px;
		--as-price-pad: 12px 16px;
	}

	.as-pricelist__row {
		flex-direction: column;
		align-items: stretch;
	}

}

/* ==========================================================================
   ۲) نظرات کاربران  (اسلایدر مرکزگرا – کارت وسط فعال)
   ========================================================================== */

.as-testi {
	/* چند کارت در عرض دید جا شود.
	   ۴ یعنی: کارت وسط + دو کارت کامل + دو کارت نصفه = ۵ اسلاید دیده می‌شود. */
	--as-per-view: 4;
	--as-card-gap: 22px;

	/* عرض مرجع محاسبه‌ی کارت (در حالت تمام‌عرض با 100vw جایگزین می‌شود) */
	--as-space: 100cqw;
	--as-card-w: calc( ( var(--as-space) - var(--as-card-gap) * ( var(--as-per-view) - 1 ) ) / var(--as-per-view) );

	--as-card-min-h: 300px;
	--as-card-bg: #f4f5f7;
	--as-card-radius: 12px;
	--as-card-pad: 28px;
	--as-card-shadow: none;

	--as-quote-color: #f9b39a;
	--as-quote-size: 44px;

	--as-text-color: #6b6b76;
	--as-text-size: 17px;
	--as-name-color: #a5a5ae;
	--as-name-size: 12px;
	--as-caption-color: #a5a5ae;
	--as-caption-size: 11px;

	/* کارت فعال (وسط) */
	--as-active-bg: var(--as-primary);
	--as-active-text: #ffffff;
	--as-active-name: #9b9aa4;
	--as-active-caption: #c9ccdb;
	--as-active-quote: var(--as-secondary);
	--as-active-scale: 1;
	--as-active-shadow: 0 22px 50px rgba(6, 9, 40, .20);

	/* کارت‌های غیرفعال */
	--as-idle-opacity: .55;
	--as-idle-scale: .93;

	--as-stagger: 0px;

	position: relative;
	container-type: inline-size;
}

/* مرورگرهای قدیمی بدون Container Query */
@supports not (container-type: inline-size) {
	.as-testi { --as-space: 100%; }
}

/* حالت تمام‌عرض: اسلایدر از عرض سکشن بیرون می‌زند */
.as-testi--bleed {
	--as-space: calc( 100vw - var(--as-sbw, 0px) );
}

.as-testi--bleed .as-testi__viewport {
	width: var(--as-space);
	margin-inline: calc( 50% - var(--as-space) / 2 );
}

.as-testi__title {
	margin: 0 0 20px;
	color: var(--as-primary);
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.as-testi__viewport {
	gap: var(--as-card-gap);
	align-items: center;
	padding-block: var(--as-view-pad-y, 26px);
	/* فضای ابتدایی/انتهایی تا کارت اول و آخر هم بتوانند وسط بایستند */
	padding-inline: calc( var(--as-space) / 2 - var(--as-card-w) / 2 );
}

.as-testi__card {
	flex: 0 0 var(--as-card-w);
	max-width: var(--as-card-w);
	scroll-snap-align: center;
	display: flex;
	flex-direction: column;
	min-height: var(--as-card-min-h);
	padding: var(--as-card-pad);
	background: var(--as-card-bg);
	border-radius: var(--as-card-radius);
	box-shadow: var(--as-card-shadow);
	transition: transform .4s ease, opacity .4s ease, background-color .4s ease, box-shadow .4s ease;
}

/* --- حالت مرکزگرا --- */
.as-testi--center .as-testi__card {
	opacity: var(--as-idle-opacity);
	transform: scale(var(--as-idle-scale));
	cursor: pointer;
}

.as-testi--center .as-testi__card.is-active {
	opacity: 1;
	transform: scale(var(--as-active-scale));
	box-shadow: var(--as-active-shadow);
}

/* --- حالت ساده (بدون مرکزگرا): چیدمان پلکانی قدیمی --- */
.as-testi--stagger:not(.as-testi--center) .as-testi__card:nth-child(even) {
	transform: translateY(var(--as-stagger));
}

.as-testi:not(.as-testi--center) .as-testi__card:hover {
	box-shadow: 0 18px 40px rgba(6, 9, 40, .10);
}

.as-testi__quote {
	display: block;
	margin-bottom: 12px;
}

.as-testi__quote svg {
	width: var(--as-quote-size);
	height: auto;
	display: block;
	fill: var(--as-quote-color);
	transition: fill .4s ease;
}

.as-testi__text {
	flex: 1 1 auto;
	margin: 0;
	color: var(--as-text-color);
	font-size: var(--as-text-size);
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: -.3px;
	transition: color .4s ease;
	overflow-wrap: anywhere !important;
	 word-break: break-word !important;
	white-space: normal !important;
	max-width: 100%;
}
}

.as-testi__text p { margin: 0 0 8px; }
.as-testi__text p:last-child { margin-bottom: 0; }

.as-testi__meta {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.as-testi__name {
	color: var(--as-name-color);
	font-size: var(--as-name-size);
	font-weight: 500;
	line-height: 1.4;
	transition: color .4s ease;
}

.as-testi__caption {
	color: var(--as-caption-color);
	font-size: var(--as-caption-size);
	font-weight: 500;
	line-height: 1.45;
	transition: color .4s ease;
}

/* رنگ‌های کارت فعال */
.as-testi__card.is-active {
	background: var(--as-active-bg);
}

.as-testi__card.is-active .as-testi__text { color: var(--as-active-text); }
.as-testi__card.is-active .as-testi__name { color: var(--as-active-name); }
.as-testi__card.is-active .as-testi__caption { color: var(--as-active-caption); }
.as-testi__card.is-active .as-testi__quote svg { fill: var(--as-active-quote); }

/* نقطه‌های ناوبری */
.as-testi__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.as-testi__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d8dae3;
	cursor: pointer;
	transition: background .25s ease, width .25s ease;
}

.as-testi__dot.is-active {
	width: 22px;
	border-radius: 999px;
	background: var(--as-secondary);
}

@media (max-width: 1024px) {
	.as-testi { --as-per-view: 2.4; }
}

@media (max-width: 767px) {
	.as-testi {
		--as-per-view: 1.25;
		--as-card-min-h: 260px;
		--as-text-size: 16px;
		--as-quote-size: 36px;
		--as-idle-scale: .95;
	}

	.as-testi--stagger:not(.as-testi--center) .as-testi__card:nth-child(even) {
		transform: none;
	}
}

/* ==========================================================================
   ۳) سوالات متداول (آکاردئون)
   ========================================================================== */

.as-faq {
	/* آیتم */
	--as-item-bg: #f2f2f3;
	--as-item-bg-hover: #ededef;
	--as-item-bg-open: #f2f2f3;
	--as-item-radius: 10px;
	--as-item-gap: 12px;
	--as-item-border-w: 0px;
	--as-item-border: transparent;
	--as-item-border-open: transparent;
	--as-item-shadow: none;
	--as-item-shadow-open: none;

	/* خط اکسنت کناری */
	--as-accent-w: 4px;
	--as-accent-color: var(--as-secondary);
	--as-accent-inset: 0px;
	--as-accent-radius: 6px;

	/* سوال */
	--as-q-bg: transparent;
	--as-q-bg-open: transparent;
	--as-q-color: #23232b;
	--as-q-color-open: #23232b;
	--as-q-size: 15px;
	--as-q-weight: 700;
	--as-q-pad: 18px 22px;
	--as-q-gap: 14px;

	/* پاسخ */
	--as-a-bg: transparent;
	--as-a-color: #7a7a85;
	--as-a-size: 13px;
	--as-a-line: 2.1;
	--as-a-pad: 0 22px 20px;
	--as-a-border-w: 0px;
	--as-a-border-color: var(--as-border);

	/* آیکن */
	--as-icon-color: #23232b;
	--as-icon-color-open: #23232b;
	--as-icon-bg: transparent;
	--as-icon-bg-open: transparent;
	--as-icon-box: 26px;
	--as-icon-size: 18px;
	--as-icon-radius: 50%;
	--as-icon-rotate: 180deg;

	display: flex;
	flex-direction: column;
	gap: var(--as-item-gap);
}

.as-faq__title {
	margin: 0 0 8px;
	color: var(--as-primary);
	font-size: 28px;
	font-weight: 700;
}

.as-faq__item {
	position: relative;
	background: var(--as-item-bg);
	border: var(--as-item-border-w) solid var(--as-item-border);
	border-radius: var(--as-item-radius);
	box-shadow: var(--as-item-shadow);
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.as-faq__item:hover {
	background: var(--as-item-bg-hover);
}

.as-faq__item.is-open {
	background: var(--as-item-bg-open);
	border-color: var(--as-item-border-open);
	box-shadow: var(--as-item-shadow-open);
}

/* خط اکسنت: به‌صورت پیش‌فرض سمت شروع (راست در RTL) */
.as-faq__item::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: var(--as-accent-inset);
	bottom: var(--as-accent-inset);
	width: var(--as-accent-w);
	border-radius: var(--as-accent-radius);
	background: var(--as-accent-color);
	opacity: 0;
	transition: opacity .25s ease;
}

.as-faq--accent-end .as-faq__item::before {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.as-faq__item.is-open::before,
.as-faq--accent-always .as-faq__item::before { opacity: 1; }

.as-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--as-q-gap);
	padding: var(--as-q-pad);
	background: var(--as-q-bg);
	border: 0;
	cursor: pointer;
	font: inherit;
	text-align: start;
	color: var(--as-q-color);
	font-size: var(--as-q-size);
	font-weight: var(--as-q-weight);
	line-height: 1.9;
	transition: background-color .25s ease, color .25s ease;
}

.as-faq__item.is-open .as-faq__q {
	background: var(--as-q-bg-open);
	color: var(--as-q-color-open);
}

.as-faq__q-text { flex: 1 1 auto;  text-wrap: wrap;}

.as-faq__icon {
	flex: none;
	width: var(--as-icon-box);
	height: var(--as-icon-box);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--as-icon-color);
	background: var(--as-icon-bg);
	border-radius: var(--as-icon-radius);
	transition: transform .3s ease, color .25s ease, background-color .25s ease;
}

.as-faq__icon svg {
	width: var(--as-icon-size);
	height: var(--as-icon-size);
}

.as-faq__item.is-open .as-faq__icon {
	transform: rotate(var(--as-icon-rotate));
	color: var(--as-icon-color-open);
	background: var(--as-icon-bg-open);
}

.as-faq__a {
	overflow: hidden;
	background: var(--as-a-bg);
}

.as-faq__a[hidden] { display: none; }

.as-faq__a-inner {
	padding: var(--as-a-pad);
	border-top: var(--as-a-border-w) solid var(--as-a-border-color);
	color: var(--as-a-color);
	font-size: var(--as-a-size);
	line-height: var(--as-a-line);
	text-align: justify;
}

.as-faq__a-inner p { margin: 0 0 10px; }
.as-faq__a-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   ۴) ویدیوهای آموزشی (اسلایدر مرکزگرا)
   ========================================================================== */

.as-videos {
	/* اندازه کارت (مطابق طرح فیگما) */
	--as-vcard-w: 320px;
	--as-vcard-h: 490px;
	--as-vactive-w: 400px;
	--as-vactive-h: 580px;
	--as-vcard-gap: 15px;
	--as-vspace: 100cqw;
	--as-vcard-radius: 12px;
	--as-vcard-bg: #121312;
	--as-vcard-border-w: 0px;
	--as-vcard-border: transparent;

	/* حالت فعال و غیرفعال */
	--as-vidle-opacity: 1;
	--as-vidle-filter: grayscale(1);
	--as-vidle-veil: rgba(8, 11, 40, .18);
	--as-vactive-filter: none;
	--as-vactive-shadow: 0 26px 60px rgba(0, 0, 0, .45);

	/* سایه پایین کارت */
	--as-shade: rgba(0, 0, 0, .8);
	--as-shade-h: 46%;

	/* عنوان */
	--as-vtitle-color: #ffffff;
	--as-vtitle-size: 15px;
	--as-vtitle-weight: 500;

	/* دکمه پخش */
	--as-play-size: 44px;
	--as-play-radius: 50%;
	--as-play-icon-size: 14px;
	--as-play-bg: rgba(255, 255, 255, .09);
	--as-play-border-w: 2px;
	--as-play-border: rgba(255, 255, 255, .35);
	--as-play-border-active: var(--as-secondary);
	--as-play-bg-active: rgba(255, 255, 255, .12);
	--as-play-icon: #ffffff;
	--as-play-icon-active: #ffffff;
	--as-play-blur: 13px;

	/* ردیف پایین کارت */
	--as-foot-gap: 14px;
	--as-foot-inset: 16px;
	--as-foot-bottom: 16px;
	--as-foot-justify: space-between;

	--as-view-pad-y: 12px;

	position: relative;
	container-type: inline-size;
}

@supports not (container-type: inline-size) {
	.as-videos { --as-vspace: 100%; }
}

.as-videos--bleed {
	--as-vspace: calc( 100vw - var(--as-sbw, 0px) );
}

.as-videos--bleed .as-videos__viewport {
	width: var(--as-vspace);
	margin-inline: calc( 50% - var(--as-vspace) / 2 );
}

.as-videos__title {
	margin: 0 0 20px;
	color: var(--as-primary);
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.as-videos__viewport {
	gap: var(--as-vcard-gap);
	/* همه کارت‌ها از پایین هم‌تراز می‌شوند */
	align-items: flex-end;
	padding-block: var(--as-view-pad-y);
	padding-inline: calc( var(--as-vspace) / 2 - var(--as-vactive-w) / 2 );
	min-height:610px;
}

.as-video {
	position: relative;
	flex: 0 0 var(--as-vcard-w);
	width: var(--as-vcard-w);
	max-width: none;
	height: var(--as-vcard-h);
	scroll-snap-align: center;
	border: var(--as-vcard-border-w) solid var(--as-vcard-border);
	border-radius: var(--as-vcard-radius);
	background: var(--as-vcard-bg);
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	display: block;
	transition: flex-basis .4s ease, width .4s ease, height .4s ease, opacity .4s ease, box-shadow .4s ease;
}

/* حالت مرکزگرا */
.as-videos--center .as-video {
	opacity: var(--as-vidle-opacity);
}

.as-videos--center .as-video .as-video__media {
	filter: var(--as-vidle-filter);
}

.as-videos--center .as-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--as-vidle-veil);
	pointer-events: none;
	transition: opacity .4s ease;
}

.as-videos--center .as-video.is-active {
	opacity: 1;
	flex-basis: var(--as-vactive-w);
	width: var(--as-vactive-w);
	height: var(--as-vactive-h);
	box-shadow: var(--as-vactive-shadow);
}

.as-videos--center .as-video.is-active .as-video__media {
	filter: var(--as-vactive-filter);
}

.as-videos--center .as-video.is-active::after { opacity: 0; }

/* حالت ساده قدیمی: کارت بزرگ هر n اُمین مورد */
.as-videos:not(.as-videos--center) .as-video.is-featured {
	flex-basis: var(--as-vactive-w);
	width: var(--as-vactive-w);
	height: var(--as-vactive-h);
	box-shadow: var(--as-vactive-shadow);
}

.as-video__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: filter .4s ease;
}

.as-video__shade {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: var(--as-shade-h);
	background: linear-gradient(0deg, var(--as-shade) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	z-index: 1;
}

.as-video__foot {
	position: absolute;
	inset-inline-start: var(--as-foot-inset);
	inset-inline-end: var(--as-foot-inset);
	bottom: var(--as-foot-bottom);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: var(--as-foot-justify);
	gap: var(--as-foot-gap);
	text-align: start;
}

/* دکمه پخش سمت انتهای ردیف (چپ در RTL) */
.as-videos--play-end .as-video__foot {
	flex-direction: row-reverse;
}

.as-video__play {
	flex: none;
	width: var(--as-play-size);
	height: var(--as-play-size);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--as-play-bg);
	border: var(--as-play-border-w) solid var(--as-play-border);
	border-radius: var(--as-play-radius);
	box-shadow: 0px 15px 75px 0px rgba(27, 25, 68, .3);
	backdrop-filter: blur(var(--as-play-blur));
	-webkit-backdrop-filter: blur(var(--as-play-blur));
	color: var(--as-play-icon);
	transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.as-video.is-active .as-video__play,
.as-videos:not(.as-videos--center) .as-video.is-featured .as-video__play {
	border-color: var(--as-play-border-active);
	background: var(--as-play-bg-active);
	color: var(--as-play-icon-active);
}

.as-video__play svg {
	width: var(--as-play-icon-size);
	height: var(--as-play-icon-size);
}

.as-video__play .as-video__ico--pause { display: none; }
.as-video.is-active .as-video__play .as-video__ico--play { display: none; }
.as-video.is-active .as-video__play .as-video__ico--pause { display: block; }

.as-videos--icon-play .as-video__play .as-video__ico--pause { display: none; }
.as-videos--icon-play .as-video__play .as-video__ico--play { display: block; }

.as-video:hover .as-video__play {
	transform: scale(1.08);
}

.as-video__name {
	color: var(--as-vtitle-color);
	font-size: var(--as-vtitle-size);
	font-weight: var(--as-vtitle-weight);
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.as-videos {
		--as-vcard-w: 230px;
		--as-vcard-h: 350px;
		--as-vactive-w: 285px;
		--as-vactive-h: 415px;
	}
}

@media (max-width: 767px) {
	.as-videos {
		--as-vcard-w: 165px !important;
		--as-vcard-h: 250px !important;
		--as-vactive-w: 230px !important;
		--as-vactive-h: 335px !important;
		--as-vcard-gap: 10px;
		--as-vtitle-size: 13px;
		--as-play-size: 34px;
		--as-foot-gap: 8px;
		--as-foot-inset: 12px;
		--as-foot-bottom: 12px;
	}
	.as-videos__viewport {
		min-height: 365px;
}
}

/* ==========================================================================
   ۵) برندهای محصول (کروسل لوگوها)
   ========================================================================== */

.as-brands {
	--as-bcard-w: 190px;
	--as-bcard-gap: 16px;
	--as-bcard-radius: 16px;
	--as-bcard-bg: #f5f5f7;
	--as-bcard-pad: 22px 18px;
	--as-bcard-min-h: 190px;
	--as-bimg-h: 100px;
	--as-bname-color: #1c1c1c;
	--as-bname-size: 16px;

	/* رنگ نارنجی مشترک: هم نوار پایینی دیزاین ۲ و هم بک‌گراند هاور هر دو دیزاین از همین متغیر می‌آید */
	--as-bhover-bg: var(--as-secondary);
	--as-bhover-color: #ffffff;

	--as-arrow-bg: var(--as-primary);
	--as-arrow-color: #ffffff;

	position: relative;
	container-type: inline-size;
}

.as-brands__title {
	margin: 0 0 20px;
	color: var(--as-primary);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.as-brands--bleed .as-brands__viewport {
	width: calc( 100vw - var(--as-sbw, 0px) );
	margin-inline: calc( 50% - ( 100vw - var(--as-sbw, 0px) ) / 2 );
}

.as-brands__viewport {
	gap: var(--as-bcard-gap);
	padding-block: var(--as-view-pad-y, 6px);
}

.as-brands__card {
	flex: 0 0 var(--as-bcard-w);
	max-width: var(--as-bcard-w);
	min-height: var(--as-bcard-min-h);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--as-bcard-bg);
	border-radius: var(--as-bcard-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: background-color .35s ease;
}

.as-brands__img {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--as-bcard-pad);
}

.as-brands__img img {
	max-width: 100%;
	max-height: var(--as-bimg-h);
	height: auto;
	object-fit: contain;
	transition: transform .35s ease;
}

.as-brands__card:hover .as-brands__img img {
	transform: scale(1.04);
}

/* --- دیزاین ۱ (مثل سامسونگ): عنوان زیر تصویر، کل کارت روی هاور نارنجی --- */
.as-brands--design-1 .as-brands__name {
	width: 100%;
	text-align: center;
	font-weight: 700;
	font-size: var(--as-bname-size);
	color: var(--as-bname-color);
	padding: 0 12px 20px;
	transition: color .35s ease;
}

.as-brands--design-1 .as-brands__card:hover {
	background: var(--as-bhover-bg);
}

.as-brands--design-1 .as-brands__card:hover .as-brands__name {
	color: var(--as-bhover-color);
}

/* --- دیزاین ۲ (مثل دایکین): نوار پایینی نارنجی + فلش، روی هاور کل کارت نارنجی --- */
.as-brands--design-2 .as-brands__card {
	background: #ffffff;
	border: 1px solid var(--as-border);
}

.as-brands--design-2 .as-brands__foot {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: var(--as-bhover-bg);
	padding: 14px 16px;
	transition: background-color .35s ease;
}

.as-brands--design-2 .as-brands__name {
	color: var(--as-bhover-color);
	font-weight: 700;
	font-size: 15px;
}

.as-brands--design-2 .as-brands__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--as-arrow-bg);
	color: var(--as-arrow-color);
	flex: 0 0 auto;
	transition: transform .35s ease;
}

.as-brands--design-2 .as-brands__arrow svg {
	width: 14px;
	height: 14px;
}

.as-brands--design-2 .as-brands__card:hover {
	background: var(--as-bhover-bg);
}

.as-brands--design-2 .as-brands__card:hover .as-brands__foot {
	background: transparent;
}

.as-brands--design-2 .as-brands__card:hover .as-brands__arrow {
	transform: rotate(45deg);
}

@media (max-width: 1024px) {
	.as-brands { --as-bcard-w: 165px; }
}

@media (max-width: 767px) {
	.as-brands {
		--as-bcard-w: 135px !important;
		--as-bcard-gap: 10px;
		--as-bimg-h: 76px;
		--as-bname-size: 13px;
	}
}

/* لایت‌باکس ویدیو */
.as-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(6, 9, 40, .88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.as-lightbox[hidden] { display: none; }

.as-lightbox__inner {
	position: relative;
	width: min(900px, 100%);
	max-height: 86vh;
}

.as-lightbox video {
	width: 100%;
	max-height: 86vh;
	border-radius: 10px;
	display: block;
	background: #000;
}

.as-lightbox__close {
	position: absolute;
	top: -46px;
	inset-inline-end: 0;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--as-primary, #060928);
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
	.as-widget *,
	.as-scroller {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ======================================================================
   FaraService price list - table style override
   ====================================================================== */
.as-pricelist {
	--as-row-gap:0px;
	gap:0;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:0 0 14px 14px;
	overflow:visible;
	position:relative;
	padding-top:0;
}

.as-pricelist__head {
	background:#fff;
	min-height:auto;
	height:0;
	padding:0;
	border-radius:0;
	overflow:visible;
}

.as-pricelist__head > *:not(.as-pricelist__ring){
	display:none;
}

.as-pricelist__ring{display:none;}

.as-pricelist__head:after{
	content:'ماشین ظرفشویی';
	position:absolute;
	top:-56px;
	right:-1px;
	background:#102441;
	color:#fff;
	font-size:15px;
	font-weight:700;
	padding:18px 28px;
	border-radius:0 12px 0 0;
	min-width:135px;
	text-align:center;
}

.as-pricelist__rows{
	gap:0;
}

.as-pricelist__row{
	min-height:62px;
	border:0;
	border-bottom:1px solid #edf0f4;
	border-radius:0;
	box-shadow:none;
	background:#fff;
}

.as-pricelist__row:last-child{
	border-bottom:0;
}

.as-pricelist__main{
	order:2;
	justify-content:flex-start;
	padding:0 28px;
}

.as-pricelist__bar{
	display:none;
}

.as-pricelist__label{
	font-size:15px;
	font-weight:500;
	color:#697386;
}

.as-pricelist__price{
	order:1;
	width:265px;
	background:#f7f8fb;
	border-left:1px solid #e5e7eb;
	color:#102441;
	padding:0;
	font-size:15px;
	font-weight:700;
}

.as-pricelist__price .as-amount{
	font-size:15px;
	font-weight:700;
	color:#102441;
}

.as-pricelist__price .as-unit{
	display:none;
}

@media(max-width:767px){
	.as-pricelist__price{
		width:120px;
	}
	.as-pricelist__main{
		padding:0 12px;
	}
}


/* اصلاح نهایی لیست قیمت - جدول RTL مطابق طرح فراسرویس */
.as-pricelist { direction:rtl; gap:0; }

.as-pricelist__table-head {
	display:grid;
	grid-template-columns:1fr 265px;
	background:#f7f8fb;
	border:1px solid #e6eaf0;
	border-bottom:0;
	min-height:60px;
	align-items:center;
	font-size:15px;
	font-weight:600;
	color:#3b3b3b;
}

.as-pricelist__head-service {
	grid-column:1;
	text-align:right;
	padding:0 28px;
}

.as-pricelist__head-price {
	grid-column:2;
	text-align:center;
	border-right:1px solid #e6eaf0;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}

.as-pricelist__rows {
	gap:0;
	border:1px solid #e6eaf0;
	border-radius:0 0 12px 12px;
	overflow:hidden;
}

.as-pricelist__row {
	display:grid;
	grid-template-columns:1fr 265px;
	min-height:64px;
	border:0;
	border-bottom:1px solid #e6eaf0;
	border-radius:0;
	box-shadow:none;
	background:#fff;
	gap:0;
}

.as-pricelist__row:last-child { border-bottom:0; }

.as-pricelist__main {
	grid-column:1;
	padding:0 28px;
	display:flex;
	align-items:center;
}

.as-pricelist__bar { display:none; }

.as-pricelist__label {
	width:100%;
	text-align:right;
	font-size:16px;
	color:#666;
	font-weight:500;
	padding:0;
	margin:0;
}

.as-pricelist__price {
	grid-column:2;
	background:#fff;
	color:#172445;
	border-right:1px solid #e6eaf0;
	padding:0;
	display:flex;
	align-items:center;
	justify-content:center;
}

.as-pricelist__price .as-amount {
	font-size:17px;
	font-weight:600;
	color:#172445;
}

.as-pricelist__price .as-unit { display:none; }

@media(max-width:767px){
 .as-pricelist__table-head,.as-pricelist__row{grid-template-columns:1fr 120px}
 .as-pricelist__main{padding:0 12px}
 .as-pricelist__head-service{padding:0 12px}
}
