/*
Theme Name: ZRAY
Theme URI: https://www.zraychina.com
Author: ZRAY / Buddy
Description: ZRAY industrial B2B theme v3.0 — Gertex-inspired B2B practical design, EN/RU bilingual, lightweight custom WordPress theme. VI red #e10914, gray #5a5a5a.
Version: 3.7.7
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: zray
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
	--z-red: #e10914;
	--z-red-dark: #c20812;
	--z-red-soft: rgba(225, 9, 20, 0.08);

	--z-ink: #111418;
	--z-ink-2: #1c2128;
	--z-gray: #5a5a5a;
	--z-muted: #8a919c;
	--z-line: #e6e8eb;
	--z-bg: #ffffff;
	--z-bg-soft: #f7f8fa;
	--z-bg-dark: #0e1013;

	--z-font-display: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--z-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	--z-container: 1280px;
	--z-gutter: 24px;
	--z-radius: 4px;
	--z-shadow: 0 8px 24px rgba(17, 20, 24, 0.08);
	--z-shadow-lg: 0 24px 56px rgba(17, 20, 24, 0.14);
	--z-transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--z-font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--z-ink);
	background: var(--z-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--z-transition);
}

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 15px;
}

::selection {
	background: var(--z-red);
	color: #fff;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--z-font-display);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--z-ink);
}

h1 {
	color: var(--z-red);
}

.section--dark h1,
.contact-form-block h1,
.conversion-cta h1 {
	color: #fff;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 0 var(--z-gutter);
}

.section {
	padding: 88px 0;
}

.section--soft {
	background: var(--z-bg-soft);
}

.section--dark {
	background: var(--z-bg-dark);
	color: var(--z-muted);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
	color: #fff;
}

.section--tight {
	padding: 56px 0;
}

/* Section heading — left aligned (Gertex style) */
.section-head {
	margin-bottom: 40px;
}

.section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--z-red);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	color: var(--z-ink);
	margin-bottom: 14px;
}

.section-title--red {
	color: var(--z-red);
}

.section-sub {
	font-size: 16px;
	color: var(--z-gray);
	line-height: 1.7;
	max-width: 820px;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 30px;
	font-family: var(--z-font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	border-radius: var(--z-radius);
	cursor: pointer;
	transition: all var(--z-transition);
	white-space: nowrap;
	border: 1.5px solid transparent;
	line-height: 1;
}

.btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	transition: transform var(--z-transition);
}

.btn:hover svg {
	transform: translateX(4px);
}

.btn--primary {
	background: var(--z-red);
	color: #fff;
	border-color: var(--z-red);
}

.btn--primary:hover {
	background: var(--z-red-dark);
	border-color: var(--z-red-dark);
	box-shadow: 0 10px 24px rgba(225, 9, 20, 0.28);
}

.btn--outline {
	background: transparent;
	color: var(--z-red);
	border-color: var(--z-red);
}

.btn--outline:hover {
	background: var(--z-red);
	color: #fff;
}

.btn--outline-red {
	background: transparent;
	color: var(--z-red);
	border-color: var(--z-red);
}

.btn--outline-red:hover {
	background: var(--z-red);
	color: #fff;
}

.btn--white {
	background: #fff;
	color: var(--z-red);
	border-color: #fff;
}

.btn--white:hover {
	background: transparent;
	color: #fff;
}

.btn--sm {
	padding: 10px 22px;
	font-size: 12px;
}

.btn--lg {
	padding: 18px 36px;
	font-size: 14px;
}

/* ============================================================
   5. HEADER — Gertex style: solid white, red+black logo, search, lang
   ============================================================ */
.header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid var(--z-line);
	transition: box-shadow var(--z-transition);
}

/* Topbar: contact left, language switch right (cartonerecting-style) */
.header__topbar {
	background: var(--z-ink);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 40px;
}

.header__topbar-contact {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header__topbar-contact a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	transition: color var(--z-transition);
}

.header__topbar-contact a:hover {
	color: #fff;
}

.header__topbar-contact svg {
	width: 14px;
	height: 14px;
	color: var(--z-red);
	flex-shrink: 0;
}

