/* =========================================================
   Tanjant — استایل اصلی
   ساختار: ۱) توکن‌ها ۲) پایه ۳) دکمه‌ها ۴) هدر ۵) فوتر
           ۶) اجزای صفحات (المنتور) ۷) فرم ۸) واکنش‌گرا
   رنگ‌ها را فقط از بخش «توکن‌ها» تغییر بدهید.
   ========================================================= */

/* ---------- ۱) توکن‌ها ---------- */
:root {
	/* رنگ برند — برگرفته از بسته‌بندی تانژانت */
	--tj-magenta: #e5006e;
	--tj-magenta-deep: #9e0049;
	--tj-magenta-glow: #ff3d93;
	--tj-magenta-tint: #fff0f6;

	--tj-ink: #14121a;
	--tj-ink-soft: #241f2e;
	--tj-graphite: #4a4750;
	--tj-steel: #d9d6dc;
	--tj-mist: #f4f2f5;
	--tj-paper: #ffffff;

	/* فونت */
	--tj-font: 'IRANYekan', 'VazirmatnLocal', 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;

	/* اندازه‌ها */
	--tj-max: 1200px;
	--tj-gutter: 20px;
	--tj-radius: 14px;
	--tj-radius-sm: 9px;

	/* سایه */
	--tj-shadow-sm: 0 2px 8px rgba(20, 18, 26, .06);
	--tj-shadow: 0 12px 32px rgba(20, 18, 26, .10);
	--tj-shadow-lg: 0 24px 60px rgba(20, 18, 26, .16);

	--tj-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- ۲) پایه ---------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body.tj-site {
	margin: 0;
	font-family: var(--tj-font);
	font-size: 17px;
	line-height: 1.95;
	color: var(--tj-graphite);
	background: var(--tj-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.tj-site h1,
.tj-site h2,
.tj-site h3,
.tj-site h4 {
	font-family: var(--tj-font);
	color: var(--tj-ink);
	line-height: 1.45;
	font-weight: 800;
	margin: 0 0 .6em;
}

.tj-site h1 { font-size: clamp(1.95rem, 1.15rem + 3.3vw, 3.35rem); letter-spacing: -.01em; }
.tj-site h2 { font-size: clamp(1.5rem, 1.05rem + 2vw, 2.35rem); letter-spacing: -.005em; }
.tj-site h3 { font-size: clamp(1.1rem, .98rem + .6vw, 1.35rem); font-weight: 700; }
.tj-site h4 { font-size: 1.05rem; font-weight: 700; }

.tj-site p { margin: 0 0 1.1em; }
.tj-site a { color: var(--tj-magenta); text-decoration: none; transition: color .2s var(--tj-ease); }
.tj-site a:hover { color: var(--tj-magenta-deep); }
.tj-site img { max-width: 100%; height: auto; display: block; }
.tj-site ul, .tj-site ol { margin: 0 0 1.1em; padding-inline-start: 1.4em; }

/* فوکوس کیبورد — الزامی برای دسترس‌پذیری */
.tj-site :focus-visible {
	outline: 3px solid var(--tj-magenta);
	outline-offset: 3px;
	border-radius: 4px;
}

.tj-skip {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--tj-ink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 8px 0;
}
.tj-skip:focus {
	inset-inline-start: 0;
	color: #fff;
}

.tj-container {
	width: 100%;
	max-width: var(--tj-max);
	margin-inline: auto;
	padding-inline: var(--tj-gutter);
	box-sizing: border-box;
}

.tj-main { display: block; }

/* عدد لاتین در متن راست‌چین */
.tj-site [dir='ltr'] { direction: ltr; unicode-bidi: isolate; }

/* ---------- نشان شورون (امضای بصری برگرفته از لیبل محصول) ---------- */
.tj-chev {
	display: inline-block;
	width: 20px;
	height: 11px;
	background: currentColor;
	clip-path: polygon(0 0, 50% 62%, 100% 0, 100% 38%, 50% 100%, 0 38%);
	vertical-align: middle;
	flex: none;
}

/* ---------- ۳) دکمه‌ها ----------
   نکته مهم: المنتور کلاس‌های سفارشی را روی «قاب بیرونی» ویجت می‌گذارد،
   نه روی خود دکمه. برای همین همه رنگ‌ها با متغیر تعریف شده‌اند تا از
   قاب بیرونی به دکمه داخلی ارث برسند و هر دو حالت درست کار کند. */

.tj-site .tj-btn {
	--btn-bg: var(--tj-magenta);
	--btn-bg-h: var(--tj-magenta-deep);
	--btn-fg: #fff;
	--btn-fg-h: #fff;
	--btn-bd: transparent;
	--btn-bd-h: transparent;
	--btn-sh: 0 6px 18px rgba(229, 0, 110, .22);
	--btn-sh-h: 0 12px 26px rgba(229, 0, 110, .3);
	--btn-pad: 13px 24px;
	--btn-fs: 1rem;
	--btn-w: auto;
}

/* حالت ۱ — دکمه معمولی (هدر، فوتر، فرم) */
.tj-site a.tj-btn,
.tj-site button.tj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: var(--btn-w);
	padding: var(--btn-pad);
	border: 2px solid var(--btn-bd);
	border-radius: 999px;
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--tj-font);
	font-size: var(--btn-fs);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	box-shadow: var(--btn-sh);
	transition: transform .18s var(--tj-ease), box-shadow .18s var(--tj-ease),
		background-color .18s var(--tj-ease), color .18s var(--tj-ease), border-color .18s var(--tj-ease);
}
.tj-site a.tj-btn:hover,
.tj-site button.tj-btn:hover {
	background: var(--btn-bg-h);
	color: var(--btn-fg-h);
	border-color: var(--btn-bd-h);
	box-shadow: var(--btn-sh-h);
	transform: translateY(-2px);
}
.tj-site a.tj-btn:active,
.tj-site button.tj-btn:active { transform: translateY(0); }

