/* ---- Design tokens (UI redesign 2026-09) ---- */
:root {
	--z-primary: #F26B1D;
	--z-primary-dark: #D55A12;
	--z-accent-soft: #FFE3CE;
	--z-ink: #0E1621;
	--z-ink-2: #223140;
	--z-surface: #FFFFFF;
	--z-surface-alt: #F4F6F8;
	--z-line: #DCE3EA;
	--z-text: #172026;
	--z-text-2: #3B4550;
	--z-success: #1E8E5A;
	--z-fs-h1: clamp(34px, 4.6vw, 50px);
	--z-fs-h2: clamp(26px, 3.2vw, 34px);
	--z-fs-lead: 17px;
	--z-fs-body: 16px;
	--z-fs-small: 14px;
	--z-space: 72px;
	--z-radius: 14px;
	--z-radius-sm: 8px;
	--z-shadow: 0 24px 48px -24px rgba(14, 22, 33, .35);
	--z-ease: cubic-bezier(.22, .61, .36, 1);
}

.z-section {
	width: 100%;
	margin: 0;
	padding: 68px 20px;
	box-sizing: border-box;
	background: #fff;
}

.z-shell {
	max-width: 1180px;
	margin: 0 auto;
}

.z-section--light {
	background: #F4F6F8;
	border-top: 1px solid #DCE3EA;
	border-bottom: 1px solid #DCE3EA;
}

.z-section--dark {
	background: #101820;
	color: #fff;
}

.z-eyebrow,
.z-h1,
.z-subhead,
.z-h2,
.z-stat-number,
.z-step-label {
	letter-spacing: 0;
}

.z-eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 10px;
	color: #172026;
	background: #FFFFFF;
	border-left: 3px solid #F96D00;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
}

.z-h1 {
	max-width: 760px;
	margin: 0 0 18px;
	color: #fff;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.1;
}

.z-subhead {
	max-width: 650px;
	margin: 0 0 20px;
	color: #FFC79E;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.z-hero-body,
.z-lead,
.z-cat-card p,
.z-card p,
.z-item p,
.z-faq-answer {
	color: #3B4550;
	font-size: 16px;
	line-height: 1.65;
}

.z-h2 {
	max-width: 720px;
	margin: 0 0 12px;
	color: #172026;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
}

.z-section--dark .z-h2 {
	color: #fff;
}

.z-h2 + .z-lead,
.z-h2 + .z-grid {
	margin-top: 22px;
}

.z-lead {
	max-width: 740px;
}

.z-actions,
.z-button-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.z-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 6px;
	border: 2px solid transparent;
	box-sizing: border-box;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.z-primary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: #F96D00;
}

.z-primary:hover {
	background: #DA5A00;
	color: #fff;
}

.z-outline {
	background: rgba(255,255,255,.05);
	border-color: #fff;
}

.z-outline:hover {
	background: #fff;
	color: #172026;
}

.z-hero {
	position: relative;
	min-height: 560px;
	padding: 86px 20px;
	background-color: #12161b;
	isolation: isolate;
	overflow: hidden;
}

.z-hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 48%;
}

.z-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(9,14,19,.92) 34%, rgba(9,14,19,.54) 72%, rgba(9,14,19,.24) 100%);
}

.z-hero-content {
	position: relative;
	width: 100%;
	z-index: 1;
}

.z-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.z-category-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.z-cat-card {
	display: block;
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #D8DEE5;
	border-bottom: 3px solid #F96D00;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: 0 5px 18px rgba(23,32,38,.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.z-cat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 11px 28px rgba(23,32,38,.13);
}

.z-cat-image {
	width: 100%;
	height: 218px;
	object-fit: cover;
	object-position: center;
	display: block;
	background: #EDF1F4;
}

.z-cat-content {
	padding: 20px;
}

.z-card h3,
.z-item h3 {
	margin: 0 0 10px;
	color: #172026;
	font-size: 19px;
	font-weight: 750;
	line-height: 1.3;
}

.z-cat-more {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	margin-top: 14px;
	color: #C25500;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.z-value-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 30px;
}

.z-item {
	min-height: 168px;
	padding: 22px;
	box-sizing: border-box;
	background: #fff;
	border-left: 3px solid #F96D00;
	border-top: 1px solid #DDE4EB;
}

.z-factory {
	background: #172026;
	color: #fff;
}

.z-factory h2,
.z-factory h3 {
	color: #fff;
}

.z-factory .z-lead,
.z-factory .z-body {
	color: #CBD5DF;
}

.z-two-col {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.z-photo-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.z-photo-stack img:first-child {
	grid-column: span 2;
	height: 310px;
}

.z-photo-stack img:not(:first-child) {
	height: 170px;
}

.z-photo-stack img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
	display: block;
	background: #33404A;
}

.z-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(110px, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.z-stat {
	padding: 20px;
	background: rgba(255,255,255,.06);
	border-top: 2px solid #F96D00;
	min-width: 0;
}

.z-stat-number {
	display: block;
	color: #FFB273;
	font-size: 29px;
	font-weight: 800;
	line-height: 1.1;
}

.z-stat span:last-child {
	display: block;
	margin-top: 7px;
	color: #CBD5DF;
	font-size: 14px;
	line-height: 1.4;
}

.z-steps {
	counter-reset: zstep;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	list-style: none;
	margin: 34px 0 0;
	padding: 0;
}

.z-step {
	min-height: 210px;
	padding: 24px 20px;
	box-sizing: border-box;
	background: #fff;
	border-top: 3px solid #F96D00;
}

.z-step::before {
	counter-increment: zstep;
	content: counter(zstep);
	display: flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #172026;
	color: #fff;
	font-weight: 800;
}

.z-step h3 {
	font-size: 17px;
}

.z-compliance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 30px 0 0;
	padding: 0;
}