.header__topbar .lang-switch {
	background: transparent;
	border: none;
}

.header__topbar .lang-switch a {
	color: rgba(255, 255, 255, 0.8);
}

.header__topbar .lang-switch a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.header__topbar .lang-switch a.active {
	background: var(--z-red);
	color: #fff;
}

.header--scrolled {
	box-shadow: 0 4px 16px rgba(17, 20, 24, 0.06);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 88px;
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 0 var(--z-gutter);
}

.header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header__logo img {
	height: 38px;
	width: auto;
}

.header__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.header__nav .menu {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: nowrap;
}

.header__nav .menu a {
	display: block;
	padding: 10px 14px;
	font-family: var(--z-font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	color: var(--z-ink);
	transition: color var(--z-transition);
	position: relative;
	white-space: nowrap;
}

.header__nav .menu .nav-item-long a {
	padding: 10px 10px;
}

.header__nav .menu a:hover,
.header__nav .menu .current-menu-item > a,
.header__nav .menu .current_page_item > a {
	color: var(--z-red);
}

.header__nav .menu a::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 4px;
	height: 2px;
	background: var(--z-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.header__nav .menu a:hover::after {
	transform: scaleX(1);
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--z-line);
	border-radius: 4px;
	padding: 4px;
	background: #fff;
}

.lang-switch a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-family: var(--z-font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--z-gray);
	border-radius: 3px;
	transition: all var(--z-transition);
}

.lang-switch a:hover {
	color: var(--z-ink);
}

.lang-switch a.active {
	background: var(--z-red);
	color: #fff;
}

.lang-switch .lang-flag {
	width: 18px;
	height: 12px;
	border-radius: 1px;
	object-fit: cover;
	flex-shrink: 0;
}

.lang-switch .sep {
	width: 1px;
	height: 14px;
	background: var(--z-line);
}

/* Mobile */
.header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border-radius: 4px;
}

.header__toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--z-ink);
	transition: all 0.3s ease;
}

.header__toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}

.header__toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   6. HERO BANNER (Screen 1) — full-width image with overlay headline
   ============================================================ */
.hero-banner {
	position: relative;
	background: #fff;
	min-height: 640px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-banner__bg {
	position: absolute;
	inset: 0;
}

.hero-banner__bg img,
.hero-banner__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-banner__bg video {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(28, 33, 40, 0.6);
}

.hero-banner__content {
	position: relative;
	z-index: 2;
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 140px var(--z-gutter);
	width: 100%;
}

.hero-banner__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--z-red);
	margin-bottom: 18px;
}

.hero-banner__title {
	font-size: clamp(40px, 5.4vw, 64px);
	font-weight: 800;
	color: var(--z-red);
	line-height: 1.05;
	margin-bottom: 22px;
	max-width: 820px;
}

.hero-banner__title .accent {
	color: var(--z-red);
}

.hero-banner__sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	max-width: 640px;
	margin-bottom: 36px;
	line-height: 1.7;
}

.hero-banner__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Plain hero variant (white bg) for inner pages */
.hero-mini {
	background: var(--z-bg-soft);
	padding: 120px 0 80px;
	text-align: center;
}

/* ============================================================
   7. SECTION 7: PRODUCTS BLOCK (Screen 2)
   ============================================================ */
.products-block {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: stretch;
	padding: 88px 0;
}

.products-block__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.products-block__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--z-red);
	margin-bottom: 22px;
	line-height: 1.1;
}

.products-block__sub {
	font-size: 16px;
	color: var(--z-gray);
	line-height: 1.75;
	margin-bottom: 28px;
}

.products-block__notice {
	background: var(--z-bg-soft);
	border-left: 3px solid var(--z-red);
	padding: 18px 22px;
	margin-bottom: 28px;
	border-radius: 0 4px 4px 0;
}

.products-block__notice strong {
	display: block;
	font-family: var(--z-font-display);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--z-ink);
}

.products-block__notice p {
	font-size: 13px;
	color: var(--z-gray);
	line-height: 1.6;
}

.products-block__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.products-block__media {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 16px;
}

.products-block__media .product-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
	background: var(--z-bg-soft);
	min-height: 200px;
}

