:root {
	--orange: #ffb100;
	--orange-2: #ffa01c;
	--dark: #1a1a1a;
	--ink: #222;
	--muted: #616161;
	--line: #eaeaea;
	--soft: #f4f4f4;
	--white: #fff;
	--container: 1290px;
	--header-container: 1612px;
	--inner-banner-height: clamp(140px, 26.0417vw, 500px);
	--shadow: 0 15px 30px rgba(119, 123, 146, .10);
}

* { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease; }
a:hover { color: var(--orange-2); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; }
p { color: var(--muted); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.screen-reader-text, .skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 12px 30px;
	border: 1px solid transparent;
	border-radius: 0;
	font-weight: 700;
	line-height: 1.1;
	cursor: pointer;
}
.button--orange { background: var(--orange); color: #202020; }
.button--orange:hover { background: var(--orange-2); color: #202020; }
.button--light { background: #fff; color: #202020; }
.button--light:hover { background: var(--orange); color: #202020; }
.button--ghost { border-color: rgba(255,255,255,.72); background: transparent; color: #fff; }
.button--ghost:hover { background: #fff; color: #202020; }

.site-header {
	position: relative;
	z-index: 20;
	width: 100%;
	background: #fff;
	box-shadow: none;
}
.site-main { padding-top: 0; }
.site-topbar {
	background: #1a1a1a;
	color: rgba(255,255,255,.78);
	font-size: 13px;
}
.site-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 32px), var(--header-container));
	min-height: 38px;
	gap: 20px;
}
.site-topbar__inner > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.topbar-links { display: flex; flex: 0 0 auto; align-items: center; gap: 20px; }
.site-topbar a { color: rgba(255,255,255,.82); }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 32px), var(--header-container));
	min-height: 100px;
	gap: 16px;
}
.site-brand { display: inline-flex; flex: 0 0 190px; align-items: center; gap: 12px; min-width: 0; overflow: hidden; }
.site-brand__logo { width: 150px; height: auto; }
.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--orange);
	color: #202020;
	font-size: 20px;
	font-weight: 900;
}
.site-brand__text strong { display: block; color: var(--ink); font-size: 22px; font-weight: 800; white-space: nowrap; }
.site-brand__text small { display: block; color: var(--muted); font-size: 12px; letter-spacing: .02em; white-space: nowrap; }
.custom-logo { width: auto; max-width: 210px; max-height: 62px; }
.site-nav { display: flex; flex: 1 1 auto; min-width: 0; align-items: center; justify-content: flex-end; gap: 12px; }
.menu, .submenu, .footer-menu, .contact-list { padding: 0; margin: 0; list-style: none; }
.menu { display: flex; flex: 1 1 auto; min-width: 0; align-items: center; justify-content: flex-end; gap: 20px; }
.menu-item { position: relative; }
.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #222;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
}
.menu > li:first-child > a { color: var(--orange-2); }
.menu a:hover { color: var(--orange-2); }
.menu-item--has-dropdown > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}
.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 50;
	display: grid;
	min-width: 230px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 0);
	transition: opacity .18s ease;
}
.menu-item:hover .submenu,
.menu-item:focus-within .submenu {
	opacity: 1;
	pointer-events: auto;
}
.submenu a { display: block; min-height: 0; padding: 8px 10px; color: #333; font-size: 14px; }
.submenu-toggle { display: none; }
.header-quote {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 0;
	background: var(--orange);
	color: #202020;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}
.header-language-switcher--mobile { display: none; flex: 0 0 auto; }
.language-select {
	width: 160px;
	max-width: 100%;
	min-height: 42px;
	padding: 0 34px 0 12px;
	border: 1px solid var(--line);
	background: #fff;
	color: #202020;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

@media (max-width: 1500px) {
	.site-brand { flex-basis: 150px; }
	.site-brand__logo { width: 132px; }
	.site-nav { gap: 10px; }
	.menu { gap: 13px; }
	.menu a { font-size: 14px; }
	.header-quote { padding-inline: 14px; }
	.language-select { width: 145px; font-size: 13px; }
}
.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #555;
	font-size: 19px;
	line-height: 1;
}
.header-icon--search::before {
	content: "";
	width: 14px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 50%;
}
.header-icon--search::after {
	content: "";
	position: absolute;
	right: 2px;
	bottom: 3px;
	width: 8px;
	border-top: 2px solid currentColor;
	transform: rotate(45deg);
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; }
.nav-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; margin: 4px auto; background: #202020; }

.home-hero {
	position: relative;
	min-height: 727px;
	color: #fff;
	text-align: center;
	isolation: isolate;
	overflow: hidden;
}
.home-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	min-height: inherit;
	background-position: center;
	background-size: cover;
	opacity: 0;
	pointer-events: none;
	transition: opacity .55s ease;
}
.home-hero__slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}
.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(235, 107, 21, .35) 0%, rgba(18, 21, 25, .30) 48%, rgba(18, 21, 25, .48) 100%),
		rgba(18, 21, 25, .35);
}
.home-hero__inner {
	position: relative;
	z-index: 1;
	padding: 120px 0;
}
.home-hero p {
	margin-bottom: 12px;
	color: #fff;
	font-size: clamp(22px, 1.35vw, 25px);
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 2px 4px 3px rgba(0,0,0,.25);
}
.home-hero h1 {
	max-width: 1200px;
	margin: 0 auto 24px;
	color: #fff;
	font-size: clamp(42px, 4.2vw, 76px);
	font-weight: 900;
	line-height: 1.12;
	text-shadow: 2px 4px 3px rgba(0,0,0,.25);
}
.home-hero__text {
	max-width: 820px;
	margin: 0 auto 38px;
	color: rgba(255,255,255,.92);
	font-size: 18px;
	font-weight: 600;
	text-shadow: 1px 2px 2px rgba(0,0,0,.22);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.home-hero .button { min-height: 64px; padding: 18px 38px; background: #fff; color: #202020; }
.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 62px;
	height: 62px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	cursor: pointer;
	transform: translateY(-50%);
}
.hero-arrow::before {
	content: "";
	position: absolute;
	top: 21px;
	width: 18px;
	height: 18px;
	border-top: 2px solid #1a1a1a;
	border-left: 2px solid #1a1a1a;
}
.hero-arrow--prev { left: 64px; }
.hero-arrow--next { right: 64px; }
.hero-arrow--prev::before { left: 25px; transform: rotate(-45deg); }
.hero-arrow--next::before { right: 25px; transform: rotate(135deg); }
.home-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 32px;
	z-index: 3;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}