.z-compliance li {
	min-height: 144px;
	padding: 22px;
	background: #fff;
	border-top: 3px solid #172026;
	list-style: none;
}

.z-compliance strong {
	display: block;
	margin-bottom: 8px;
	color: #172026;
	font-size: 17px;
}

.z-note {
	display: inline-block;
	margin: 22px 0 0;
	padding: 8px 12px;
	background: #FFF1E6;
	border-left: 3px solid #C25500;
	color: #663200;
	font-size: 14px;
	line-height: 1.4;
}

.z-cert-stack {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.z-cert-stack img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	object-position: top center;
	border: 1px solid #D8DEE5;
	border-radius: 4px;
	background: #fff;
}

.z-verification-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.z-verification-grid section {
	min-width: 0;
	min-height: 184px;
	padding: 24px;
	box-sizing: border-box;
	background: #fff;
	border-top: 3px solid #F96D00;
}

.z-verification-grid strong {
	display: block;
	margin-bottom: 9px;
	color: #172026;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.3;
}

.z-verification-grid p,
.z-verification-grid span {
	margin: 0;
	color: #48535E;
	font-size: 14px;
	line-height: 1.6;
}

.z-request-card {
	margin-top: 24px;
	padding: 26px;
	box-sizing: border-box;
	background: #F7F9FB;
	border-left: 4px solid #C25500;
}

.z-request-card h3 {
	margin: 0 0 10px;
	color: #172026;
	font-size: 20px;
	font-weight: 780;
	line-height: 1.3;
}

.z-request-card p {
	max-width: 880px;
	margin: 0;
	color: #48535E;
	font-size: 15px;
	line-height: 1.6;
}

.z-guide-list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.z-guide-list li {
	min-height: 132px;
	padding: 24px;
	background: #fff;
	border-left: 3px solid #F96D00;
	border-top: 1px solid #D8DEE5;
}

.z-guide-list h3 {
	font-size: 18px;
}

.z-guide-list h3 a {
	color: inherit;
	text-decoration: none;
}

.z-guide-list h3 a:hover,
.z-guide-list h3 a:focus-visible {
	color: #C25500;
}

.z-link-row {
	margin-top: 28px;
}

.z-faq {
	max-width: 780px;
	margin: 30px auto 0;
}

.z-faq details {
	background: #fff;
	border: 1px solid #D8DEE5;
	border-radius: 6px;
	margin-bottom: 10px;
}

.z-faq summary {
	padding: 18px 20px;
	cursor: pointer;
	color: #172026;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	list-style-position: inside;
}

.z-faq-answer {
	padding: 0 20px 18px;
}

.z-center {
	text-align: center;
}

.z-center .z-actions {
	justify-content: center;
}

.z-contact-text {
	color: #AEBAC7;
}

.z-contact-links a {
	color: #fff;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.z-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.z-contact-details {
	margin: 32px 0 24px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 18px;
}

.z-contact-details li {
	padding: 18px 20px;
	background: #F4F6F8;
	border-left: 3px solid #F96D00;
}

.z-contact-details strong {
	display: block;
	margin-bottom: 6px;
	color: #172026;
	font-size: 14px;
	text-transform: uppercase;
}

.z-contact-details span,
.z-contact-details a {
	color: #2D3748;
	font-size: 15px;
	line-height: 1.55;
	word-break: break-word;
}

.z-form-card {
	min-width: 0;
	padding: 26px;
	background: #fff;
	border: 1px solid #D8DEE5;
	border-top: 3px solid #F96D00;
	box-shadow: 0 10px 30px rgba(23,32,38,.06);
}

.z-form-card input,
.z-form-card select,
.z-form-card textarea {
	max-width: 100%;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.z-product-page {
	width: 100%;
	padding: 34px 20px 70px;
	box-sizing: border-box;
	background: #fff;
	color: #172026;
}

.z-product-page img {
	max-width: 100%;
	height: auto;
}

.z-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 0 30px;
	color: #6B7784;
	font-size: 14px;
	line-height: 1.35;
}

.z-breadcrumb a {
	color: #46525E;
	text-decoration: none;
	font-weight: 600;
}

.z-breadcrumb a:hover,
.z-breadcrumb a:focus-visible {
	color: #C25500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.z-product-main {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
	gap: 52px;
	align-items: start;
}

.z-gallery-main {
	overflow: hidden;
	border: 1px solid #D8DEE5;
	border-radius: 6px;
	background: #EDF1F4;
}

.z-gallery {
	min-width: 0;
}

.z-gallery-main img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
}

.z-gallery-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	padding: 0;
	border: 0;
	overflow-x: auto;
	list-style: none;
}

.z-thumb {
	flex: 0 0 auto;
	width: 76px;
	height: 62px;
	padding: 2px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #D8DEE5;
	border-radius: 4px;
	line-height: 0;
}

.z-thumb.is-active {
	border-color: #F96D00;
	box-shadow: inset 0 0 0 1px #F96D00;
}

.z-thumb img {
	width: 100%;
	height: 54px;
	object-fit: cover;
}

.z-model {
	display: inline-block;
	margin-bottom: 12px;
	padding: 7px 11px;
	background: #FFF1E6;
	border-left: 3px solid #F96D00;
	color: #663200;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.z-product-summary .z-title {
	margin: 0 0 16px;
	color: #172026;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
}

.z-pitch {
	max-width: 660px;
	margin: 0;
	color: #3B4550;
	font-size: 17px;
	line-height: 1.62;
}

.z-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.z-trust-row li {
	padding: 8px 12px;
	background: #F4F6F8;
	border-left: 3px solid #172026;
	color: #33404A;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.z-order-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 26px 0 0;
}

.z-order-facts > div,
.z-mini-facts > div {
	min-width: 0;
	padding: 15px 16px;
	background: #fff;
	border-top: 1px solid #DFE6ED;
	border-left: 3px solid #F96D00;
}