.products-block__media .product-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.products-block__media .product-tile:hover img {
	transform: scale(1.05);
}

.products-block__media .product-tile:first-child {
	grid-column: 1 / -1;
	grid-row: 1;
	min-height: 340px;
}

.product-tile__overlay {
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 18px 20px;
 color: #fff;
 background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 70%);
}

.product-tile__badge {
	display: inline-block;
	background: var(--z-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 10px;
}

.product-tile__title {
	font-family: var(--z-font-display);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}

.product-tile__small-title {
	font-family: var(--z-font-display);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.product-tile__desc {
	font-size: 12px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 8px;
}

.product-tile__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--z-font-display);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.4px;
}

.product-tile__link svg {
	width: 12px;
	height: 12px;
}

/* ============================================================
   8. SECTION 8: MARKETS / INDUSTRIES (Screen 3)
   ============================================================ */
.markets-block {
	padding: 88px 0;
}

.markets-block__head {
	text-align: center;
	margin-bottom: 56px;
}

.markets-block__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--z-red);
	margin-bottom: 18px;
}

.markets-block__sub {
	font-size: 16px;
	color: var(--z-gray);
	max-width: 920px;
	margin: 0 auto;
	line-height: 1.7;
}

.markets-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.markets-tabs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.markets-tab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--z-line);
	border-radius: 4px;
	font-family: var(--z-font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--z-ink);
	text-align: left;
	transition: all var(--z-transition);
}

.markets-tab:hover,
.markets-tab.active {
	background: var(--z-red);
	border-color: var(--z-red);
	color: #fff;
}

.markets-tab svg {
	width: 14px;
	height: 14px;
}

.markets-feature {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	min-height: 420px;
}

.markets-feature img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.markets-feature__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 32px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 80%);
	color: #fff;
}

.markets-feature__badge {
	display: inline-block;
	background: var(--z-red);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 6px 14px;
	border-radius: 3px;
	margin-bottom: 14px;
}

.markets-feature__text {
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	max-width: 360px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.markets-feature__arrow {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--z-red);
	color: #fff;
	border-radius: 50%;
	transition: transform var(--z-transition);
}

.markets-feature__arrow svg {
 width: 16px;
 height: 16;
}

.markets-feature__arrow:hover {
	transform: translateX(4px);
}

.markets-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 24px;
}

.markets-side .product-tile {
	min-height: 198px;
}

/* ============================================================
   9. SECTION 9: EQUIPMENT / MATERIALS (Screen 4) + BRANDS
   ============================================================ */
.equipment-block {
	padding: 88px 0;
	background: #fff;
}

.equipment-block__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--z-red);
	margin-bottom: 14px;
}

.equipment-block__sub {
	font-size: 16px;
	color: var(--z-gray);
	margin-bottom: 48px;
	max-width: 820px;
}

.equipment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.equipment-cats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}

.equipment-cat__group {
	margin-bottom: 8px;
}

.equipment-cat__title {
	font-family: var(--z-font-display);
	font-size: 18px;
	font-weight: 800;
	color: var(--z-red);
	margin-bottom: 14px;
}

.equipment-cat__list li {
	padding: 6px 0;
	border-bottom: 1px solid var(--z-line);
}

.equipment-cat__list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: var(--z-ink);
	padding: 4px 0;
	transition: color var(--z-transition);
}

.equipment-cat__list a::after {
	content: '→';
	color: var(--z-red);
	font-weight: 700;
	transition: transform var(--z-transition);
}

.equipment-cat__list a:hover {
	color: var(--z-red);
}

.equipment-cat__list a:hover::after {
	transform: translateX(4px);
}

.equipment-visual {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	min-height: 420px;
	background: var(--z-bg-soft);
}

.equipment-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Brand logo wall (auto-scrolling carousel) */
.brands-wall {
	margin-top: 56px;
	padding: 28px 0;
	border-top: 1px solid var(--z-line);
	border-bottom: 1px solid var(--z-line);
	overflow: hidden;
	position: relative;
}