.home-hero__dots button {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 2px solid rgba(255,255,255,.86);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}
.home-hero__dots button.is-active { background: #fff; }

.feature-strip { background: #fff; }
.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	padding: 34px 0;
}
.feature-grid article {
	padding: 10px 26px;
	border-right: 1px solid var(--line);
	text-align: center;
}
.feature-grid article:last-child { border-right: 0; }
.feature-grid strong { display: block; margin-bottom: 6px; font-size: 18px; }
.feature-grid span { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; }

.section { padding-block: 78px; }
.section-heading { margin-bottom: 36px; }
.section-heading--center { text-align: center; }
.section-heading p, .section-kicker {
	margin-bottom: 8px;
	color: var(--orange-2);
	font-weight: 800;
	text-transform: uppercase;
}
.section-heading h2 {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 0;
	color: var(--ink);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
}
.section-heading h2::before,
.section-heading h2::after {
	content: "";
	width: 50px;
	border-top: 4px solid var(--orange);
}
.section-heading--watermark {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
}
.section-heading--watermark p {
	margin: 0;
	color: #f4f4f4;
	font-size: clamp(48px, 5vw, 80px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.section-heading--watermark h2 {
	margin-top: -70px;
	margin-bottom: 0;
	font-size: clamp(32px, 3.5vw, 56px);
}

.category-section {
	padding: 20px 0 60px;
	background: #fff;
}
.category-carousel {
	position: relative;
	padding-inline: 56px;
}
.category-window {
	overflow: hidden;
}
.category-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 100px) / 6);
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.category-grid::-webkit-scrollbar {
	display: none;
}
.category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 0 0 24px;
	background: #fff;
	border-radius: 3px;
	scroll-snap-align: start;
	text-align: center;
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}
.category-card:hover { transform: translateY(-10px); }
.category-card img {
	width: min(180px, 100%);
	aspect-ratio: 1;
	object-fit: cover;
	background: var(--soft);
}
.category-card span {
	color: var(--ink);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.45;
}
.category-arrow {
	position: absolute;
	top: 90px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .96);
	box-shadow: var(--shadow);
	cursor: pointer;
	transform: translateY(-50%);
}
.category-arrow::before {
	content: "";
	position: absolute;
	top: 14px;
	width: 14px;
	height: 14px;
	border-top: 2px solid var(--ink);
	border-left: 2px solid var(--ink);
}
.category-arrow:hover {
	border-color: var(--orange);
	background: var(--orange);
}
.category-arrow--prev { left: 0; }
.category-arrow--next { right: 0; }
.category-arrow--prev::before { left: 17px; transform: rotate(-45deg); }
.category-arrow--next::before { right: 17px; transform: rotate(135deg); }

.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
	gap: 58px;
	align-items: center;
}
.about-copy h2 {
	margin-bottom: 26px;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
}
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 34px; list-style: none; color: var(--muted); }
.check-list li { position: relative; padding-left: 24px; }
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .72em;
	width: 9px;
	height: 9px;
	background: var(--orange);
}
.about-media { position: relative; padding: 0 28px 28px 0; }
.about-media::after {
	content: "";
	position: absolute;
	top: 30px;
	right: 0;
	bottom: 0;
	width: 80%;
	background: var(--orange);
	z-index: -1;
}
.about-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.benefits-section {
	padding: 100px 0 60px;
	background: #fff;
}
.benefits-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 1.12fr);
	gap: 64px;
	align-items: center;
	box-shadow: 0 15px 30px rgba(119, 123, 146, .10);
}
.benefits-copy { padding: 72px 0 72px 64px; }
.benefits-copy .section-kicker {
	margin-bottom: 12px;
	color: var(--orange);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
}
.benefits-copy h2 {
	max-width: 640px;
	margin-bottom: 42px;
	color: var(--dark);
	font-size: clamp(38px, 3.5vw, 67px);
	font-weight: 900;
	line-height: 1.04;
	text-transform: uppercase;
}
.benefits-copy p {
	max-width: 680px;
	margin-bottom: 28px;
	color: #616161;
	font-size: 20px;
	line-height: 1.65;
}
.progress-list {
	display: grid;
	gap: 18px;
	margin: 30px 0 56px;
}
.progress-item div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	color: #1a1a1a;
	font-size: 20px;
}
.progress-item span { color: #777; font-weight: 400; }
.progress-item i {
	position: relative;
	display: block;
	height: 10px;
	overflow: hidden;
	border-radius: 99px;
	background: #e8e8e8;
}
.progress-item i::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--value);
	border-radius: inherit;
	background: var(--orange);
}
.benefits-media {
	padding: 36px 36px 36px 0;
	background: var(--orange);
}
.benefits-media img {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
	object-position: center;
}