.z-order-facts dt,
.z-mini-facts dt {
	margin-bottom: 6px;
	color: #66727E;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.2;
	text-transform: uppercase;
}

.z-order-facts dd,
.z-mini-facts dd {
	margin: 0;
	color: #172026;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.45;
}

.z-price-panel {
	margin: 26px 0 22px;
	padding: 19px 22px;
	background: #F0FBF4;
	border-left: 4px solid #178A50;
}

.z-price-panel span {
	display: block;
	color: #136B41;
	font-size: 23px;
	font-weight: 850;
	line-height: 1.2;
}

.z-price-panel small {
	display: block;
	margin-top: 6px;
	color: #456553;
	font-size: 13px;
	line-height: 1.5;
}

.z-outline-dark {
	border-color: #172026;
	background: #fff;
	color: #172026;
}

.z-outline-dark:hover,
.z-outline-dark:focus-visible {
	background: #172026;
	color: #fff;
}

.z-detail-card {
	min-width: 0;
	margin: 0 0 24px;
	padding: 30px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #DCDFE5;
	border-radius: 6px;
	border-top: 3px solid #F96D00;
}

.z-detail-card:last-child {
	margin-bottom: 0;
}

.z-detail-card h2 {
	margin: 0 0 20px;
	color: #172026;
	font-size: 21px;
	font-weight: 780;
	line-height: 1.3;
}

.z-prose > p:first-child {
	margin-top: 0;
}

.z-prose h2 {
	clear: both;
	margin: 30px 0 14px;
	color: #172026;
	font-size: 23px;
	font-weight: 780;
	line-height: 1.3;
}

.z-spec-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.z-spec-table th,
.z-spec-table td {
	padding: 12px 13px;
	box-sizing: border-box;
	border-bottom: 1px solid #E2E8EF;
	color: #333F4A;
	font-size: 14px;
	font-weight: 450;
	line-height: 1.45;
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.z-spec-table th {
	width: 42%;
	background: #F4F6F8;
	color: #172026;
	font-weight: 720;
}

.z-mini-facts {
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
}

.z-related-products {
	margin-top: 54px;
	padding-top: 42px;
	border-top: 1px solid #DEE3EA;
}

.z-related-products h2 {
	margin: 0 0 24px;
	color: #172026;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
}

.z-product-grid {
	align-items: stretch;
}

.z-product-card {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	background: #fff;
	border: 1px solid #DAE0E8;
	border-radius: 6px;
	border-bottom: 3px solid #F96D00;
	transition: box-shadow .2s ease, transform .2s ease;
}

.z-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(23,32,38,.12);
}

.z-product-card > img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: #EDF1F4;
}

.z-card-media {
	display: block;
	overflow: hidden;
	background: #EDF1F4;
}

.z-card-media img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform .25s ease;
}

.z-card-media:hover img {
	transform: scale(1.035);
}

.z-card-body {
	display: block;
	padding: 20px;
}

.z-card-body strong {
	color: #663200;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.z-card-body .z-card-title {
	display: block;
	margin: 7px 0 10px;
	color: #172026;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.35;
}

.z-card-body .z-card-note {
	display: block;
	color: #59646F;
	font-size: 13px;
	line-height: 1.45;
}

.z-card-body .z-card-title a {
	color: inherit;
	text-decoration: none;
}

.z-card-body .z-card-title a:hover,
.z-card-body .z-card-title a:focus-visible {
	color: #C25500;
}

.z-card-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.z-action-button {
	flex: 1 1 auto;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}

.z-inquiry-band {
	margin-top: 58px;
	background: #F4F6F8;
}

.z-archive-page {
	width: 100%;
	padding: 32px 20px 70px;
	box-sizing: border-box;
	background: #fff;
	color: #172026;
}

.z-archive-header {
	max-width: 900px;
}