/* Fade masks on both sides for a smooth carousel edge */
.brands-wall::before,
.brands-wall::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.brands-wall::before {
	left: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-wall::after {
	right: 0;
	background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-wall__track {
	display: flex;
	width: max-content;
	animation: brands-scroll 36s linear infinite;
}

.brands-wall:hover .brands-wall__track {
	animation-play-state: paused;
}

.brands-wall__group {
	display: flex;
	align-items: center;
	gap: 64px;
	padding-right: 64px;
}

.brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 48px;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter var(--z-transition), opacity var(--z-transition);
}

.brand-logo img {
	height: 100%;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}

.brand-logo:hover {
	filter: grayscale(0);
	opacity: 1;
}

@keyframes brands-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.brands-wall__track {
		animation: none;
		width: 100%;
		overflow-x: auto;
	}
	.brands-wall__group {
		flex-wrap: wrap;
	}
}

/* ============================================================
   10. SECTION 10: CONVERSION CTA (Screen 5) — red band with video + 4 CTAs
   ============================================================ */
.conversion-cta {
	position: relative;
	background: var(--z-red);
	color: #fff;
	padding: 72px 0;
	overflow: hidden;
}

.conversion-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 0L40 40M40 0L0 40' stroke='rgba(255,255,255,0.06)' stroke-width='1'/></svg>");
}

.conversion-cta__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.conversion-cta__video {
	position: relative;
	aspect-ratio: 16 / 9;
	background: rgba(0, 0, 0, 0.25);
	border: 4px solid rgba(255, 255, 255, 0.85);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.conversion-cta__video img,
.conversion-cta__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conversion-cta__play {
	position: absolute;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	color: var(--z-red);
	border-radius: 50%;
}

.conversion-cta__play svg {
	width: 24px;
	height: 24px;
}

.conversion-cta__title {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 20px;
	text-align: center;
}

.conversion-cta__links {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.conversion-cta__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	font-family: var(--z-font-display);
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	color: #fff;
	transition: all var(--z-transition);
}

.conversion-cta__link:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.conversion-cta__link:hover {
	padding-left: 12px;
}

.conversion-cta__link svg {
	width: 24px;
	height: 24px;
}

/* ============================================================
   11. SECTION 11: BLOG (Screen 6)
   ============================================================ */
.blog-block {
	padding: 88px 0;
}

.blog-block__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--z-red);
	text-align: center;
	margin-bottom: 56px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.blog-card {
	position: relative;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	min-height: 240px;
	transition: transform var(--z-transition);
}

.blog-card:hover {
	transform: translateY(-4px);
}

.blog-card__media {
	position: absolute;
	inset: 0;
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
	transform: scale(1.05);
}

.blog-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 24px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 60%);
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.blog-card__title {
	font-family: var(--z-font-display);
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	flex: 1;
}

.blog-card__arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--z-red);
	color: #fff;
	border-radius: 50%;
	flex-shrink: 0;
}

.blog-card__arrow svg {
	width: 14px;
	height: 14px;
}

/* ============================================================
   12. SECTION 12: CONTACT FORM (Screen 7)
   ============================================================ */
.contact-form-block {
	position: relative;
	background: #1c2128;
	color: #fff;
	padding: 88px 0;
	overflow: hidden;
}

.contact-form-block::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(28, 33, 40, 0.95) 0%, rgba(28, 33, 40, 0.7) 60%, rgba(28, 33, 40, 0.45) 100%),
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><rect width='800' height='600' fill='%23222'/></svg>");
	background-size: cover;
	background-position: center;
}

.contact-form-block__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.contact-form-block__copy .eyebrow {
	color: var(--z-red);
}

.contact-form-block__title {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 24px;
	line-height: 1.15;
}

.contact-form-block__sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 460px;
}

.contact-form-block__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--z-red);
	color: #fff;
	font-family: var(--z-font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 14px 28px;
	border-radius: 4px;
	transition: background var(--z-transition);
}

.contact-form-block__cta:hover {
	background: var(--z-red-dark);
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form .field--full {
	grid-column: 1 / -1;
}

.contact-form .field label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 6px;
	letter-spacing: 0.4px;
}