.product-showcase {
	padding: 60px 0;
	background: #fafbfc;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}
.product-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
	overflow: hidden;
	background: #f2f5f7;
	border: 1px solid var(--line);
	border-radius: 3px;
	transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.product-card__media { display: block; background: #fff; }
.product-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card__body { padding: 16px 14px 18px; text-align: center; }
.eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 14px;
}
.product-card h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.35; }
.product-card h3 a { color: var(--ink); }
.product-card h3 a:hover { color: var(--orange-2); }
.product-card p { margin-bottom: 12px; font-size: 14px; }
.product-card__model { color: var(--orange-2); font-weight: 700; }
.product-card__actions { display: flex; justify-content: center; gap: 8px; }
.product-card__actions a,
.product-card__actions button {
	min-height: 34px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}
.product-card__actions button { border-color: var(--orange); background: var(--orange); }
.section-more { margin-top: 42px; text-align: center; }

.testimonial-section {
	position: relative;
	overflow: hidden;
	padding: 60px 0 80px;
	background-color: #f5f5f5;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	isolation: isolate;
}
.testimonial-section__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, .79);
}
.testimonial-heading { margin-bottom: 40px; }
.testimonial-heading p { color: rgba(255, 255, 255, .9); }
.testimonial-heading h2 {
	color: #1a1a1a;
	text-transform: uppercase;
}
.testimonial-carousel {
	position: relative;
}
.testimonial-window {
	overflow: hidden;
}
.testimonial-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 40px) / 3);
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
	display: flex;
	flex-direction: column;
	min-height: 400px;
	padding: 34px 32px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .04);
	scroll-snap-align: start;
}
.testimonial-stars {
	margin-bottom: 36px;
	color: #f0bc00;
	font-size: 22px;
	letter-spacing: 0;
	line-height: 1;
}
.testimonial-card p {
	margin-bottom: auto;
	color: #555;
	font-size: 22px;
	line-height: 1.65;
}
.testimonial-card strong {
	display: block;
	margin-top: 36px;
	color: #444;
	font-size: 18px;
	font-weight: 800;
}
.testimonial-card span {
	display: block;
	color: #616161;
	font-size: 16px;
}
.testimonial-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 62px;
	height: 62px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transform: translateY(-50%);
}
.testimonial-arrow::before {
	content: "";
	position: absolute;
	top: 21px;
	width: 18px;
	height: 18px;
	border-top: 2px solid #1a1a1a;
	border-left: 2px solid #1a1a1a;
}
.testimonial-arrow--prev { left: max(24px, calc(50% - 690px)); }
.testimonial-arrow--next { right: max(24px, calc(50% - 690px)); }
.testimonial-arrow--prev::before { left: 25px; transform: rotate(-45deg); }
.testimonial-arrow--next::before { right: 25px; transform: rotate(135deg); }
.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}
.testimonial-dots span {
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: rgba(240, 188, 0, .35);
}
.testimonial-dots .is-active {
	width: 18px;
	background: var(--orange);
}