.z-archive-header h1 {
	margin: 20px 0 15px;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.z-buying-panels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.z-buying-panels section {
	min-width: 0;
	padding: 24px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #DEE3EA;
	border-left: 3px solid #172026;
}

.z-buying-panels h2 {
	margin: 0 0 10px;
	color: #172026;
	font-size: 18px;
	font-weight: 780;
	line-height: 1.3;
}

.z-buying-panels p {
	margin: 0;
	color: #48535E;
	font-size: 14px;
	line-height: 1.6;
}

.z-category-intro {
	margin: 46px 0 0;
	padding: 34px;
	box-sizing: border-box;
	background: #F4F6F8;
	border-top: 3px solid #F96D00;
}

.z-category-intro h2,
.z-category-prose p:first-child {
	margin-top: 0;
}

.z-products-section {
	margin-top: 52px;
}

.z-products-section h2 {
	margin: 0 0 8px;
	color: #172026;
	font-size: 29px;
	font-weight: 800;
	line-height: 1.22;
}

.z-category-head {
	display: grid;
	gap: 7px;
	margin-bottom: 26px;
}

.z-category-head h2 {
	margin-bottom: 0;
}

.z-category-head .z-cat-more {
	margin-top: 6px;
}

.z-page-hero {
	width: 100%;
	padding: 54px 20px;
	box-sizing: border-box;
	background: #F4F6F8;
	border-bottom: 1px solid #DCE3EA;
}

.z-page-hero h1 {
	max-width: 900px;
	margin: 14px 0 16px;
	color: #172026;
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.z-page-hero .z-lead {
	color: #48535E;
}

.z-page-section {
	width: 100%;
	padding: 56px 20px;
	box-sizing: border-box;
	background: #fff;
	color: #172026;
}

.z-page-section--light {
	background: #F4F6F8;
	border-top: 1px solid #DCE3EA;
	border-bottom: 1px solid #DCE3EA;
}

.z-page-columns {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.z-fact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.z-fact {
	min-width: 0;
	padding: 20px;
	box-sizing: border-box;
	background: rgba(255,255,255,.06);
	border-top: 2px solid #F96D00;
}

.z-fact strong,
.z-page-kicker strong {
	display: block;
	color: #FFB273;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.15;
}

.z-fact span,
.z-page-kicker span {
	display: block;
	margin-top: 7px;
	color: #CBD5DF;
	font-size: 14px;
	line-height: 1.4;
}

.z-option-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.z-option-grid li {
	min-width: 0;
	min-height: 148px;
	padding: 22px;
	box-sizing: border-box;
	background: #fff;
	border-left: 3px solid #F96D00;
	border-top: 1px solid #DDE4EB;
}

.z-option-grid strong {
	display: block;
	margin-bottom: 8px;
	color: #172026;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.25;
}

.z-option-grid p,
.z-fact-copy {
	margin: 0;
	color: #48535E;
	font-size: 14px;
	line-height: 1.6;
}

.z-document-list {
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.z-document-list li {
	padding: 17px 19px;
	background: #fff;
	border-left: 3px solid #172026;
	color: #333F4A;
	font-size: 15px;
	line-height: 1.45;
}

.z-info-band {
	max-width: 980px;
	margin: 52px auto 0;
	padding: 28px 30px;
	box-sizing: border-box;
	background: #FFF1E6;
	border-left: 4px solid #C25500;
	color: #663200;
}

.z-article {
	max-width: 810px;
}

.z-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	align-items: center;
	margin: 24px 0 30px;
	color: #66727E;
	font-size: 14px;
}

.z-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	margin: 42px 0 0;
	padding: 0;
}

.z-post-card {
	min-width: 0;
	height: 100%;
	padding: 26px 24px;
	box-sizing: border-box;
	background: #fff;
	border-top: 3px solid #F96D00;
	border-right: 1px solid #DAE0E8;
	border-bottom: 1px solid #DAE0E8;
	border-left: 1px solid #DAE0E8;
}

.z-post-card time {
	display: block;
	margin-bottom: 11px;
	color: #66727E;
	font-size: 13px;
}

.z-post-card h2 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 760;
	line-height: 1.3;
}

.z-post-card h2 a {
	color: inherit;
	text-decoration: none;
}

.z-post-card h2 a:hover,
.z-post-card h2 a:focus-visible {
	color: #C25500;
}

.z-post-card p {
	color: #48535E;
	font-size: 15px;
	line-height: 1.58;
}

@media (min-width: 1025px) {
	.site .header-navigation .header-menu-container .menu-item.z-header-cta > a {
		padding: .58em 1.05em;
		background: #F96D00;
		color: #fff;
		font-weight: 750;
		text-decoration: none;
		border-radius: 5px;
	}

	.site .header-navigation .header-menu-container .menu-item.z-header-cta > a:hover,
	.site .header-navigation .header-menu-container .menu-item.z-header-cta > a:focus-visible,
	.site .header-navigation .header-menu-container .current-menu-item.menu-item.z-header-cta > a {
		background: #D45C00;
		color: #fff;
	}
}

@media (max-width: 1024px) {
	.z-archive-header h1 {
		font-size: 34px;
	}

	.z-buying-panels {
		grid-template-columns: 1fr;
	}

	.z-product-main {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.z-product-summary .z-title {
		font-size: 32px;
	}

	.z-product-detail-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.z-section {
		padding: 62px 20px;
	}

	.z-h1 {
		font-size: 39px;
	}

	.z-h2 {
		font-size: 29px;
	}

	.z-grid,
	.z-value-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.z-two-col,
	.z-steps,
	.z-compliance {
		grid-template-columns: 1fr;
	}

	.z-step,
	.z-compliance li {
		min-height: 0;
	}

	.z-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.z-page-hero h1 {
		font-size: clamp(28px, 6vw, 38px);
	}

	.z-page-columns {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.z-fact-grid,
	.z-option-grid,
	.z-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.z-option-grid li {
		min-height: 0;
	}
}

@media (max-width: 680px) {
	.z-gallery-thumbs {
		flex-wrap: wrap;
		overflow-x: visible;
	}

	.z-archive-page {
		padding: 22px 18px 54px;
	}

	.z-archive-header h1 {
		font-size: 29px;
	}

	.z-category-intro {
		padding: 24px;
	}

	.z-products-section {
		margin-top: 42px;
	}

	.z-card-actions,
	.z-button-row {
		flex-direction: column;
		align-items: stretch;
	}

	.z-product-page {
		padding: 24px 18px 54px;
	}

	.z-product-summary .z-title {
		font-size: 28px;
	}

	.z-pitch {
		font-size: 16px;
	}

	.z-order-facts {
		grid-template-columns: 1fr;
	}

	.z-price-panel {
		padding: 17px 18px;
	}

	.z-detail-card {
		padding: 22px;
	}

	.z-spec-table {
		table-layout: auto;
	}

	.z-inquiry-layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.z-hero {
		min-height: 540px;
		padding: 0;
	}

	.z-hero-slide {
		padding: 74px 18px;
	}

	.z-section {
		padding: 58px 18px;
	}

	.z-h1 {
		font-size: 31px;
	}

	.z-h2 {
		font-size: 25px;
	}

	.z-subhead {
		font-size: 18px;
	}

	.z-grid,
	.z-value-grid,
	.z-category-grid,
	.z-stats,
	.z-photo-stack,
	.z-steps,
	.z-compliance {
		grid-template-columns: 1fr;
	}

	.z-category-grid .z-item,
	.z-category-grid {
		height: auto;
	}

	.z-photo-stack img:first-child,
	.z-photo-stack img:not(:first-child) {
		height: 210px;
	}

	.z-cat-image {
		height: 205px;
	}

	.z-cat-content,
	.z-item,
	.z-stat,
	.z-step,
	.z-compliance li,
	.z-guide-list li {
		padding: 20px;
	}

	.z-button,
	.wp-block-button__link {
		width: 100%;
		justify-content: center;
	}

	.z-actions {
		gap: 10px;
	}

	.z-contact-layout,
	.z-form-card {
		grid-template-columns: 1fr;
	}

	.z-contact-layout {
		gap: 34px;
	}

	.z-form-card {
		padding: 20px;
	}

	.z-page-hero {
		padding: 44px 18px;
	}

	.z-page-section {
		padding: 50px 18px;
	}

	.z-fact-grid,
	.z-option-grid,
	.z-document-list,
	.z-verification-grid,
	.z-post-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.z-verification-grid section {
		min-height: 0;
	}

	.z-info-band {
		margin-top: 42px;
		padding: 22px;
	}
}

/* ===== Hero Slider ===== */
.z-hero {
	position: relative;
	display: flex;
	min-height: 680px;
	padding: 0;
	background-color: #12161b;
	isolation: isolate;
	overflow: hidden;
}

.z-hero-slides {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	flex: 1;
}

.z-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 96px 20px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.z-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	position: relative;
	height: auto;
	min-height: 100%;
}

.z-hero-slide .z-hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 48%;
	animation: zKenBurns 8s ease-out forwards;
}

.z-hero-slide.is-active .z-hero-media {
	animation: zKenBurns 8s ease-out forwards;
}

@media (max-width: 680px) {
	.z-hero {
		min-height: 540px;
		padding: 0;
	}

	.z-hero-slide {
		padding: 74px 18px;
	}

	/* Keep mobile idle work low: the static image already sells the factory. */
	.z-hero-slide .z-hero-media {
		animation: none;
	}
}

@keyframes zKenBurns {
	from {
		transform: scale(1.08);
	}
	to {
		transform: scale(1);
	}
}

.z-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(9,14,19,.92) 34%, rgba(9,14,19,.54) 72%, rgba(9,14,19,.24) 100%);
}