.contact-form .field label .req {
	color: var(--z-red);
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
	width: 100%;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: var(--z-ink);
	font-size: 14px;
	outline: none;
	transition: border-color var(--z-transition);
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
	border-color: var(--z-red);
	background: #fff;
}

.contact-form .field textarea {
	min-height: 100px;
	resize: vertical;
}

.contact-form .field--submit {
	grid-column: 1 / -1;
	text-align: right;
}

.contact-form .field--submit .btn {
	padding: 14px 36px;
	background: var(--z-red);
	color: #fff;
	border: none;
	cursor: pointer;
}

.contact-form .field--submit .btn:hover {
	background: var(--z-red-dark);
}

/* ============================================================
   13. PAGE BANNER (Inner pages)
   ============================================================ */
.page-banner {
	background: var(--z-bg-soft);
	padding: 80px 0;
	text-align: center;
	border-bottom: 1px solid var(--z-line);
}

.page-banner__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--z-red);
	margin-bottom: 12px;
}

.page-banner h1 {
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 800;
	color: var(--z-ink);
	margin-bottom: 16px;
}

.page-banner__sub {
	font-size: 17px;
	color: var(--z-gray);
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ============================================================
   14. BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
	background: #fff;
	border-bottom: 1px solid var(--z-line);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 0;
	font-size: 13px;
}

.breadcrumb a {
	color: var(--z-gray);
}

.breadcrumb a:hover {
	color: var(--z-red);
}

.breadcrumb .sep {
	color: var(--z-line);
}

.breadcrumb .current {
	color: var(--z-ink);
	font-weight: 600;
}

/* ============================================================
   15. PRODUCT DETAIL
   ============================================================ */
.product-detail {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: start;
	margin-bottom: 48px;
}

.product-detail__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 4px;
	background: var(--z-bg-soft);
}

.product-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--z-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 3px;
}

.product-detail__title {
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	margin-bottom: 14px;
	color: var(--z-red);
}

.product-detail__tagline {
	font-size: 16px;
	color: var(--z-gray);
	line-height: 1.7;
	margin-bottom: 24px;
}

.product-detail__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 28px;
}

.product-stat {
	padding: 14px 18px;
	background: var(--z-bg-soft);
	border-left: 3px solid var(--z-red);
	border-radius: 0 4px 4px 0;
}

.product-stat__val {
	font-family: var(--z-font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--z-ink);
	line-height: 1.2;
	margin-bottom: 4px;
}

.product-stat__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--z-gray);
}

.product-detail__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* Tabs */
.tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 1px solid var(--z-line);
	margin-bottom: 32px;
}

.tab-btn {
	position: relative;
	padding: 14px 22px;
	font-family: var(--z-font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--z-gray);
	transition: color var(--z-transition);
}

.tab-btn::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: var(--z-red);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
	color: var(--z-red);
}

.tab-btn.active::after {
	transform: scaleX(1);
}

.tab-panel {
	display: none;
	animation: fadeUp 0.4s ease;
}

.tab-panel.active {
	display: block;
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* Archive product grid (used on product center page and related products) */
.archive-products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.archive-products .product-tile {
	min-height: 320px;
}

@media (max-width: 600px) {
	.archive-products {
		grid-template-columns: 1fr;
	}
}

.value-card {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--z-line);
	border-radius: 4px;
}

.value-card h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.value-card h4::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--z-red);
	transform: rotate(45deg);
}

.value-card p {
	font-size: 14px;
	color: var(--z-gray);
	line-height: 1.7;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 32px;
	font-size: 14px;
}

.spec-table th {
	background: var(--z-red);
	color: #fff;
	font-weight: 700;
	text-align: left;
	padding: 14px 18px;
	font-size: 13px;
}

.spec-table td {
	padding: 13px 18px;
	border-bottom: 1px solid var(--z-line);
}

.spec-table tr:nth-child(even) td {
	background: var(--z-bg-soft);
}

.spec-table td:first-child {
	font-weight: 600;
	color: var(--z-ink);
}

/* ============================================================
   16. ARTICLE (single post)
   ============================================================ */
.article-layout {
	max-width: 860px;
	margin: 0 auto;
}

.article-head {
	margin-bottom: 40px;
}