/* حالت ۲ — ویجت دکمه المنتور */
.tj-site .elementor-widget.tj-btn {
	width: auto;
	align-self: flex-start;
}
.tj-site .elementor-widget.tj-btn .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: var(--btn-w);
	padding: var(--btn-pad);
	border: 2px solid var(--btn-bd);
	border-radius: 999px;
	background-color: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--tj-font);
	font-size: var(--btn-fs);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	box-shadow: var(--btn-sh);
	transition: transform .18s var(--tj-ease), box-shadow .18s var(--tj-ease),
		background-color .18s var(--tj-ease), color .18s var(--tj-ease), border-color .18s var(--tj-ease);
}
.tj-site .elementor-widget.tj-btn .elementor-button:hover,
.tj-site .elementor-widget.tj-btn .elementor-button:focus {
	background-color: var(--btn-bg-h);
	color: var(--btn-fg-h);
	border-color: var(--btn-bd-h);
	box-shadow: var(--btn-sh-h);
	transform: translateY(-2px);
}

/* رنگ‌بندی‌ها — فقط متغیر تعریف می‌کنند، پس روی هر دو حالت کار می‌کنند */
.tj-site .tj-btn--primary {
	--btn-bg: var(--tj-magenta);
	--btn-bg-h: var(--tj-magenta-deep);
	--btn-fg: #fff;
	--btn-fg-h: #fff;
}
.tj-site .tj-btn--dark {
	--btn-bg: var(--tj-ink);
	--btn-bg-h: #000;
	--btn-fg: #fff;
	--btn-fg-h: #fff;
	--btn-sh: 0 6px 18px rgba(20, 18, 26, .22);
	--btn-sh-h: 0 12px 26px rgba(20, 18, 26, .32);
}
.tj-site .tj-btn--ghost {
	--btn-bg: transparent;
	--btn-bg-h: transparent;
	--btn-fg: var(--tj-ink);
	--btn-fg-h: var(--tj-magenta);
	--btn-bd: var(--tj-steel);
	--btn-bd-h: var(--tj-magenta);
	--btn-sh: none;
	--btn-sh-h: none;
}
.tj-site .tj-btn--onink {
	--btn-bg: transparent;
	--btn-bg-h: #fff;
	--btn-fg: #fff;
	--btn-fg-h: var(--tj-ink);
	--btn-bd: rgba(255, 255, 255, .4);
	--btn-bd-h: #fff;
	--btn-sh: none;
	--btn-sh-h: none;
}
.tj-site .tj-btn--lg { --btn-pad: 16px 34px; --btn-fs: 1.05rem; }
.tj-site .tj-btn--block { --btn-w: 100%; }
.tj-site .elementor-widget.tj-btn--block { width: 100%; align-self: stretch; }
.tj-site a.tj-btn--block, .tj-site button.tj-btn--block { display: flex; }