.z-hero-slide .z-hero-body {
	max-width: 720px;
	margin: 0 0 30px;
	color: #D8E1E9;
}

.z-hero-content {
	position: relative;
	z-index: 1;
}

.z-hero-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.z-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.6);
	background: transparent;
	cursor: pointer;
	transition: background .3s ease, border-color .3s ease, transform .2s ease;
	padding: 0;
}

.z-hero-dot.is-active {
	background: #F96D00;
	border-color: #F96D00;
	transform: scale(1.15);
}

.z-hero-dot:hover {
	border-color: #F96D00;
}

@media (max-width: 680px) {
	.z-hero-overlay {
		background: linear-gradient(180deg, rgba(9,14,19,.94) 30%, rgba(9,14,19,.72) 68%, rgba(9,14,19,.88) 100%);
	}
}

.z-hero-slide .z-eyebrow,
.z-hero-slide .z-h1,
.z-hero-slide .z-subhead,
.z-hero-slide .z-hero-body,
.z-hero-slide .z-actions {
	opacity: 0;
	transform: translateY(24px);
}

.z-hero-slide.is-active .z-eyebrow {
	animation: zHeroText .6s ease .15s forwards;
}

.z-hero-slide.is-active .z-h1 {
	animation: zHeroText .6s ease .28s forwards;
}

.z-hero-slide.is-active .z-subhead {
	animation: zHeroText .6s ease .42s forwards;
}

.z-hero-slide.is-active .z-hero-body {
	animation: zHeroText .6s ease .55s forwards;
}

.z-hero-slide.is-active .z-actions {
	animation: zHeroText .6s ease .68s forwards;
}

@keyframes zHeroText {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== Scroll Reveal Animations ===== */
.z-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
	will-change: opacity, transform;
}

.z-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	will-change: auto;
}

.z-reveal-delay-1 {
	transition-delay: .08s;
}

.z-reveal-delay-2 {
	transition-delay: .16s;
}

.z-reveal-delay-3 {
	transition-delay: .24s;
}

.z-reveal-delay-4 {
	transition-delay: .32s;
}

.z-reveal-delay-5 {
	transition-delay: .40s;
}

@media (prefers-reduced-motion: reduce) {
	.z-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.z-hero-slide .z-hero-media {
		animation: none;
	}

	.z-hero-slide .z-eyebrow,
	.z-hero-slide .z-h1,
	.z-hero-slide .z-subhead,
	.z-hero-slide .z-hero-body,
	.z-hero-slide .z-actions {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* ===== Stats Counter ===== */
.z-stat-number[data-count] {
	display: inline-block;
	min-width: 3ch;
	text-align: left;
}

/* ===== Category Card Image Zoom ===== */
.z-cat-card .z-card-media {
	display: block;
	position: relative;
	overflow: hidden;
}

.z-cat-card {
	overflow: hidden;
}

.z-cat-card .z-cat-image {
	transition: transform .45s ease;
}

.z-cat-card:hover .z-cat-image {
	transform: scale(1.05);
}

.z-cat-card .z-card-overlay-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.85);
	z-index: 2;
	padding: 10px 22px;
	background: #F96D00;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 5px;
	text-decoration: none;
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	white-space: nowrap;
	pointer-events: none;
}

.z-cat-card:hover .z-card-media::after,
.z-cat-card:focus-within .z-card-media::after {
	opacity: 1;
}

.z-cat-card .z-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(23,32,38,.42);
	opacity: 0;
	transition: opacity .3s ease;
	z-index: 1;
	pointer-events: none;
}

.z-cat-card:hover .z-card-overlay-btn,
.z-cat-card:focus-within .z-card-overlay-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
	.z-cat-card .z-card-media::after,
	.z-cat-card .z-card-overlay-btn {
		display: none;
	}
}