.article-cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--z-red);
	margin-bottom: 12px;
}

.article-title {
	font-size: clamp(28px, 3.8vw, 44px);
	font-weight: 800;
	margin-bottom: 18px;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 13px;
	color: var(--z-gray);
}

.article-meta svg {
	width: 14px;
	height: 14px;
}

.article-meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.article-featured {
	margin-bottom: 40px;
	border-radius: 4px;
	overflow: hidden;
}

.article-featured img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.article-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--z-gray);
}

.article-content h2 {
	font-size: 26px;
	margin: 40px 0 18px;
}

.article-content h3 {
	font-size: 21px;
	margin: 32px 0 14px;
}

.article-content p {
	margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.article-content ul li {
	list-style: disc;
	margin-bottom: 8px;
}

.article-content ol li {
	list-style: decimal;
	margin-bottom: 8px;
}

.article-content blockquote {
	margin: 32px 0;
	padding: 24px 28px;
	border-left: 4px solid var(--z-red);
	background: var(--z-bg-soft);
	font-style: italic;
}

.article-content a {
	color: var(--z-red);
	border-bottom: 1px solid transparent;
}

.article-content a:hover {
	border-bottom-color: var(--z-red);
}

/* ============================================================
   17. FORMS (CF7)
   ============================================================ */
.wpcf7 form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.wpcf7 form > .wpcf7-form-control-wrap,
.wpcf7 form > p {
	grid-column: 1 / -1;
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 input[type='tel'],
.wpcf7 input[type='url'],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--z-line);
	border-radius: 4px;
	background: var(--z-bg);
	color: var(--z-ink);
	outline: none;
	transition: border-color var(--z-transition), box-shadow var(--z-transition);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--z-red);
	box-shadow: 0 0 0 3px rgba(225, 9, 20, 0.12);
}

.wpcf7 textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7 input[type='submit'],
.wpcf7 .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 36px;
	background: var(--z-red);
	color: #fff;
	font-family: var(--z-font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 1.5px solid var(--z-red);
	border-radius: 4px;
	cursor: pointer;
	transition: all var(--z-transition);
}

.wpcf7 input[type='submit']:hover {
	background: var(--z-red-dark);
}

.wpcf7 .wpcf7-not-valid {
	border-color: var(--z-red) !important;
}

/* ============================================================
   18. CONTACT (template-contact)
   ============================================================ */
.contact-layout {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 56px;
	align-items: start;
}

.quote-form h2,
.contact-info h2 {
	font-size: 26px;
	margin-bottom: 12px;
}

.quote-form > p {
	color: var(--z-gray);
	margin-bottom: 28px;
}

.contact-info__list {
	margin-top: 32px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid var(--z-line);
}

.info-item__icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--z-red-soft);
	color: var(--z-red);
	border-radius: 4px;
}

.info-item__icon svg {
	width: 18px;
	height: 18px;
}

.info-item h4 {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
}

.info-item p {
	font-size: 14px;
	color: var(--z-gray);
}

.info-item a {
	color: var(--z-ink);
	font-weight: 600;
}

.info-item a:hover {
	color: var(--z-red);
}

.zray-map {
	margin-top: 32px;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--z-line);
}

.zray-map iframe {
	width: 100%;
	height: 280px;
	border: none;
	display: block;
}

/* ============================================================
   19. FAQ
   ============================================================ */
.faq-list {
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid var(--z-line);
	border-radius: 4px;
	margin-bottom: 14px;
	overflow: hidden;
	background: #fff;
}

.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 26px;
	text-align: left;
	font-family: var(--z-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--z-ink);
}

.faq-item__q:hover {
	color: var(--z-red);
}

.faq-item__icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--z-line);
	border-radius: 50%;
	color: var(--z-gray);
	font-size: 14px;
	transition: all var(--z-transition);
}

.faq-item.open .faq-item__icon {
	background: var(--z-red);
	border-color: var(--z-red);
	color: #fff;
	transform: rotate(45deg);
}

.faq-item__a {
	display: none;
	padding: 0 26px 22px;
	font-size: 14px;
	color: var(--z-gray);
	line-height: 1.75;
}