.tj-btn__num { font-weight: 800; letter-spacing: .02em; }
.tj-btn__label { display: inline; }

/* ---------- ۴) هدر ---------- */
.tj-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--tj-paper);
}

/* نوار بالایی */
.tj-topbar {
	background: var(--tj-ink);
	color: rgba(255, 255, 255, .82);
	font-size: .875rem;
}
.tj-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 42px;
	flex-wrap: wrap;
}
.tj-topbar__label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: #fff;
	font-weight: 700;
	letter-spacing: .01em;
}
.tj-topbar__label .tj-chev { color: var(--tj-magenta-glow); }

.tj-topbar__phones {
	display: flex;
	align-items: center;
	gap: 6px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.tj-site .tj-topbar__phone {
	color: rgba(255, 255, 255, .86);
	font-weight: 600;
	font-size: .9rem;
	letter-spacing: .02em;
}
.tj-site .tj-topbar__phone:hover { color: var(--tj-magenta-glow); }

/* نوار اصلی */
.tj-navbar {
	background: var(--tj-paper);
	border-bottom: 1px solid var(--tj-steel);
	transition: box-shadow .25s var(--tj-ease);
}
.tj-header.is-stuck .tj-navbar { box-shadow: var(--tj-shadow); }

.tj-navbar__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 78px;
}

.tj-brand { flex: none; }
.tj-site .tj-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--tj-ink);
}
.tj-brand__mark { color: var(--tj-magenta); display: inline-flex; }
.tj-brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.tj-brand__text strong { font-size: 1.12rem; font-weight: 800; }
.tj-brand__text em {
	font-style: normal;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--tj-magenta);
	direction: ltr;
}
.tj-brand .custom-logo { max-height: 54px; width: auto; }

/* منوی دسکتاپ */
.tj-nav { margin-inline-start: auto; }
.tj-site .tj-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tj-site .tj-menu > li { position: relative; }
.tj-site .tj-menu > li > a {
	display: block;
	padding: 10px 14px;
	color: var(--tj-ink);
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
}
.tj-site .tj-menu > li > a:hover { color: var(--tj-magenta); background: var(--tj-magenta-tint); }
.tj-site .tj-menu > li.current-menu-item > a,
.tj-site .tj-menu > li.current_page_item > a { color: var(--tj-magenta); }
.tj-site .tj-menu > li.current-menu-item > a::after,
.tj-site .tj-menu > li.current_page_item > a::after {
	content: '';
	display: block;
	height: 3px;
	border-radius: 3px;
	background: var(--tj-magenta);
	margin-top: 4px;
}

/* زیرمنو */
.tj-site .tj-menu .sub-menu {
	position: absolute;
	inset-inline-start: 0;
	top: calc(100% + 6px);
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--tj-steel);
	border-radius: var(--tj-radius-sm);
	box-shadow: var(--tj-shadow);
	list-style: none;
	margin: 0;
	padding: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s var(--tj-ease), transform .18s var(--tj-ease), visibility .18s;
}
.tj-site .tj-menu > li:hover > .sub-menu,
.tj-site .tj-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.tj-site .tj-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	color: var(--tj-ink);
	font-size: .95rem;
}
.tj-site .tj-menu .sub-menu a:hover { background: var(--tj-magenta-tint); color: var(--tj-magenta); }