.solution-section { background: #f8f9fa; }
.solution-section .section-heading span {
	display: block;
	max-width: 760px;
	margin: 18px auto 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.7;
}
.solution-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}
.solution-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
	transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.solution-card__media {
	display: block;
	overflow: hidden;
	background: var(--soft);
}
.solution-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .25s ease;
}
.solution-card:hover .solution-card__media img { transform: scale(1.04); }
.solution-card__body {
	padding: 22px 24px 26px;
}
.solution-card h3 { margin-bottom: 14px; font-size: 21px; line-height: 1.35; }
.solution-card h3 a { color: #202020; }
.solution-card h3 a:hover { color: var(--orange-2); }
.solution-card p { margin-bottom: 18px; }
.solution-card__link { color: var(--orange-2); font-weight: 800; }

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}
.news-card { overflow: hidden; background: #fafbfc; border: 1px solid var(--line); }
.news-card__media img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; background: var(--soft); }
.news-card__body { padding: 18px; }
.news-card span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 13px; }
.news-card h3 { font-size: 18px; line-height: 1.35; }

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--inner-banner-height);
	padding: 0;
	background-position: center;
	background-size: cover;
	background-color: #1a1a1a;
	color: #fff;
	isolation: isolate;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(20, 23, 27, .48); }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { margin-bottom: 14px; color: #fff; font-size: clamp(36px, 4vw, 58px); }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.74); }

.about-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--inner-banner-height);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
	isolation: isolate;
}
.about-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(20, 23, 27, .48);
}
.about-page-hero h1 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 30px;
	font-weight: 800;
}
.about-page-hero nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: rgba(255, 255, 255, .88);
	font-size: 15px;
}
.about-page-hero nav a { color: #fff; }
.about-page-hero nav a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 12px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}
.about-tabs {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	overflow-x: auto;
	background: #f2f5f7;
	border-bottom: 1px solid var(--line);
	scrollbar-width: none;
}
body.admin-bar .about-tabs { top: 32px; }
.about-tabs::-webkit-scrollbar { display: none; }
.about-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 56px;
	padding: 0 55px;
	border: 1px solid var(--line);
	border-bottom-color: transparent;
	background: #fff;
	color: #222;
	font-size: 19px;
	font-weight: 700;
	white-space: nowrap;
}
.about-tabs a:first-child { background: #fafbfc; }
.about-tabs a::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 6px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.about-tabs a:hover::before,
.about-tabs a:first-child::before { transform: scaleX(1); }
.about-company {
	padding: 60px 0;
	background: #fff;
}
.about-company,
.about-advantage,
.about-credentials,
.about-factory {
	scroll-margin-top: 90px;
}
.about-company__intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}
.about-company__media {
	order: 2;
	width: min(100%, 1040px);
	margin: 0 auto;
}
.about-company__copy {
	order: 1;
}
.about-company__media img {
	width: 100%;
	aspect-ratio: 1170 / 711;
	object-fit: cover;
	border-radius: 5px 5px 18px 18px;
	border-bottom: 8px solid var(--orange);
}
.about-company__copy h2 {
	margin: 5px 0 22px;
	color: #222;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 900;
	text-transform: uppercase;
}
.about-company__copy p {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.85;
}
.about-company__copy strong { color: #333; }
.about-counter-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 36px;
}
.about-counter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	padding: 40px 24px;
	border-radius: 5px;
	background: #f2f5f7;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .03);
	transition: box-shadow .2s ease, transform .2s ease;
}
.about-counter:hover {
	transform: translateY(-4px);
	box-shadow: 0 5px 23px rgba(188, 207, 219, .35);
}
.about-counter strong {
	margin-bottom: 18px;
	color: #222;
	font-size: clamp(48px, 5vw, 80px);
	font-weight: 800;
	line-height: 1;
}
.about-counter span {
	color: #222;
	font-size: 16px;
	font-weight: 700;
}
.about-advantage {
	position: relative;
	padding: 60px 0;
	background-color: #fafbfc;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	isolation: isolate;
}
.about-advantage__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, .85);
}
.about-advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}
.about-advantage-card {
	min-height: 230px;
	padding: 30px 26px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .68);
	transition: background .2s ease;
}
.about-advantage-card:hover { background: #fafbfc; }
.about-advantage-card div {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}
.about-advantage-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--orange);
	font-size: 24px;
	font-weight: 900;
}
.about-advantage-card h3 {
	margin-bottom: 0;
	font-size: 22px;
}
.about-advantage-card p {
	margin-bottom: 0;
	line-height: 1.75;
}
.about-credentials,
.about-factory {
	padding: 60px 0;
	background: #fff;
}
.about-certificate-carousel {
	position: relative;
	padding-inline: 56px;
}
.about-certificate-window {
	overflow: hidden;
}
.about-certificate-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 80px) / 5);
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.about-certificate-grid::-webkit-scrollbar {
	display: none;
}
.about-certificate-grid a,
.about-factory-grid a {
	display: block;
	overflow: hidden;
	background: #fff;
}
.about-certificate-grid img {
	width: 100%;
	aspect-ratio: 720 / 1024;
	object-fit: cover;
	border: 6px double var(--line);
}
.about-certificate-grid a {
	scroll-snap-align: start;
}
.about-certificate-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .96);
	box-shadow: var(--shadow);
	cursor: pointer;
	transform: translateY(-50%);
}
.about-certificate-arrow::before {
	content: "";
	position: absolute;
	top: 15px;
	width: 15px;
	height: 15px;
	border-top: 2px solid var(--ink);
	border-left: 2px solid var(--ink);
}
.about-certificate-arrow:hover {
	border-color: var(--orange);
	background: var(--orange);
}
.about-certificate-arrow--prev { left: 0; }
.about-certificate-arrow--next { right: 0; }
.about-certificate-arrow--prev::before { left: 18px; transform: rotate(-45deg); }
.about-certificate-arrow--next::before { right: 18px; transform: rotate(135deg); }
.about-factory { background: #fafbfc; }
.about-factory-copy {
	max-width: 880px;
	margin-bottom: 30px;
	text-align: center;
}
.about-factory-copy p {
	margin-bottom: 0;
	font-size: 18px;
}
.about-factory-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.about-factory-grid img {
	width: 100%;
	aspect-ratio: 300 / 182;
	object-fit: cover;
	transition: transform .25s ease;
}
.about-factory-grid a:hover img { transform: scale(1.04); }

.archive-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}
.archive-sidebar {
	position: sticky;
	top: 140px;
	padding: 22px;
	background: #1a1a1a;
	color: #fff;
}
.archive-sidebar h2 { color: #fff; font-size: 20px; }
.archive-sidebar a { display: block; padding: 9px 0; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.1); }
.archive-sidebar a:hover { color: var(--orange); }
.product-filter-bar {
	display: grid;
	grid-template-columns: 1fr 180px 150px auto;
	gap: 10px;
	margin-bottom: 28px;
	padding: 16px;
	background: #fafbfc;
	border: 1px solid var(--line);
}
.product-filter-bar input,
.product-filter-bar select,
.product-filter-bar button,
.quick-inquiry input,
.quick-inquiry textarea {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 3px;
	font: inherit;
}
.product-filter-bar button { background: var(--orange); color: #202020; font-weight: 800; cursor: pointer; }

.product-hero { padding: 130px 0 70px; background: #f8f9fa; }
.product-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
	gap: 50px;
	align-items: start;
}
.product-gallery__main { overflow: hidden; background: #fff; border: 1px solid var(--line); }
.product-gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.product-gallery__thumb { border: 1px solid var(--line); background: #fff; cursor: pointer; }
.product-gallery__thumb.is-active { border-color: var(--orange); }
.product-gallery__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-gallery__controls { display: grid; grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 10px; margin-top: 10px; }
.product-gallery__controls .product-gallery__thumbs { margin-top: 0; overflow: auto; }
.product-gallery__arrow { border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 22px; }
.product-hero__copy h1 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 54px); }
.product-model { display: inline-flex; margin-bottom: 18px; padding: 8px 12px; background: var(--orange); color: #202020; font-weight: 800; }
.product-quick-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0; }
.product-quick-info span { padding: 12px; background: #fff; border: 1px solid var(--line); }
.product-parameters, .detail-panel, .contact-card, .quote-panel {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
}
.product-parameters { margin: 28px 0; }
.product-parameters dl { display: grid; grid-template-columns: 180px 1fr; gap: 0; margin: 0; }
.product-parameters dt, .product-parameters dd { padding: 12px 0; margin: 0; border-bottom: 1px solid var(--line); }
.product-parameters dt { color: var(--muted); }
.product-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 34px;
	align-items: start;
}
.sticky-inquiry { position: sticky; top: 140px; padding: 24px; background: #1a1a1a; color: #fff; }
.sticky-inquiry h3 { color: #fff; }
.sticky-inquiry p { color: rgba(255,255,255,.72); }
.sticky-inquiry form, .inquiry-form, .contact-page__grid, .content-area { display: grid; gap: 14px; }
.sticky-inquiry input, .sticky-inquiry textarea,
.inquiry-form input, .inquiry-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 3px;
	font: inherit;
}
.inquiry-form textarea, .sticky-inquiry textarea { resize: vertical; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 180px; color: var(--muted); font-weight: 600; }
.detail-panel { margin-bottom: 24px; }
.detail-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.detail-points div { padding: 18px; background: #fafbfc; border: 1px solid var(--line); }
.detail-points strong { display: block; margin-bottom: 8px; font-size: 18px; }
.content-area { max-width: 960px; }
.content-area h2, .content-area h3 { margin-top: 20px; }
.content-list, .content-card-grid { display: grid; gap: 22px; }
.content-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card, .post-row, .faq-item {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--line);
}
.content-card h2, .post-row h2 { margin-bottom: 10px; font-size: 22px; }
.faq-list { display: grid; gap: 14px; }
.faq-item summary { cursor: pointer; color: var(--ink); font-weight: 800; }
.faq-item div { margin-top: 12px; color: var(--muted); }
.pagination-wrap { margin-top: 34px; }
.pagination-wrap .nav-links, .content-list .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 38px; min-height: 38px; align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid var(--line); background: #fff; }
.page-numbers.current { background: var(--orange); border-color: var(--orange); color: #202020; font-weight: 800; }
.contact-page__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); align-items: start; }
.contact-card-list { display: grid; gap: 14px; }
.contact-card span { display: block; margin-bottom: 8px; color: var(--muted); }
.contact-card strong { display: block; color: var(--ink); font-size: 18px; word-break: break-word; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid p, .inquiry-form p { margin: 0; }
.inquiry-form label { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 700; }
.form-notice { padding: 12px 14px; border: 1px solid var(--line); background: #fafbfc; }
.form-notice--success { border-color: #7ac58d; background: #f1fbf3; }
.form-notice--error { border-color: #de8a8a; background: #fff4f4; }

.site-footer {
	padding-top: 68px;
	background: #111;
	color: rgba(255,255,255,.72);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 34px;
}
.site-footer h2, .site-footer h3 { color: #fff; }
.footer-brand h2 { margin-bottom: 18px; }
.footer-more { color: var(--orange); font-weight: 800; }
.footer-menu a, .contact-list a { display: block; padding: 5px 0; color: rgba(255,255,255,.72); }
.footer-menu a:hover, .contact-list a:hover { color: var(--orange); }
.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 48px;
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: 14px;
}
.floating-contact-stack {
	position: fixed;
	right: 12px;
	top: 50%;
	z-index: 90;
	display: grid;
	gap: 6px;
	transform: translateY(-8%);
}
.floating-contact-stack__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 4px;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	cursor: pointer;
}
.floating-contact-stack__item:hover { color: #fff; filter: brightness(.96); }
.floating-contact-stack__item svg { width: 21px; height: 21px; fill: currentColor; }
.floating-contact-stack__item--phone { background: #ff684a; }
.floating-contact-stack__item--mail { background: #b82ee6; }
.floating-contact-stack__item--whatsapp { background: #18c35b; }
.floating-contact-stack__item--wechat { background: #24ad68; font-size: 12px; letter-spacing: -2px; }
.quote-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,.55); }
.quote-modal.is-open { display: flex; }
.quote-modal__panel { position: relative; width: min(520px, 100%); padding: 30px; background: #fff; }
.quote-modal__close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; background: var(--soft); cursor: pointer; font-size: 22px; }
.quick-inquiry { display: grid; gap: 12px; }

@media (max-width: 1080px) {
	.menu { gap: 14px; }
	.category-grid { grid-auto-columns: calc((100% - 40px) / 3); }
	.product-grid--four, .news-grid, .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.content-card-grid, .detail-points, .contact-page__grid { grid-template-columns: 1fr; }
	.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.feature-grid article:nth-child(2) { border-right: 0; }
	.about-layout, .benefits-layout, .product-hero__inner, .product-detail-grid { grid-template-columns: 1fr; }
	.benefits-copy { padding: 52px 36px 0; }
	.benefits-media { margin: 0 36px 36px; padding: 26px 26px 26px 0; }
	.about-tabs { justify-content: flex-start; }
	.about-tabs a { padding: 0 32px; }
	.about-company__intro, .about-advantage-grid { grid-template-columns: 1fr; }
	.about-counter-grid, .about-factory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about-certificate-grid { grid-auto-columns: calc((100% - 20px) / 2); }
	.testimonial-track { grid-auto-columns: calc((100% - 20px) / 2); }
	.testimonial-arrow { display: none; }
}
@media (max-width: 1180px) {
	body.admin-bar .about-tabs { top: 46px; }
	.site-topbar { display: none; }
	.site-header__inner { min-height: 70px; }
	.nav-toggle { display: block; }
	.header-language-switcher--mobile { display: block; margin-left: auto; }
	.header-language-switcher--mobile .language-select { width: 112px; min-height: 42px; padding: 0 26px 0 10px; font-size: 14px; }
	.header-language-switcher--nav { display: none; }
	.site-nav {
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 10px 24px 24px;
		background: #fff;
		box-shadow: var(--shadow);
	}
	.site-nav.is-open { display: flex; flex-direction: column; }
	.menu {
		display: grid;
		order: 1;
		width: 100%;
		flex: none;
		gap: 0;
		justify-content: stretch;
		align-items: stretch;
	}
	.menu > li { width: 100%; }
	.menu a {
		width: 100%;
		min-height: 52px;
		justify-content: flex-start;
		font-size: 17px;
	}
	.menu-item--has-dropdown > a::after { margin-left: 10px; }
	.header-quote { order: 2; width: 100%; min-height: 52px; margin-top: 12px; font-size: 17px; }
	.submenu { position: static; display: none; min-width: 0; padding: 0 0 8px 12px; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
	.submenu a { min-height: 42px; padding: 8px 10px; }
	.menu-item:hover .submenu, .menu-item.is-submenu-open .submenu { display: grid; }
	.submenu-toggle { position: absolute; top: 5px; right: 0; display: block; width: 42px; height: 42px; border: 0; background: transparent; }
	body.nav-open .floating-contact-stack { display: none; }
	.archive-layout { grid-template-columns: 1fr; }
	.archive-sidebar, .sticky-inquiry { position: static; }
	.product-filter-bar { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.container { width: min(calc(100% - 32px), var(--container)); }
	.site-header__inner { width: min(calc(100% - 32px), var(--header-container)); gap: 8px; }
	.site-brand { flex: 1 1 auto; min-width: 0; }
	.site-brand__logo { width: 150px; max-width: min(150px, calc(100vw - 188px)); }
	.header-language-switcher--mobile .language-select { width: 96px; font-size: 13px; }
	.site-nav { padding: 12px 30px 24px; }
	.site-brand__text strong { max-width: 190px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; }
	.site-brand__text small { display: none; }
	.home-hero { min-height: 540px; text-align: left; }
	.home-hero__inner { padding: 80px 0; }
	.home-hero h1 { margin-inline: 0; margin-bottom: 34px; }
	.home-hero__text { margin-inline: 0; font-size: 16px; }
	.hero-actions { display: grid; justify-content: stretch; }
	.home-hero__dots { bottom: 18px; }
	.hero-arrow { display: none; }
	.section { padding-block: 56px; }
	.section-heading--watermark p { font-size: 48px; }
	.section-heading--watermark h2 { margin-top: -40px; }
	.category-section { padding: 40px 0 36px; }
	.category-carousel { padding-inline: 42px; }
	.category-grid { grid-auto-columns: calc((100% - 10px) / 2); gap: 10px; }
	.category-card img { width: min(120px, 100%); }
	.category-arrow { top: 60px; width: 34px; height: 34px; }
	.category-arrow::before { top: 10px; width: 11px; height: 11px; }
	.category-arrow--prev::before { left: 13px; }
	.category-arrow--next::before { right: 13px; }
	.product-grid, .product-grid--four, .news-grid, .solution-grid, .feature-grid, .footer-grid, .product-quick-info { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.feature-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
	.benefits-section { padding: 56px 0 36px; }
	.benefits-layout { gap: 28px; box-shadow: none; }
	.benefits-copy { padding: 0; }
	.benefits-copy h2 { margin-bottom: 26px; }
	.benefits-copy p { font-size: 16px; }
	.progress-item div { font-size: 16px; }
	.benefits-media { margin: 0; padding: 18px 18px 18px 0; }
	.about-page-hero { min-height: 100px; }
	.about-tabs a { min-height: 52px; padding: 0 22px; font-size: 16px; }
	.about-company, .about-advantage, .about-credentials, .about-factory { padding: 48px 0; }
	.about-counter-grid, .about-factory-grid { grid-template-columns: 1fr; }
	.about-certificate-carousel { padding-inline: 42px; }
	.about-certificate-grid { grid-auto-columns: 100%; }
	.about-certificate-arrow { width: 34px; height: 34px; }
	.about-certificate-arrow::before { top: 10px; width: 11px; height: 11px; }
	.about-certificate-arrow--prev::before { left: 13px; }
	.about-certificate-arrow--next::before { right: 13px; }
	.about-counter { min-height: 150px; }
	.about-advantage { background-attachment: scroll; }
	.about-advantage-card { min-height: 0; }
	.testimonial-section { padding: 48px 0 56px; background-attachment: scroll; }
	.testimonial-track { grid-auto-columns: 100%; }
	.testimonial-card { min-height: 320px; padding: 26px 24px; }
	.testimonial-card p { font-size: 18px; }
	.site-footer__bottom { display: grid; }
	.product-parameters dl { grid-template-columns: 1fr; }
}

.template-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	height: var(--inner-banner-height);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
	isolation: isolate;
}
.template-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(20, 23, 27, .48);
}
.template-page-hero h1 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 30px;
	font-weight: 800;
}
.template-breadcrumb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	color: rgba(255,255,255,.88);
	font-size: 15px;
}
.template-breadcrumb a,
.template-breadcrumb span { color: #fff; }
.template-breadcrumb a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 12px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}
.template-archive-section,
.template-narrow-section,
.template-contact-section {
	padding: 60px 0;
	background: #fff;
}
.template-with-sidebar {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 42px;
	align-items: start;
}
.template-main { grid-column: 2; }
.template-sidebar {
	grid-column: 1;
	grid-row: 1;
	display: grid;
	gap: 36px;
}
.target-widget h2 {
	margin-bottom: 18px;
	color: #111;
	font-size: 20px;
	font-weight: 800;
}
.target-category-list,
.target-small-posts {
	margin: 0;
	padding: 0;
	list-style: none;
}
.target-category-list li {
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 15px;
}
.target-category-list a { color: #222; }
.target-category-list a:hover { color: var(--orange-2); }
.target-small-posts { display: grid; gap: 18px; }
.target-small-posts a {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	color: #222;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}
.target-small-posts__thumb img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	background: var(--soft);
}
.target-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}
.target-product-card {
	background: #fff;
	text-align: center;
}
.target-product-card__media {
	display: block;
	overflow: hidden;
	background: var(--soft);
}
.target-product-card__media img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform .25s ease;
}
.target-product-card:hover img { transform: scale(1.04); }
.target-entry-meta {
	margin-top: 14px;
	color: var(--muted);
	font-size: 13px;
}
.target-entry-meta a { color: var(--muted); }
.target-entry-meta a:hover { color: var(--orange-2); }
.target-product-card h2 {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 1.35;
}
.target-product-card h2 a { color: #222; }
.target-product-card h2 a:hover { color: var(--orange-2); }
.target-pagination { margin-top: 34px; }
.target-pagination .nav-links,
.target-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.template-empty {
	padding: 24px;
	background: #fafbfc;
	border: 1px solid var(--line);
	color: var(--muted);
}
.target-product-top {
	padding: 60px 0 50px;
	background: #fff;
}
.target-product-top__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
	gap: 42px;
	align-items: start;
}
.target-gallery .product-gallery__main img { aspect-ratio: 1; }
.target-parameters h2,
.target-product-panel h2,
.target-faq-page h2,
.target-contact-info h2,
.target-contact-form h2 {
	margin-bottom: 24px;
	color: #222;
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
}
.target-parameters__summary {
	margin-bottom: 18px;
	color: var(--muted);
	line-height: 1.75;
}
.target-parameters ul {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}
.target-parameters li {
	padding: 9px 0;
	color: #555;
	border-bottom: 1px solid var(--line);
}
.target-parameters b { color: #222; }
.target-quote-link { min-height: 50px; }
.target-product-tabs {
	display: flex;
	justify-content: center;
	overflow-x: auto;
	background: #f2f5f7;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.target-product-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 56px;
	padding: 0 55px;
	background: #fff;
	border-left: 1px solid var(--line);
	color: #222;
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
}
.target-product-tabs a:last-child { border-right: 1px solid var(--line); }
.target-product-tabs a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}
.target-product-tabs a:hover::before,
.target-product-tabs a:first-child::before { transform: scaleX(1); }
.target-product-content {
	padding: 50px 0;
	background: #fff;
}
.target-product-content:nth-of-type(odd) { background: #fafbfc; }
.target-product-panel {
	max-width: 1050px;
}
.target-product-panel .content-area {
	max-width: none;
	display: block;
}
.target-product-panel .content-area img {
	margin: 24px 0;
}
.target-product-panel table {
	width: 100%;
	border-collapse: collapse;
}
.target-product-panel td,
.target-product-panel th {
	padding: 12px;
	border: 1px solid var(--line);
	text-align: left;
}
.target-accordion-list {
	display: grid;
	gap: 14px;
}
.target-accordion-item {
	background: #fff;
	border: 1px solid var(--line);
}
.target-accordion-item summary {
	position: relative;
	padding: 16px 52px 16px 18px;
	color: #222;
	font-size: 17px;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}
.target-accordion-item summary::-webkit-details-marker { display: none; }
.target-accordion-item summary::before,
.target-accordion-item summary::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	border-top: 2px solid #222;
	transform: translateY(-50%);
}
.target-accordion-item summary::after { transform: translateY(-50%) rotate(90deg); }
.target-accordion-item[open] summary::after { transform: translateY(-50%) rotate(0); }
.target-accordion-item > div {
	padding: 0 18px 18px;
	color: var(--muted);
}
.target-faq-page {
	max-width: 900px;
}
.target-faq-page h2:not(:first-child) { margin-top: 48px; }
.target-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}
.target-news-card {
	display: grid;
	grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
	min-height: 220px;
	background: #fff;
	border: 1px solid var(--line);
}
.target-news-card__media {
	display: block;
	overflow: hidden;
	background: var(--soft);
}
.target-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}
.target-news-card:hover .target-news-card__media img { transform: scale(1.04); }
.target-news-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px 28px;
}
.target-news-card .target-entry-meta { margin-top: 0; }
.target-news-card h2 {
	margin: 8px 0 12px;
	font-size: 24px;
	line-height: 1.35;
}
.target-news-card h2 a { color: #222; }
.target-news-card p {
	margin-bottom: 18px;
	color: var(--muted);
}
.target-read-more {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	min-height: 38px;
	padding: 0 18px;
	background: var(--orange);
	color: #202020;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}
.target-news-detail {
	padding: 58px 0;
	background: #fff;
}
.target-news-detail__inner {
	width: min(calc(100% - 48px), 1040px);
}
.target-news-detail__content {
	max-width: none;
	display: block;
	font-size: 17px;
	line-height: 1.9;
}
.target-news-detail__content p,
.target-news-detail__content ul,
.target-news-detail__content ol {
	margin-bottom: 20px;
}
.target-news-detail__content img {
	margin: 24px 0;
}
.target-news-detail__media {
	margin: 36px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}
.target-news-detail__media img {
	width: 100%;
	height: auto;
	max-height: 620px;
	object-fit: contain;
	background: #fafbfc;
}
.target-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 42px;
	align-items: start;
}
.target-contact-info h2 span,
.target-contact-form h2 span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
}
.target-contact-info ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.target-contact-info li {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 10px;
	padding: 16px;
	background: rgba(218,222,228,.5);
	color: #333;
}
.target-contact-info strong { color: #222; }
.target-contact-info a { color: #333; word-break: break-word; }
.target-contact-form {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--line);
}
.target-contact-form .inquiry-form {
	display: grid;
	gap: 14px;
}
.target-contact-content {
	margin-top: 24px;
	max-width: none;
}
.target-map {
	margin-top: 46px;
}
.target-map iframe {
	display: block;
	background: var(--soft);
}

@media (max-width: 1080px) {
	.template-with-sidebar,
	.target-product-top__grid,
	.target-contact-grid {
		grid-template-columns: 1fr;
	}
	.template-main,
	.template-sidebar {
		grid-column: auto;
		grid-row: auto;
	}
	.template-sidebar { order: -1; }
	.target-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.target-news-grid { grid-template-columns: 1fr; }
	.target-product-tabs { justify-content: flex-start; }
	.target-product-tabs a { padding: 0 32px; }
}

@media (max-width: 640px) {
	.template-page-hero { min-height: 105px; }
	.template-page-hero h1 { font-size: 24px; }
	.template-archive-section,
	.template-narrow-section,
	.template-contact-section,
	.target-product-top,
	.target-product-content {
		padding: 42px 0;
	}
	.target-product-grid,
	.target-news-grid {
		grid-template-columns: 1fr;
	}
	.target-news-card { grid-template-columns: 1fr; }
	.target-news-card__media img {
		height: auto;
		aspect-ratio: 4 / 3;
	}
	.target-news-card__body { padding: 20px; }
	.target-news-detail__inner { width: min(calc(100% - 32px), 1040px); }
	.target-parameters h2,
	.target-product-panel h2,
	.target-faq-page h2,
	.target-contact-info h2,
	.target-contact-form h2 {
		font-size: 26px;
	}
	.target-product-tabs a {
		min-height: 52px;
		padding: 0 22px;
		font-size: 16px;
	}
	.target-contact-form { padding: 22px; }
	.target-contact-info li { grid-template-columns: 1fr; }
}