.faq-item.open .faq-item__a {
	display: block;
	animation: fadeUp 0.35s ease;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
	background: var(--z-bg-dark);
	color: var(--z-muted);
	padding: 64px 0 0;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--z-red) 0%, var(--z-red) 20%, transparent 20%);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 48px;
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 0 var(--z-gutter) 48px;
}

.footer__brand img {
	height: 34px;
	margin-bottom: 20px;
}

.footer__brand p {
	font-size: 14px;
	line-height: 1.7;
	max-width: 320px;
}

.footer h4 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 22px;
}

.footer__col ul li {
	margin-bottom: 10px;
}

.footer__col ul a {
	font-size: 14px;
	color: var(--z-muted);
	transition: color var(--z-transition);
}

.footer__col ul a:hover {
	color: var(--z-red);
}

.footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
}

.footer__contact svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--z-red);
}

.footer__contact a {
	color: var(--z-muted);
}

.footer__contact a:hover {
	color: #fff;
}

.footer__social {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.footer__social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 4px;
	color: var(--z-muted);
	transition: all var(--z-transition);
}

.footer__social a:hover {
	background: var(--z-red);
	border-color: var(--z-red);
	color: #fff;
}

.footer__social svg {
	width: 16px;
	height: 16px;
}

.footer__made {
	display: block;
	margin-top: 32px;
	max-width: 140px;
	opacity: 0.9;
	border-radius: 4px;
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 22px var(--z-gutter);
	font-size: 13px;
}

.footer__bottom-links {
	display: flex;
	gap: 22px;
}

.footer__bottom-links a {
	color: var(--z-muted);
}

.footer__bottom-links a:hover {
	color: var(--z-red);
}

/* ============================================================
   21. FLOATING BUTTONS
   ============================================================ */
.zray-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.zray-float__btn {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(17, 20, 24, 0.18);
	transition: all var(--z-transition);
}

.zray-float__btn:hover {
	transform: translateY(-3px) scale(1.05);
}

.zray-float__whatsapp {
	background: #25d366;
	color: #fff;
}

.zray-float__mail {
	background: var(--z-ink);
	color: #fff;
}

.zray-float__top {
	background: var(--z-red);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}

.zray-float__top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.zray-float__btn svg {
	width: 22px;
	height: 22px;
}

/* ============================================================
   22. COOKIE BAR (bottom slide-up, cartonerecting-style white bar)
   ============================================================ */
.zray-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 950;
	background: #fff;
	color: #444;
	border-top: 2px solid var(--z-red);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(100%);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: auto;
}

.zray-cookie[hidden] {
	display: none;
}

.zray-cookie.is-open {
	transform: translateY(0);
}

.zray-cookie.is-leaving {
	transform: translateY(100%);
}

.zray-cookie__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: var(--z-container);
	margin: 0 auto;
	padding: 20px var(--z-gutter);
	flex-wrap: wrap;
}

.zray-cookie__copy {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 280px;
}

.zray-cookie__text {
	font-size: 13px;
	line-height: 1.7;
	color: #444;
}

.zray-cookie__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.zray-cookie__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--z-gray);
	border-bottom: 1px solid var(--z-line);
	padding-bottom: 2px;
	transition: color var(--z-transition), border-color var(--z-transition);
}

.zray-cookie__link:hover {
	color: var(--z-red);
	border-color: var(--z-red);
}

/* No Thanks — outline button */
#zray-cookie-reject {
	background: transparent;
	color: #888;
	border: 1px solid #ccc;
}

#zray-cookie-reject:hover {
	background: var(--z-bg-soft);
	border-color: var(--z-gray);
	color: var(--z-ink);
	box-shadow: none;
}

/* ============================================================
   23. FILTER / PAGINATION
   ============================================================ */
.filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.categories {
	display: flex;
	gap: 8px;
}

.cat-btn {
	padding: 11px 24px;
	border: 1.5px solid var(--z-line);
	border-radius: 4px;
	font-family: var(--z-font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--z-gray);
	transition: all var(--z-transition);
}

.cat-btn:hover {
	border-color: var(--z-ink);
	color: var(--z-ink);
}