.tj-navbar__actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* دکمه همبرگر */
.tj-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--tj-steel);
	border-radius: 11px;
	background: #fff;
	cursor: pointer;
	margin-inline-start: auto;
}
.tj-burger span {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--tj-ink);
	border-radius: 2px;
	transition: transform .25s var(--tj-ease), opacity .2s var(--tj-ease);
}
.tj-burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tj-burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.tj-burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* کشوی موبایل */
.tj-drawer {
	display: none;
	background: #fff;
	border-bottom: 1px solid var(--tj-steel);
	box-shadow: var(--tj-shadow);
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.tj-drawer.is-open { display: block; }
.tj-drawer__inner { padding: 14px var(--tj-gutter) 26px; }

.tj-site .tj-drawer__menu { list-style: none; margin: 0 0 18px; padding: 0; }
.tj-site .tj-drawer__menu li { border-bottom: 1px solid var(--tj-mist); }
.tj-site .tj-drawer__menu a {
	display: block;
	padding: 14px 4px;
	color: var(--tj-ink);
	font-weight: 700;
	font-size: 1.05rem;
}
.tj-site .tj-drawer__menu a:hover { color: var(--tj-magenta); }
.tj-site .tj-drawer__menu .sub-menu { list-style: none; margin: 0 0 8px; padding-inline-start: 14px; }
.tj-site .tj-drawer__menu .sub-menu a { font-weight: 500; font-size: .98rem; padding: 10px 4px; }

.tj-drawer__contact { background: var(--tj-mist); border-radius: var(--tj-radius); padding: 16px; }
.tj-drawer__title { margin: 0 0 8px; font-weight: 800; color: var(--tj-ink); font-size: .95rem; }
.tj-drawer__contact ul { list-style: none; margin: 0 0 14px; padding: 0; }
.tj-site .tj-drawer__phone {
	display: block;
	padding: 7px 0;
	color: var(--tj-ink);
	font-weight: 700;
	letter-spacing: .03em;
}
.tj-site .tj-drawer__phone:hover { color: var(--tj-magenta); }

/* ---------- ۵) فوتر ---------- */
.tj-footer {
	background: var(--tj-ink);
	color: rgba(255, 255, 255, .72);
	margin-top: 0;
	font-size: .96rem;
}
.tj-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 36px;
	padding-block: 60px 44px;
}
.tj-footer__logo {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 12px;
}
.tj-footer__desc { margin: 0 0 18px; line-height: 2; max-width: 42ch; }

.tj-site .tj-footer__title {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 255, 255, .12);
}
.tj-site .tj-footer__menu,
.tj-site .tj-footer__contact,
.tj-site .tj-social {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}
.tj-site .tj-footer__menu a,
.tj-site .tj-footer__contact a {
	display: inline-block;
	padding: 5px 0;
	color: rgba(255, 255, 255, .76);
}
.tj-site .tj-footer__menu a:hover,
.tj-site .tj-footer__contact a:hover { color: var(--tj-magenta-glow); }
.tj-site .tj-footer__phone { font-weight: 700; letter-spacing: .03em; }

.tj-footer__hours { margin: 10px 0 0; font-size: .88rem; color: rgba(255, 255, 255, .55); }
.tj-footer__address { font-style: normal; line-height: 2.05; margin: 0 0 12px; }

.tj-social { display: flex; gap: 8px; flex-wrap: wrap; }
.tj-site .tj-social a {
	display: inline-block;
	padding: 7px 15px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .8);
}
.tj-site .tj-social a:hover { background: var(--tj-magenta); border-color: var(--tj-magenta); color: #fff; }

.tj-site .tj-link-arrow { color: var(--tj-magenta-glow); font-weight: 700; font-size: .92rem; }
.tj-site .tj-link-arrow::after { content: ' ←'; }

.tj-footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); }
.tj-footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding-block: 18px;
	font-size: .85rem;
	color: rgba(255, 255, 255, .5);
}
.tj-footer__bar p { margin: 0; }