/* ===== Why Choose Us Icons ===== */
.z-item {
	position: relative;
	padding-left: 60px;
}

.z-item-icon {
	position: absolute;
	left: 18px;
	top: 22px;
	width: 32px;
	height: 32px;
	color: #F96D00;
}

.z-item-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

@media (max-width: 680px) {
	.z-item {
		padding-left: 56px;
	}

	.z-item-icon {
		left: 14px;
		top: 20px;
	}
}

/* ===== OEM Step Connector ===== */
.z-steps {
	position: relative;
}

.z-step {
	position: relative;
}

@media (min-width: 1025px) {
	.z-steps .z-step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 42px;
		right: -14px;
		width: 12px;
		height: 2px;
		background: #F96D00;
	}
}

/* ===== Product Card Hover Overlay ===== */
.z-product-card {
	position: relative;
}

.z-product-card .z-card-media {
	position: relative;
	overflow: hidden;
}

.z-product-card .z-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(23,32,38,.45);
	opacity: 0;
	transition: opacity .3s ease;
	z-index: 1;
}

.z-product-card .z-card-overlay-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.85);
	z-index: 2;
	padding: 10px 22px;
	background: #F96D00;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 5px;
	text-decoration: none;
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	white-space: nowrap;
}

.z-product-card:hover .z-card-media::after,
.z-product-card:focus-within .z-card-media::after {
	opacity: 1;
}

.z-product-card:hover .z-card-overlay-btn,
.z-product-card:focus-within .z-card-overlay-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
	.z-product-card .z-card-media::after,
	.z-product-card .z-card-overlay-btn {
		display: none;
	}
}

/* ===== Scroll Progress Bar ===== */
.z-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: #F96D00;
	z-index: 99999;
	width: 0%;
	transition: width .15s linear;
	pointer-events: none;
}

/* ===== Back-to-Top Button ===== */
.z-back-top {
	position: fixed;
	bottom: 84px; /* stacked above WhatsApp float (18+52+14) */
	right: 18px;
	z-index: 9999;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #F96D00;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
	box-shadow: 0 4px 14px rgba(249,109,0,.35);
}

.z-back-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.z-back-top:hover {
	background: #DA5A00;
	transform: translateY(-3px);
}

.z-back-top:focus-visible {
	outline: 3px solid #172026;
	outline-offset: 3px;
}

.z-back-top svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 680px) {
	.z-back-top {
		bottom: 82px; /* above WhatsApp float on mobile */
		right: 18px;
		width: 44px;
		height: 44px;
		font-size: 18px;
	}
}

/* ===== Sticky Header with Shadow ===== */
.site-header-row-container,
#masthead .site-header-row-container {
	transition: box-shadow .3s ease, background-color .3s ease;
}

.site-header.is-stuck .site-header-row-container,
#masthead.is-stuck .site-header-row-container {
	box-shadow: 0 2px 12px rgba(0,0,0,.10);
	background: #fff;
}

/* ===== FAQ Accordion Smooth Animation ===== */
.z-faq details {
	overflow: hidden;
}

.z-faq details .z-faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
	padding-top: 0;
	padding-bottom: 0;
}

.z-faq details[open] .z-faq-answer {
	max-height: 400px;
	opacity: 1;
	padding-top: 0;
	padding-bottom: 18px;
}

.z-faq summary::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: 10px;
	border-right: 2px solid #172026;
	border-bottom: 2px solid #172026;
	transform: rotate(45deg) translateY(-3px);
	transition: transform .3s ease;
	vertical-align: middle;
}

.z-faq details[open] summary::after {
	transform: rotate(-135deg) translateY(-1px);
}

.z-faq summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.z-faq summary::-webkit-details-marker,
.z-faq summary::marker {
	display: none;
}

/* ===== Button Arrow Slide Effect ===== */
.z-button {
	position: relative;
	overflow: hidden;
}

.z-button.z-primary::after {
	content: "\2192";
	position: absolute;
	right: -24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	opacity: 0;
	transition: right .25s ease, opacity .25s ease;
}

.z-button.z-primary:hover::after {
	right: 14px;
	opacity: 1;
}

.z-button.z-primary {
	padding-right: 24px;
	transition: background-color .2s ease, color .2s ease, padding-right .25s ease;
}

.z-button.z-primary:hover {
	padding-right: 38px;
}

.z-button.z-primary:focus-visible {
	outline: 3px solid #172026;
	outline-offset: 3px;
}

/* ===== Form Input Focus Animation ===== */
.z-form-card input,
.z-form-card select,
.z-form-card textarea,
.fluent_form .ff-el-input--label label,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform select,
.fluentform textarea {
	transition: border-color .25s ease, box-shadow .25s ease;
}

.z-form-card input:focus,
.z-form-card select:focus,
.z-form-card textarea:focus,
.fluentform input[type="text"]:focus,
.fluentform input[type="email"]:focus,
.fluentform select:focus,
.fluentform textarea:focus {
	border-color: #F96D00;
	box-shadow: 0 0 0 3px rgba(249,109,0,.12);
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.z-scroll-progress,
	.z-back-top,
	.z-button.z-primary,
	.z-button.z-primary::after,
	.z-faq details .z-faq-answer,
	.z-faq summary::after,
	.z-form-card input,
	.z-form-card select,
	.z-form-card textarea {
		transition: none;
	}

	.z-back-top:hover {
		transform: none;
	}

	.z-button.z-primary:hover {
		padding-right: 24px;
	}

	.z-button.z-primary::after {
		display: none;
	}
}

/* ===== Section Heading Cue ===== */
.z-h2 {
	position: relative;
}

.z-h2::after {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	margin-top: 14px;
	background: #F96D00;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .5s ease .12s;
}

.z-center .z-h2::after {
	margin-right: auto;
	margin-left: auto;
	transform-origin: center;
}