.cat-btn.active {
	background: var(--z-ink);
	border-color: var(--z-ink);
	color: #fff;
}

.zray-pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.zray-pagination .nav-links {
	display: flex;
	gap: 6px;
}

.zray-pagination .page-numbers {
	min-width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--z-line);
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	color: var(--z-gray);
	transition: all var(--z-transition);
	padding: 0 12px;
}

.zray-pagination .page-numbers:hover {
	border-color: var(--z-red);
	color: var(--z-red);
}

.zray-pagination .page-numbers.current {
	background: var(--z-red);
	border-color: var(--z-red);
	color: #fff;
}

/* ============================================================
   24. 404
   ============================================================ */
.not-found {
	text-align: center;
	padding: 140px 0;
}

.not-found__code {
	font-family: var(--z-font-display);
	font-size: clamp(80px, 14vw, 160px);
	font-weight: 800;
	color: var(--z-ink);
	line-height: 1;
	margin-bottom: 12px;
}

.not-found__code span {
	color: var(--z-red);
}

.not-found h1 {
	font-size: 28px;
	margin-bottom: 12px;
}

.not-found p {
	color: var(--z-gray);
	margin-bottom: 32px;
}

/* ============================================================
   25. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* ============================================================
   26. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
	.header__nav .menu a {
		padding: 10px 10px;
		font-size: 12.5px;
	}
	.header__topbar-contact {
		gap: 18px;
	}
	.header__topbar-inner {
		gap: 12px;
	}
	.products-block {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.equipment-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.conversion-cta__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-form-block__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.product-detail {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.markets-grid {
		grid-template-columns: 1fr;
	}
	.markets-side {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
	}
	.brands-wall__group {
		gap: 40px;
		padding-right: 40px;
	}
	.brand-logo {
		height: 40px;
	}
	.equipment-cats {
		grid-template-columns: 1fr 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.section {
		padding: 64px 0;
	}
	.hero-banner {
		min-height: 500px;
	}
	.hero-banner__content {
		padding: 100px var(--z-gutter);
	}
	.header__nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 85vw);
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 96px 32px 40px;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		z-index: 990;
		border-left: 1px solid var(--z-line);
	}
	.header__nav.is-open {
		transform: translateX(0);
	}
	.header__nav .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}
	.header__nav .menu a {
		padding: 14px 0;
		font-size: 15px;
		border-bottom: 1px solid var(--z-line);
		color: var(--z-ink) !important;
	}
	.header__nav .menu a::after {
		display: none;
	}
	.header__toggle {
		display: flex;
	}
	.header__quote {
		display: none;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.markets-side {
		grid-template-columns: 1fr;
	}
	.brands-wall__group {
		gap: 32px;
		padding-right: 32px;
	}
	.brand-logo {
		height: 34px;
	}
}

@media (max-width: 600px) {
	.section {
		padding: 56px 0;
	}
	.hero-banner {
		min-height: 440px;
	}
	.hero-banner__title {
		font-size: 32px;
	}
	.hero-banner__actions .btn {
		width: 100%;
	}
	.products-block__media {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.products-block__media .product-tile {
		min-height: 200px;
	}
	.products-block__media .product-tile:first-child {
		grid-column: auto;
		min-height: 240px;
	}
	.equipment-cats {
		grid-template-columns: 1fr;
	}
	.brands-wall__group {
		gap: 24px;
		padding-right: 24px;
	}
	.brand-logo {
		height: 30px;
	}
	.contact-form {
		grid-template-columns: 1fr;
	}
	.value-grid {
		grid-template-columns: 1fr;
	}
	.product-detail__stats {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.wpcf7 form {
		grid-template-columns: 1fr;
	}
	.zray-float {
		bottom: 18px;
		right: 18px;
	}
	.zray-cookie__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 16px 20px;
	}
	.zray-cookie__actions {
		width: 100%;
		justify-content: space-between;
	}
}

/* Utility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 9999;
	background: var(--z-red);
	color: #fff;
	padding: 12px 20px;
	border-radius: 4px;
	font-weight: 600;
}

.skip-link:focus {
	top: 16px;
}