/* دکمه بازگشت به بالا */
.tj-totop {
	position: fixed;
	inset-block-end: 22px;
	inset-inline-end: 22px;
	z-index: 800;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: var(--tj-ink);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--tj-shadow);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .25s var(--tj-ease), transform .25s var(--tj-ease), background-color .2s;
}
.tj-totop.is-visible { opacity: 1; transform: translateY(0); }
.tj-totop:hover { background: var(--tj-magenta); }

/* =========================================================
   ۶) اجزای صفحات — این کلاس‌ها را در المنتور به بخش‌ها می‌دهید
   ========================================================= */

/* بخش‌ها */
.tj-site .tj-sec { padding-block: clamp(48px, 6vw, 86px); }
.tj-site .tj-sec--tight { padding-block: clamp(34px, 4vw, 56px); }
.tj-site .tj-sec--mist { background: var(--tj-mist); }
.tj-site .tj-sec--ink { background: var(--tj-ink); }
.tj-site .tj-sec--magenta { background: var(--tj-magenta); }

.tj-site .tj-sec--ink h1,
.tj-site .tj-sec--ink h2,
.tj-site .tj-sec--ink h3,
.tj-site .tj-sec--ink .elementor-heading-title,
.tj-site .tj-sec--magenta h1,
.tj-site .tj-sec--magenta h2,
.tj-site .tj-sec--magenta h3,
.tj-site .tj-sec--magenta .elementor-heading-title { color: #fff; }
.tj-site .tj-sec--ink p,
.tj-site .tj-sec--ink li,
.tj-site .tj-sec--magenta p,
.tj-site .tj-sec--magenta li { color: rgba(255, 255, 255, .85); }

/* داخل کارت سفید روی زمینه تیره، رنگ‌ها برمی‌گردند */
.tj-site .tj-sec--mist .tj-card p,
.tj-site .tj-sec--mist .tj-card li { color: var(--tj-graphite); }

/* عنوان کوچک بالای تیتر (سبک لیبل محصول) */
.tj-site .tj-eyebrow,
.tj-site .tj-eyebrow .elementor-heading-title {
	display: block;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1.7;
	letter-spacing: .16em;
	color: var(--tj-magenta);
}
.tj-site .tj-eyebrow { margin-bottom: 10px; }

/* شورون کوچک — یک بار برای حالت المنتور، یک بار برای HTML ساده */
.tj-site .tj-eyebrow .elementor-heading-title::before,
.tj-site .tj-eyebrow:not(.elementor-widget)::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 10px;
	margin-inline-end: 9px;
	background: currentColor;
	clip-path: polygon(0 0, 50% 62%, 100% 0, 100% 38%, 50% 100%, 0 38%);
	vertical-align: middle;
}
.tj-site .tj-sec--ink .tj-eyebrow,
.tj-site .tj-sec--ink .tj-eyebrow .elementor-heading-title,
.tj-site .tj-sec--magenta .tj-eyebrow,
.tj-site .tj-sec--magenta .tj-eyebrow .elementor-heading-title { color: #fff; }

/* متن مقدمه */
.tj-site .tj-lead,
.tj-site .tj-lead p {
	font-size: clamp(1.02rem, .97rem + .3vw, 1.15rem);
	line-height: 2.1;
	color: var(--tj-graphite);
}
.tj-site .tj-lead { max-width: 62ch; }
.tj-site .tj-sec--ink .tj-lead,
.tj-site .tj-sec--ink .tj-lead p,
.tj-site .tj-sec--magenta .tj-lead,
.tj-site .tj-sec--magenta .tj-lead p { color: rgba(255, 255, 255, .88); }

/* ---------- هیرو ---------- */
.tj-site .tj-hero { position: relative; overflow: hidden; background: var(--tj-paper); }
.tj-site .tj-hero::before {
	content: '';
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: min(50%, 700px);
	background: var(--tj-magenta);
	clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%);
	z-index: 0;
}
.tj-site .tj-hero .elementor-widget-image { position: relative; z-index: 1; }
.tj-site .tj-hero > .elementor-container,
.tj-site .tj-hero > .e-con-inner { position: relative; z-index: 1; }