.z-reveal.is-visible .z-h2::after {
	transform: scaleX(1);
}

/* ===== Desktop Navigation Cue ===== */
@media (min-width: 1025px) {
	#primary-menu > li:not(.z-header-cta) > a {
		position: relative;
	}

	#primary-menu > li:not(.z-header-cta) > a::after {
		content: "";
		position: absolute;
		right: 12px;
		bottom: 14px;
		left: 12px;
		height: 2px;
		background: #F96D00;
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform .25s ease;
	}

	#primary-menu > li:not(.z-header-cta) > a:hover::after,
	#primary-menu > li:not(.z-header-cta) > a:focus-visible::after,
	#primary-menu > li.current-menu-item:not(.z-header-cta) > a::after,
	#primary-menu > li.current_page_item:not(.z-header-cta) > a::after {
		transform: scaleX(1);
	}
}

/* ===== Card CTA and Product Gallery Motion ===== */
.z-cat-more::after {
	content: "\2192";
	display: inline-block;
	margin-left: 5px;
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity .25s ease, transform .25s ease;
}

.z-cat-card:hover .z-cat-more::after,
.z-cat-card:focus-visible .z-cat-more::after {
	opacity: 1;
	transform: translateX(0);
}

.z-cat-card:focus-visible {
	outline: 3px solid #172026;
	outline-offset: 3px;
}

.z-product-card:hover .z-card-media img,
.z-product-card:focus-within .z-card-media img {
	transform: scale(1.035);
}

.z-thumb {
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.z-thumb:hover {
	border-color: #F96D00;
	transform: translateY(-2px);
}

.z-thumb:focus-visible {
	outline: 3px solid #172026;
	outline-offset: 2px;
}

.z-gallery-main img {
	transition: opacity .18s ease, transform .18s ease;
}

.z-gallery-main img.is-switching {
	opacity: .22;
	transform: scale(.995);
}

/* ===== Quote Button and Result Motion ===== */
.z-form-card .ff-btn {
	min-height: 48px;
	padding: 13px 26px;
	transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.z-form-card .fluentform .ff-btn:hover {
	background: #DA5A00;
	box-shadow: 0 7px 18px rgba(249,109,0,.22);
	transform: translateY(-1px);
}

.z-form-card .fluentform .ff-btn:focus,
.z-form-card .fluentform .ff-btn:focus-visible {
	outline: 3px solid #172026;
	outline-offset: 3px;
}

.z-form-card .ff-btn:active {
	transform: translateY(0);
	box-shadow: 0 3px 9px rgba(249,109,0,.16);
}

.z-form-card .ff-message-success {
	animation: zResultIn .45s ease both;
}

@keyframes zResultIn {
	from {
		opacity: 0;
		transform: translateY(9px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.z-h2::after,
	#primary-menu > li:not(.z-header-cta) > a::after,
	.z-cat-more::after,
	.z-thumb,
	.z-gallery-main img,
	.z-form-card .ff-btn,
	.z-form-card .ff-message-success {
		transition: none;
		animation: none;
	}

	.z-h2::after,
	#primary-menu > li:not(.z-header-cta) > a:hover::after,
	#primary-menu > li:not(.z-header-cta) > a:focus-visible::after,
	#primary-menu > li.current-menu-item:not(.z-header-cta) > a::after,
	#primary-menu > li.current_page_item:not(.z-header-cta) > a::after,
	.z-cat-card:hover .z-cat-more::after,
	.z-cat-card:focus-visible .z-cat-more::after {
		opacity: 1;
		transform: none;
	}

	.z-thumb:hover,
	.z-form-card .ff-btn:hover,
	.z-form-card .ff-btn:active {
		transform: none;
	}

	.z-gallery-main img.is-switching {
		opacity: 1;
		transform: none;
	}
}

/* Home video band */
.z-video-band {
	padding: var(--z-section-gap, 72px) 0;
}

.z-video-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 32px;
}

.z-video-frame {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #101216;
	box-shadow: 0 24px 48px -24px rgba(16, 18, 22, 0.35);
}

.z-video-frame video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	background: #101216;
}

@media (max-width: 680px) {
	.z-video-frame {
		border-radius: 12px;
	}
}

/* ---- UI redesign 2026-09: new components ---- */

/* Sticky header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
	background: var(--z-surface);
	transition: box-shadow .25s var(--z-ease);
}
body.z-scrolled .site-header {
	box-shadow: 0 6px 24px -12px rgba(14, 22, 33, .25);
}

/* Certification strip */
.z-cert-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	align-items: center;
	justify-content: center;
	padding: 16px 20px;
	background: var(--z-surface-alt);
	border-top: 1px solid var(--z-line);
	border-bottom: 1px solid var(--z-line);
}
.z-cert-strip.on-dark {
	background: var(--z-ink-2);
	border-color: rgba(255, 255, 255, .08);
}
.z-cert-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--z-text-2);
	font-size: var(--z-fs-small);
	font-weight: 700;
	letter-spacing: .02em;
}
.z-cert-item svg {
	width: 18px;
	height: 18px;
	flex: none;
	color: var(--z-primary);
}
.z-cert-strip.on-dark .z-cert-item {
	color: rgba(255, 255, 255, .85);
}

/* WhatsApp floating button */
.z-wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 120;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	box-shadow: 0 10px 24px -8px rgba(37, 211, 102, .55);
	transition: transform .2s var(--z-ease), box-shadow .2s var(--z-ease);
}
.z-wa-float:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 14px 28px -8px rgba(37, 211, 102, .65);
}
.z-wa-float svg {
	width: 26px;
	height: 26px;
}