.tj-site .tj-hero__media img {
	border-radius: var(--tj-radius);
	box-shadow: var(--tj-shadow-lg);
	width: 100%;
}

.tj-site .tj-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--tj-ink);
	color: #fff;
	font-size: .82rem;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}

/* ---------- کارت‌ها ----------
   کلاس tj-card را در المنتور روی «ستون» می‌گذارید. */
.tj-site .tj-card {
	--card-pad-y: 26px;
	--card-pad-x: 24px;
	position: relative;
	background: #fff;
	border: 1px solid var(--tj-steel);
	border-radius: var(--tj-radius);
	padding: var(--card-pad-y) var(--card-pad-x) 28px;
	box-shadow: var(--tj-shadow-sm);
	transition: transform .25s var(--tj-ease), box-shadow .25s var(--tj-ease), border-color .25s var(--tj-ease);
	box-sizing: border-box;
	overflow: hidden;
}
.tj-site .tj-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tj-shadow);
	border-color: var(--tj-magenta);
}
.tj-site .tj-card h3 { margin-bottom: .4em; }
.tj-site .tj-card p { font-size: .97rem; line-height: 2; }

/* حذف پدینگ پیش‌فرض ستون المنتور داخل کارت */
.tj-site .elementor-column.tj-card > .elementor-element-populated,
.tj-site .elementor-column.tj-card > .elementor-widget-wrap,
.tj-site .elementor-column.tj-card > .elementor-column-wrap { padding: 0; }

/* نوار شورون بالای کارت — امضای بصری برگرفته از لیبل محصول */
.tj-site .tj-card--chev::before {
	content: '';
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: var(--card-pad-x);
	width: 46px;
	height: 6px;
	background: var(--tj-magenta);
	clip-path: polygon(0 0, 100% 0, 78% 100%, 22% 100%);
	z-index: 2;
}