/* Product card v2 */
.z-product-card {
	border: 1px solid var(--z-line);
	border-radius: var(--z-radius);
	background: var(--z-surface);
	overflow: hidden;
	transition: transform .25s var(--z-ease), box-shadow .25s var(--z-ease), border-color .25s var(--z-ease);
}
.z-product-card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: var(--z-shadow);
}
.z-product-card .z-card-media img {
	transition: transform .45s var(--z-ease);
}
.z-product-card:hover .z-card-media img {
	transform: scale(1.04);
}
.z-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0 4px;
}
.z-badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--z-accent-soft);
	color: #8A3D00;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}
.z-badge--factory {
	background: var(--z-ink);
	color: #fff;
}
.z-card-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.z-card-actions .z-action-button {
	flex: 1;
	text-align: center;
}
.z-card-actions .z-primary {
	background: var(--z-primary);
	color: #fff;
}
.z-card-actions .z-primary:hover {
	background: var(--z-primary-dark);
}
.z-card-actions .z-outline-dark {
	border: 1px solid var(--z-text);
	color: var(--z-text);
}
.z-card-actions .z-outline-dark:hover {
	background: var(--z-text);
	color: #fff;
}

/* Product detail: sticky sidebar (desktop) */
@media (min-width: 1024px) {
	.z-product-summary {
		position: sticky;
		top: 84px;
		align-self: start;
	}
}

/* Mobile sticky inquiry bar */
.z-mobile-bar {
	display: none;
}
@media (max-width: 1023px) {
	.z-mobile-bar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 110;
		display: flex;
		gap: 10px;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, .97);
		box-shadow: 0 -8px 24px -12px rgba(14, 22, 33, .3);
		transform: translateY(110%);
		transition: transform .3s var(--z-ease);
	}
	.z-mobile-bar.is-visible {
		transform: translateY(0);
	}
	.z-mobile-bar .z-btn {
		flex: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 12px 16px;
		border-radius: var(--z-radius-sm);
		font-weight: 700;
		font-size: 15px;
		text-decoration: none;
	}
	.z-mobile-bar .z-btn--primary {
		background: var(--z-primary);
		color: #fff;
	}
	.z-mobile-bar .z-btn--wa {
		background: #25D366;
		color: #fff;
		width: 52px;
		flex: none;
	}
	.z-product-page {
		padding-bottom: 76px;
	}
}

/* Spec sheet CTA in spec card */
.z-specsheet-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	padding: 12px 14px;
	border: 1px dashed var(--z-line);
	border-radius: var(--z-radius-sm);
	background: var(--z-surface-alt);
}
.z-specsheet-cta p {
	margin: 0;
	font-size: var(--z-fs-small);
	color: var(--z-text-2);
}
.z-specsheet-cta a {
	flex: none;
	color: var(--z-primary-dark);
	font-weight: 700;
	text-decoration: none;
}
.z-specsheet-cta a:hover {
	text-decoration: underline;
}

/* Commercial terms table emphasis */
.z-terms-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--z-fs-small);
}
.z-terms-table th,
.z-terms-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--z-line);
	text-align: left;
	vertical-align: top;
}
.z-terms-table th {
	width: 38%;
	color: var(--z-text-2);
	font-weight: 700;
	background: var(--z-surface-alt);
}

/* Home: program split cards (three ways to work with us) */
.z-programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.z-program-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 26px 24px;
	background: var(--z-surface);
	border: 1px solid var(--z-line);
	border-top: 3px solid var(--z-primary);
	border-radius: var(--z-radius);
	transition: transform .25s var(--z-ease), box-shadow .25s var(--z-ease);
}
.z-program-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--z-shadow);
}
.z-program-card h3 {
	margin: 0;
	font-size: 19px;
	color: var(--z-text);
}
.z-program-card p {
	margin: 0;
	font-size: var(--z-fs-small);
	color: var(--z-text-2);
	line-height: 1.6;
	flex: 1;
}
.z-program-card a {
	color: var(--z-primary-dark);
	font-weight: 700;
	text-decoration: none;
}
.z-program-card a:hover {
	text-decoration: underline;
}
@media (max-width: 900px) {
	.z-programs {
		grid-template-columns: 1fr;
	}
}

/* Quality timeline */
.z-timeline {
	position: relative;
	display: grid;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.z-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	padding: 18px 20px;
	background: var(--z-surface);
	border: 1px solid var(--z-line);
	border-radius: var(--z-radius);
}
.z-timeline .z-step-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--z-primary);
	color: #fff;
	font-weight: 800;
	font-size: 18px;
}
.z-timeline h3 {
	margin: 0 0 6px;
	font-size: 17px;
	color: var(--z-text);
}
.z-timeline p {
	margin: 0;
	font-size: var(--z-fs-small);
	color: var(--z-text-2);
	line-height: 1.65;
}
@media (min-width: 900px) {
	.z-timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* OEM photo grid */
.z-oem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 24px;
}
.z-oem-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--z-radius-sm);
	display: block;
}
@media (max-width: 680px) {
	.z-oem-grid {
		grid-template-columns: 1fr;
	}
}

/* Count-up numbers polish */
.z-stat-number {
	font-variant-numeric: tabular-nums;
}

/* FAQ view-all link */
.z-faq-more {
	display: inline-block;
	margin-top: 18px;
	color: var(--z-primary-dark);
	font-weight: 700;
	text-decoration: none;
}
.z-faq-more:hover {
	text-decoration: underline;
}

/* Clear the mobile inquiry bar on product pages (<1024px) */
@media (max-width: 1023px) {
	.z-product-page .z-wa-float,
	.z-wa-float {
		bottom: 86px; /* above sticky inquiry bar */
	}
	.z-back-top {
		bottom: 150px; /* above WhatsApp float */
	}
}

@media (prefers-reduced-motion: reduce) {
	.z-product-card,
	.z-product-card .z-card-media img,
	.z-wa-float,
	.z-mobile-bar,
	.z-program-card {
		transition: none;
	}
}