/* کارت محصول — تصویر تا لبه کارت کشیده می‌شود */
.tj-site .tj-card--product .elementor-widget-image {
	margin: calc(var(--card-pad-y) * -1) calc(var(--card-pad-x) * -1) 20px;
	padding: 18px;
	background: var(--tj-magenta);
	text-align: center;
}
.tj-site .tj-card--product .elementor-widget-image img {
	max-height: 250px;
	width: auto;
	margin-inline: auto;
	border-radius: var(--tj-radius-sm);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

/* کارت روی زمینه تیره */
.tj-site .tj-sec--ink .tj-card {
	background: var(--tj-ink-soft);
	border-color: rgba(255, 255, 255, .12);
	box-shadow: none;
}
.tj-site .tj-sec--ink .tj-card h3 { color: #fff; }
.tj-site .tj-sec--ink .tj-card p { color: rgba(255, 255, 255, .74); }

/* ---------- آمار ---------- */
.tj-site .tj-stat { text-align: center; }
.tj-site .tj-stat__num {
	display: block;
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--tj-magenta);
	letter-spacing: -.02em;
}
.tj-site .tj-sec--ink .tj-stat__num,
.tj-site .tj-sec--magenta .tj-stat__num { color: #fff; }
.tj-site .tj-stat__label { display: block; font-size: .92rem; font-weight: 600; }

/* ---------- فهرست تیک‌دار ---------- */
.tj-site .tj-list-check { list-style: none; margin: 0 0 1.2em; padding: 0; }
.tj-site .tj-list-check li {
	position: relative;
	padding-inline-start: 30px;
	margin-bottom: 12px;
	line-height: 1.95;
}
.tj-site .tj-list-check li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: .72em;
	width: 16px;
	height: 9px;
	background: var(--tj-magenta);
	clip-path: polygon(0 0, 50% 62%, 100% 0, 100% 38%, 50% 100%, 0 38%);
}
.tj-site .tj-sec--ink .tj-list-check li::before,
.tj-site .tj-sec--magenta .tj-list-check li::before { background: #fff; }

/* ---------- برچسب‌های کاربرد ---------- */
.tj-site .tj-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.tj-site .tj-tags li {
	padding: 9px 18px;
	border: 1px solid var(--tj-steel);
	border-radius: 999px;
	background: #fff;
	font-size: .93rem;
	font-weight: 600;
	color: var(--tj-ink);
}

/* ---------- جدول مشخصات ---------- */
.tj-site .tj-spec { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--tj-radius); overflow: hidden; }
.tj-site .tj-spec th,
.tj-site .tj-spec td { padding: 14px 18px; text-align: start; border-bottom: 1px solid var(--tj-steel); font-size: .97rem; }
.tj-site .tj-spec th { background: var(--tj-mist); font-weight: 700; color: var(--tj-ink); width: 38%; }
.tj-site .tj-spec tr:last-child th,
.tj-site .tj-spec tr:last-child td { border-bottom: none; }

/* ---------- کارت اطلاعات تماس ---------- */
.tj-site .tj-info {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--tj-steel);
	border-radius: var(--tj-radius);
	padding: 22px;
	height: 100%;
	box-sizing: border-box;
}
.tj-site .tj-info__icon {
	flex: none;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--tj-magenta-tint);
	color: var(--tj-magenta);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 800;
}
.tj-site .tj-info h3 { font-size: 1rem; margin-bottom: .35em; }
.tj-site .tj-info p, .tj-site .tj-info a { font-size: .97rem; margin-bottom: 4px; }
.tj-site .tj-info a { display: block; font-weight: 700; letter-spacing: .03em; color: var(--tj-ink); }
.tj-site .tj-info a:hover { color: var(--tj-magenta); }

/* ---------- نوار فراخوان ---------- */
.tj-site .tj-cta-band { position: relative; overflow: hidden; }
.tj-site .tj-cta-band::after {
	content: '';
	position: absolute;
	inset-block: -30%;
	inset-inline-end: -6%;
	width: 320px;
	background: rgba(255, 255, 255, .07);
	clip-path: polygon(30% 0, 100% 0, 70% 50%, 100% 100%, 30% 100%, 60% 50%);
	pointer-events: none;
}

/* ---------- نقشه ---------- */
.tj-site .tj-map iframe,
.tj-site .tj-map .elementor-widget-container iframe {
	width: 100%;
	min-height: 340px;
	border: 0;
	border-radius: var(--tj-radius);
	display: block;
}

/* ---------- انیمیشن ظاهر شدن ---------- */
.tj-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s var(--tj-ease), transform .6s var(--tj-ease);
}
.tj-reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   ۷) فرم تماس
   ========================================================= */
.tj-form-wrap { max-width: 760px; }

.tj-alert {
	border-radius: var(--tj-radius-sm);
	padding: 15px 18px;
	margin-bottom: 22px;
	font-weight: 600;
	font-size: .98rem;
	border: 1px solid transparent;
}
.tj-alert--success { background: #e8f7ee; border-color: #a9dfbf; color: #14663a; }
.tj-alert--error { background: var(--tj-magenta-tint); border-color: #f6b7d0; color: var(--tj-magenta-deep); }

/* Honeypot — از دید کاربر و صفحه‌خوان پنهان */
.tj-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.tj-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.tj-field { margin: 0 0 18px; display: flex; flex-direction: column; }
.tj-field--full { grid-column: 1 / -1; }
.tj-field label { font-weight: 700; font-size: .93rem; color: var(--tj-ink); margin-bottom: 8px; }
.tj-req { color: var(--tj-magenta); }

.tj-site .tj-form input[type='text'],
.tj-site .tj-form input[type='tel'],
.tj-site .tj-form input[type='email'],
.tj-site .tj-form select,
.tj-site .tj-form textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--tj-steel);
	border-radius: var(--tj-radius-sm);
	background: #fff;
	font-family: var(--tj-font);
	font-size: 1rem;
	color: var(--tj-ink);
	box-sizing: border-box;
	transition: border-color .18s var(--tj-ease), box-shadow .18s var(--tj-ease);
}
.tj-site .tj-form input:focus,
.tj-site .tj-form select:focus,
.tj-site .tj-form textarea:focus {
	border-color: var(--tj-magenta);
	box-shadow: 0 0 0 3px rgba(229, 0, 110, .13);
	outline: none;
}
.tj-site .tj-form textarea { resize: vertical; min-height: 130px; line-height: 1.9; }
.tj-form-note { font-size: .87rem; color: var(--tj-graphite); margin: 14px 0 0; }

/* =========================================================
   ۸) واکنش‌گرا
   ========================================================= */
@media (max-width: 1024px) {
	.tj-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
	:root { --tj-gutter: 16px; }

	.tj-nav { display: none; }
	.tj-burger { display: flex; }
	.tj-navbar__actions { margin-inline-start: auto; }
	.tj-navbar__inner { min-height: 66px; gap: 12px; }

	.tj-btn__label { display: none; }
	.tj-site .tj-btn--icon span:not(.tj-chev) { display: none; }
	.tj-site .tj-btn--icon { padding: 12px 14px; }

	.tj-topbar__inner { justify-content: center; min-height: 38px; padding-block: 6px; }
	.tj-topbar__label { display: none; }
	.tj-topbar__phones { justify-content: center; gap: 4px 14px; }

	.tj-site .tj-hero::before { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 62%, 0 74%); }
}

@media (max-width: 680px) {
	body.tj-site { font-size: 16px; line-height: 1.9; }

	html { scroll-padding-top: 100px; }

	.tj-brand__text strong { font-size: 1rem; }
	.tj-brand__text em { font-size: .6rem; letter-spacing: .14em; }

	.tj-site .tj-btn { padding: 12px 18px; font-size: .95rem; }
	.tj-site .tj-btn--lg { padding: 14px 24px; font-size: 1rem; }
	.tj-site .tj-btn--block { width: 100%; }

	.tj-form-grid { grid-template-columns: 1fr; }

	.tj-footer__grid { grid-template-columns: 1fr; gap: 26px; padding-block: 44px 30px; }
	.tj-footer__bar-inner { justify-content: center; text-align: center; }

	.tj-site .tj-card { --card-pad-y: 22px; --card-pad-x: 18px; padding: 22px 18px 24px; }
	.tj-site .tj-card--product .elementor-widget-image img { max-height: 210px; }

	.tj-totop { inset-block-end: 16px; inset-inline-end: 16px; width: 44px; height: 44px; }

	.tj-site .tj-spec th, .tj-site .tj-spec td { padding: 11px 13px; font-size: .92rem; }
	.tj-site .tj-spec th { width: 42%; }

	.tj-site .tj-info { flex-direction: column; gap: 12px; padding: 18px; }
}

/* دکمه تماس هدر: روی موبایل فقط شماره، روی صفحه خیلی کوچک فقط متن */
@media (max-width: 900px) {
	.tj-btn__label { display: none; }
	.tj-btn__num { font-size: .92rem; }
}

@media (max-width: 420px) {
	.tj-btn__num { display: none; }
	.tj-btn__label { display: inline; }
}

/* =========================================================
   احترام به تنظیم «کاهش حرکت» و چاپ
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.tj-site *,
	.tj-site *::before,
	.tj-site *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.tj-reveal { opacity: 1; transform: none; }
}

@media print {
	.tj-header, .tj-totop, .tj-drawer, .tj-footer__bar { display: none !important; }
	body.tj-site { color: #000; }
}
