/* ==========================================================================
   Zamiran Abzar — theme.css
   Tokens → base → header → hero → catalog → cards → filters → footer → utilities
   ========================================================================== */

@font-face {
	font-family: 'Vazirmatn';
	src: url('../fonts/Vazirmatn-VF.woff2') format('woff2-variations'), url('../fonts/Vazirmatn-VF.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Estedad';
	src: url('../fonts/Estedad-VF.woff2') format('woff2-variations'), url('../fonts/Estedad-VF.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--graphite: #22252A;
	--graphite-2: #2D3138;
	--graphite-3: #3A3F47;
	--ink: #1A1B1E;
	--steel: #646A73;
	--steel-2: #8A9099;
	--line: #D8DAD6;
	--line-2: #E7E8E5;
	--ground: #EFF0EE;
	--ground-2: #E5E6E3;
	--paper: #FFFFFF;
	--signal: #FD8002;
	--signal-hover: #E87400;
	--signal-deep: #C45F00;
	--signal-soft: #FFF2E4;
	--ok: #1F7A4D;
	--ok-soft: #E4F3EA;
	--danger: #B42318;
	--danger-soft: #FBE9E7;

	--font-body: 'Vazirmatn', 'Segoe UI', Tahoma, system-ui, sans-serif;
	--font-display: 'Estedad', 'Vazirmatn', Tahoma, system-ui, sans-serif;

	--r-s: 4px;
	--r-m: 8px;
	--r-l: 14px;
	--wrap: 1400px;
	--gutter: clamp(16px, 3vw, 40px);
	--header-h: 76px;
	--ease: cubic-bezier(.2, .7, .2, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);
	--shadow-pop: 0 24px 60px -20px rgba(26, 27, 30, .35), 0 2px 8px rgba(26, 27, 30, .08);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.85;
	color: var(--ink);
	background: var(--ground);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
	font-feature-settings: 'ss01' on;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.35; margin: 0; letter-spacing: 0; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
small { font-size: .85em; }
::selection { background: var(--signal); color: var(--ink); }
:focus-visible { outline: 2px solid var(--signal-deep); outline-offset: 2px; border-radius: 2px; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }

.zm-wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.zm-skip { position: absolute; inset-inline-start: 8px; top: -60px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 1000; border-radius: var(--r-s); }
.zm-skip:focus { top: 8px; }
.zm-main { min-height: 60vh; }

/* Icons */
.zm-i { flex: none; }

/* Buttons */
.zm-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 44px; padding: 0 20px; border-radius: 6px;
	font-weight: 600; font-size: 14px; line-height: 1; white-space: nowrap;
	border: 1px solid transparent;
	transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.zm-btn:active { transform: translateY(1px); }
.zm-btn--primary { background: var(--signal); color: var(--ink); }
.zm-btn--primary:hover { background: var(--signal-hover); }
.zm-btn--dark { background: var(--graphite); color: #fff; }
.zm-btn--dark:hover { background: var(--ink); }
.zm-btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.zm-btn--ghost:hover { border-color: var(--ink); }
.zm-btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.zm-btn--outline-light:hover { border-color: #fff; }
.zm-btn--sm { height: 36px; padding: 0 14px; font-size: 13px; }
.zm-btn--lg { height: 52px; padding: 0 28px; font-size: 15px; }
.zm-btn--block { width: 100%; }
.zm-btn[disabled], .zm-btn.is-loading { opacity: .6; pointer-events: none; }

.zm-iconbtn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; color: var(--ink);
	transition: background-color .18s var(--ease);
}
.zm-iconbtn:hover { background: var(--ground); }

/* Badges */
.zm-badge {
	display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: var(--r-s);
	font-size: 12px; font-weight: 700; line-height: 1;
}
.zm-badge--sale { background: var(--signal); color: var(--ink); }
.zm-badge--out { background: var(--ground-2); color: var(--steel); }

/* Breadcrumbs */
.zm-crumbs { display: flex; flex-wrap: wrap; gap: 4px 0; font-size: 13px; color: var(--steel); padding: 14px 0 6px; }
.zm-crumbs a, .zm-crumbs span { display: inline-flex; align-items: center; }
.zm-crumbs a:hover { color: var(--ink); }
.zm-crumbs > *:not(:last-child)::after { content: ''; width: 5px; height: 5px; margin-inline: 10px; border-block-end: 1.5px solid var(--line); border-inline-start: 1.5px solid var(--line); transform: rotate(45deg); }
.zm-crumbs > span:last-child { color: var(--ink); }

/* Loading bar (the slash) */
.zm-loadbar { position: fixed; top: 0; inset-inline: 0; height: 3px; z-index: 1200; pointer-events: none; opacity: 0; transition: opacity .2s; }
.zm-loadbar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--signal) 40%, var(--signal) 60%, transparent); transform: translateX(-100%); }
.zm-loadbar.is-on { opacity: 1; }
.zm-loadbar.is-on::before { animation: zm-sweep 1s var(--ease) infinite; }
@keyframes zm-sweep { to { transform: translateX(100%); } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.zm-header { position: sticky; top: 0; z-index: 900; background: var(--paper); border-block-end: 1px solid var(--line-2); }
.zm-header__bar { display: flex; align-items: center; gap: 12px; height: var(--header-h); }
.zm-header__burger { display: none; margin-inline-start: -10px; }
.zm-header__logo { display: flex; align-items: center; gap: 10px; flex: none; margin-inline-end: 6px; }
.zm-logo__mark { width: 44px; height: 44px; }
.zm-logo__word { width: auto; height: 22px; }
.zm-header__cats {
	display: inline-flex; align-items: center; gap: 10px; flex: none;
	height: 46px; padding: 0 16px 0 12px; border-radius: 6px;
	background: var(--graphite); color: #fff; font-weight: 600; font-size: 14px;
	transition: background-color .18s var(--ease);
}
.zm-header__cats:hover, .zm-header__cats[aria-expanded="true"] { background: var(--ink); }
.zm-header__caret { transition: transform .25s var(--ease); }
.zm-header__cats[aria-expanded="true"] .zm-header__caret { transform: rotate(180deg); }

.zm-search { position: relative; flex: 1 1 auto; min-width: 0; }
.zm-search__field { position: relative; }
.zm-search__input {
	width: 100%; height: 46px; padding-inline-start: 52px; padding-inline-end: 16px; border-radius: 6px;
	border: 1px solid transparent; background: var(--ground);
	transition: background-color .18s, border-color .18s, box-shadow .18s;
}
.zm-search__input::placeholder { color: var(--steel-2); }
.zm-search__input:focus { outline: 0; background: #fff; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(34, 37, 42, .08); }
.zm-search__input::-webkit-search-cancel-button { -webkit-appearance: none; }
.zm-search__btn { position: absolute; inset-inline-end: auto; inset-inline-start: 4px; top: 4px; width: 40px; height: 38px; border-radius: 4px; display: grid; place-items: center; color: var(--steel); transition: color .18s, background-color .18s; }
.zm-search__btn:hover { color: var(--ink); background: var(--ground-2); }
.zm-search__results {
	position: absolute; top: calc(100% + 8px); inset-inline: 0; z-index: 50;
	background: #fff; border-radius: var(--r-m); box-shadow: var(--shadow-pop); border: 1px solid var(--line-2);
	max-height: min(70vh, 560px); overflow: auto; padding: 8px;
	animation: zm-pop .18s var(--ease-out);
}
.zm-search__results[hidden] { display: none; }
.zm-sr { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 8px; border-radius: 6px; }
.zm-sr:hover, .zm-sr.is-focus { background: var(--ground); }
.zm-sr img { width: 56px; height: 56px; object-fit: contain; border-radius: 4px; background: #fff; border: 1px solid var(--line-2); }
.zm-sr__name { font-size: 13.5px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zm-sr__price { font-size: 13px; font-weight: 700; white-space: nowrap; }
.zm-sr__price.is-inquiry { color: var(--signal-deep); font-weight: 600; }
.zm-search__all { display: block; text-align: center; padding: 10px; margin-top: 4px; border-top: 1px solid var(--line-2); font-size: 13px; font-weight: 600; color: var(--signal-deep); }
.zm-search__status { padding: 14px; text-align: center; color: var(--steel); font-size: 13px; }

.zm-header__actions { display: flex; align-items: center; gap: 4px; flex: none; margin-inline-start: auto; }
.zm-header__phone { display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; height: 44px; font-weight: 600; font-size: 14px; color: var(--ink); border-radius: 6px; }
.zm-header__phone:hover { background: var(--ground); }
.zm-header__cart { position: relative; }
.zm-cart-count {
	position: absolute; top: 4px; inset-inline-end: 2px; min-width: 18px; height: 18px; padding: 0 5px;
	border-radius: 9px; background: var(--ground-2); color: var(--steel);
	font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
	transition: transform .25s var(--ease-out), background-color .18s;
}
.zm-cart-count:not(.has-items) { display: none; }
.zm-cart-count.has-items { background: var(--signal); color: var(--ink); }
.zm-cart-count.is-bump { transform: scale(1.35); }

/* Mega menu */
.zm-mega {
	position: absolute; top: 100%; inset-inline: 0; z-index: 60;
	background: #fff; border-block-end: 1px solid var(--line-2); box-shadow: var(--shadow-pop);
	transform-origin: top; animation: zm-drop .22s var(--ease-out);
}
.zm-mega[hidden] { display: none; }
@keyframes zm-drop { from { opacity: 0; transform: translateY(-6px); } }
@keyframes zm-pop { from { opacity: 0; transform: translateY(6px); } }
.zm-mega__inner { display: grid; grid-template-columns: 300px 1fr; max-height: calc(100vh - var(--header-h)); }
.zm-mega__side { background: var(--ground); padding: 16px 0 16px 16px; display: flex; flex-direction: column; min-height: 0; }
.zm-mega__find { position: relative; display: flex; align-items: center; gap: 8px; margin: 0 16px 8px 0; padding-inline-start: 12px; height: 40px; background: #fff; border: 1px solid var(--line); border-radius: 6px; color: var(--steel); }
.zm-mega__find input { flex: 1; min-width: 0; height: 100%; border: 0; background: none; outline: 0; font-size: 13.5px; }
.zm-mega__list { overflow: auto; padding-inline-end: 8px; }
.zm-mega__tab {
	display: flex; align-items: center; gap: 10px; padding: 9px 12px; margin-inline-end: 8px;
	border-radius: 6px 0 0 6px; font-size: 14px; font-weight: 500; color: var(--ink);
	position: relative; transition: background-color .15s, color .15s;
}
[dir="rtl"] .zm-mega__tab { border-radius: 0 6px 6px 0; }
.zm-mega__tab small { margin-inline-start: auto; font-size: 12px; color: var(--steel-2); font-variant-numeric: tabular-nums; }
.zm-mega__ico { color: var(--steel); transition: color .15s; }
.zm-mega__tab:hover { background: var(--ground-2); }
.zm-mega__tab.is-active { background: #fff; font-weight: 700; margin-inline-end: 0; }
.zm-mega__tab.is-active .zm-mega__ico { color: var(--signal-deep); }
.zm-mega__tab.is-active::before { content: ''; position: absolute; inset-block: 8px; inset-inline-start: 0; width: 3px; background: var(--signal); border-radius: 2px; }
.zm-mega__tab--brands { margin-top: 8px; border-top: 1px solid var(--line); padding-top: 14px; border-radius: 0; }
.zm-mega__panels { padding: 24px 32px 28px; overflow: auto; min-height: 320px; }
.zm-mega__panel[hidden] { display: none; }
.zm-mega__panel { animation: zm-fade .2s var(--ease-out); }
@keyframes zm-fade { from { opacity: 0; } }
.zm-mega__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line-2); }
.zm-mega__head h2 { font-size: 20px; }
.zm-mega__head a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--signal-deep); }
.zm-mega__cols { columns: 3; column-gap: 32px; }
.zm-mega__group { break-inside: avoid; margin-bottom: 18px; }
.zm-mega__group-title { display: block; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.zm-mega__group-title small { color: var(--steel-2); font-weight: 500; font-size: 12px; }
.zm-mega__group-title:hover { color: var(--signal-deep); }
.zm-mega__group ul a { display: block; font-size: 13.5px; color: var(--steel); padding: 2px 0; }
.zm-mega__group ul a:hover { color: var(--ink); }
.zm-mega__more { color: var(--signal-deep) !important; font-weight: 600; }
.zm-mega__found { padding: 4px; }
.zm-mega__found[hidden] { display: none; }
.zm-found__item { display: flex; align-items: baseline; gap: 10px; padding: 8px 10px; border-radius: 6px; font-size: 14px; }
.zm-found__item:hover { background: var(--ground); }
.zm-found__item small { color: var(--steel-2); font-size: 12px; }
.zm-found__item em { font-style: normal; color: var(--steel); font-size: 12.5px; margin-inline-start: auto; }
.zm-found__empty { padding: 20px; color: var(--steel); font-size: 13.5px; }

.zm-brandlist { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.zm-brandlist a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--r-m); transition: border-color .15s, transform .15s var(--ease); }
.zm-brandlist a:hover { border-color: var(--ink); transform: translateY(-2px); }
.zm-brandlist strong { font-size: 15px; }
.zm-brandlist span { font-size: 12px; color: var(--steel); font-weight: 600; letter-spacing: .02em; }
.zm-brandlist small { font-size: 12px; color: var(--steel-2); }

/* Scrim + off-canvas */
.zm-scrim { position: fixed; inset: 0; z-index: 950; background: rgba(26, 27, 30, .55); backdrop-filter: blur(2px); animation: zm-fade .2s; }
.zm-scrim[hidden] { display: none; }
.zm-offcanvas {
	position: fixed; inset-block: 0; z-index: 960; width: min(420px, 92vw);
	background: #fff; display: flex; flex-direction: column;
	transition: transform .32s var(--ease-out);
}
.zm-offcanvas[hidden] { display: none; }
.zm-offcanvas--start { inset-inline-start: 0; transform: translateX(100%); }
.zm-offcanvas--end { inset-inline-end: 0; transform: translateX(-100%); }
[dir="ltr"] .zm-offcanvas--start { transform: translateX(-100%); }
[dir="ltr"] .zm-offcanvas--end { transform: translateX(100%); }
.zm-offcanvas.is-open { transform: none; }
.zm-offcanvas__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 12px 20px; border-bottom: 1px solid var(--line-2); }
.zm-offcanvas__head h2 { font-size: 18px; }
.zm-offcanvas__head img { width: 46px; height: auto; }
.zm-offcanvas__body { flex: 1; overflow: auto; padding: 16px 20px; }
.zm-offcanvas__foot { padding: 12px 20px; border-top: 1px solid var(--line-2); }
.zm-offcanvas__title { font-size: 12.5px; color: var(--steel); font-weight: 600; margin: 18px 0 8px; }
.zm-offcanvas__account { display: flex; align-items: center; gap: 10px; padding: 12px 2px; margin-bottom: 6px; border-bottom: 1px solid var(--line-2); font-size: 15px; font-weight: 700; color: var(--ink); }
.zm-offcanvas__account .zm-i:first-child { color: var(--signal-deep); }
.zm-offcanvas__account span { flex: 1; }
.zm-offcanvas__account .zm-i:last-child { color: var(--steel-2); }
.zm-offcanvas__links a { display: block; padding: 8px 0; font-size: 14.5px; border-bottom: 1px solid var(--line-2); }
.zm-search--mobile .zm-search__input { background: var(--ground); }
.zm-acc__row { display: flex; align-items: center; }
.zm-acc__row > a { display: flex; align-items: center; gap: 10px; flex: 1; padding: 10px 0; font-size: 15px; font-weight: 600; }
.zm-acc__row .zm-i { color: var(--steel); }
.zm-acc__toggle { width: 40px; height: 40px; display: grid; place-items: center; color: var(--steel); transition: transform .25s var(--ease); }
.zm-acc__toggle[aria-expanded="true"] { transform: rotate(180deg); }
.zm-acc__sub { padding: 0 24px 8px 0; }
.zm-acc__sub[hidden] { display: none; }
.zm-acc__sub a { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--steel); }
.zm-acc__sub small { color: var(--steel-2); }
.zm-acc > li { border-bottom: 1px solid var(--line-2); }

/* Cart drawer */
.zm-drawer__body { flex: 1; overflow: auto; padding: 16px 20px; }
.zm-drawer__empty { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 60px 0; color: var(--steel); }
.zm-drawer__empty .zm-i { color: var(--line); }

/* --------------------------------------------------------------------------
   Hero: compact statement + the flagship tool
   -------------------------------------------------------------------------- */
.zm-hero { position: relative; background: var(--graphite); color: #fff; overflow: hidden; isolation: isolate; }
.zm-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 63%, rgba(253, 128, 2, .12) 63.15%, rgba(253, 128, 2, .12) 64.4%, transparent 64.55%); pointer-events: none; }
.zm-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: center; min-height: 480px; padding-block: 52px 56px; }
.zm-hero__grid > * { min-width: 0; }
.zm-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, .62); margin-bottom: 16px; }
.zm-hero__eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--signal); transform: skewX(-30deg); }
.zm-hero__title { font-size: clamp(34px, 4.4vw, 60px); font-weight: 900; line-height: 1.18; margin-bottom: 14px; }
.zm-hero__eyebrow, .zm-hero__title, .zm-hero__text, .zm-hero__cta, .zm-hero__phone { animation: zm-rise .7s var(--ease-out) both; }
.zm-hero__text { animation-delay: .15s; font-size: clamp(14.5px, 1.2vw, 16.5px); line-height: 1.95; color: rgba(255, 255, 255, .76); max-width: 48ch; margin-bottom: 24px; }
.zm-hero__cta { animation-delay: .28s; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.zm-hero__phone { animation-delay: .4s; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.zm-hero__phone .zm-i { color: var(--signal); }
.zm-hero__phone:hover { color: #fff; }
@keyframes zm-rise { from { opacity: 0; transform: translateY(22px); } }

/* Brand mosaic: 3×3 cells, Bosch takes the 2×2 block on the start side */
.zm-hero__brands { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 118px; gap: 12px; }
.zm-hero__brand {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 14px;
	background: #fff; color: var(--ink); border-radius: 10px; text-decoration: none; text-align: center;
	box-shadow: 0 12px 30px -18px rgba(0, 0, 0, .65); transition: transform .22s var(--ease), box-shadow .22s var(--ease);
	animation: zm-rise .7s var(--ease-out) both; animation-delay: calc(.12s + var(--i, 0) * 70ms);
}
.zm-hero__brand:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -18px rgba(0, 0, 0, .75); }
.zm-hero__brand--lead { grid-column: 1 / span 2; grid-row: 1 / span 2; gap: 18px; }
.zm-hero__brand-logo { display: block; width: auto; height: auto; max-width: 74%; max-height: 32px; object-fit: contain; }
.zm-hero__brand--lead .zm-hero__brand-logo { max-height: 62px; max-width: 78%; }
.zm-hero__brand-word { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: .06em; line-height: 1; }
.zm-hero__brand-meta { font-size: 11.5px; color: var(--steel); white-space: nowrap; }
.zm-hero__brand--lead .zm-hero__brand-meta { font-size: 13px; }

/* --------------------------------------------------------------------------
   Trust band
   -------------------------------------------------------------------------- */
.zm-trust { background: #fff; padding-block: 56px 60px; border-bottom: 1px solid var(--line-2); }
.zm-trust__lead { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.2vw, 28px); margin-bottom: 30px; }
.zm-trust__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start; }
.zm-trust__item { min-width: 0; }
.zm-trust__claim { font-size: 15.5px; line-height: 1.8; color: var(--steel); }
.zm-trust__claim strong { color: var(--ink); font-weight: 700; }
.zm-years { display: flex; gap: 3px; margin: 14px 0 10px; }
.zm-years i { flex: 1 1 0; height: 34px; background: var(--ground-2); border-radius: 2px; transform-origin: bottom; transform: scaleY(.25); transition: transform .5s var(--ease-out), background-color .3s; transition-delay: calc(var(--i) * 18ms); }
.zm-years i.is-online { background: var(--signal); }
.zm-trust.is-in .zm-years i { transform: none; }
.zm-trust__legend { display: flex; gap: 20px; font-size: 12.5px; color: var(--steel); }
.zm-trust__legend span { display: inline-flex; align-items: center; gap: 6px; }
.zm-trust__legend i { width: 12px; height: 12px; border-radius: 2px; background: var(--ground-2); }
.zm-trust__legend i.is-online { background: var(--signal); }
.zm-trust__big { font-family: var(--font-body); font-weight: 800; letter-spacing: -.01em; font-size: clamp(44px, 5vw, 64px); line-height: 1.1; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.zm-trust__big small { font-size: .5em; color: var(--signal-deep); margin-inline-start: 2px; }
.zm-repeat { display: flex; gap: 8px; margin-bottom: 10px; }
.zm-repeat svg { width: 46px; height: 46px; fill: var(--ground-2); transition: fill .4s; transition-delay: calc(.2s + var(--i) * .12s); }
.zm-trust.is-in .zm-repeat svg.is-on { fill: var(--signal); }

/* --------------------------------------------------------------------------
   Brand rows
   -------------------------------------------------------------------------- */
.zm-rows { padding-block: 48px 8px; }
.zm-rows__title { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px; }
.zm-row { padding-block: 22px 14px; }
.zm-row--lead { background: #fff; padding-block: 30px 30px; border-radius: 14px; margin-inline: var(--gutter); margin-bottom: 10px; }
.zm-row--lead .zm-wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); }
.zm-row__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.zm-row__id { display: flex; align-items: baseline; gap: 14px; min-width: 0; }
.zm-row__mark { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .04em; color: var(--ink); }
.zm-row--lead .zm-row__mark { color: var(--signal-deep); }
.zm-row__name { font-size: 14px; font-weight: 600; white-space: nowrap; }
.zm-row__name small { color: var(--steel-2); font-weight: 500; margin-inline-start: 4px; }
.zm-row__all { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--steel); white-space: nowrap; }
.zm-row__all:hover { color: var(--signal-deep); }
.zm-row__body { display: grid; gap: 12px; }
.zm-row--lead .zm-row__body { grid-template-columns: minmax(240px, 340px) minmax(0, 1fr); gap: 28px; align-items: start; }
.zm-row__logo { position: sticky; top: calc(var(--header-h) + 16px); display: flex; align-items: center; justify-content: center; padding: 32px; min-height: 300px; background: var(--ground); border-radius: 12px; transition: background .2s; }
.zm-row__logo:hover { background: #E7E8E5; }
.zm-row__logo img { width: min(100%, 230px); height: auto; }
.zm-row__logo-word { font-family: var(--font-display); font-weight: 900; font-size: 34px; letter-spacing: .06em; color: var(--ink); }
.zm-row--lead .zm-row__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.zm-row__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.zm-row__more {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; min-height: 100%;
	background: var(--graphite); color: #fff; border-radius: 6px; padding: 24px 16px; position: relative; overflow: hidden;
	transition: transform .25s var(--ease);
}
.zm-row__more::after { content: ''; position: absolute; inset-inline-start: -30%; bottom: -60%; width: 90%; aspect-ratio: 1; background: radial-gradient(closest-side, rgba(253, 128, 2, .35), transparent 70%); pointer-events: none; }
.zm-row__more:hover { transform: translateY(-3px); }
.zm-row__more-n { font-family: var(--font-display); font-weight: 900; font-size: 44px; line-height: 1; position: relative; }
.zm-row__more-t { font-size: 13px; color: rgba(255, 255, 255, .7); margin-bottom: 12px; position: relative; }
.zm-row__more .zm-btn { position: relative; }

/* --------------------------------------------------------------------------
   Catalog
   -------------------------------------------------------------------------- */
.zm-catalog { padding-block: 8px 72px; }
.zm-catalog__head { padding: 26px 0 18px; }
.zm-catalog__titles { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 20px; }
.zm-catalog__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.zm-catalog__desc { font-size: 14px; color: var(--steel); max-width: 80ch; flex-basis: 100%; }
.zm-catalog__desc[hidden] { display: none; }
.zm-catalog__chips { margin-top: 16px; }
.zm-catalog__crumbs { padding-top: 8px; }

/* Chips: sub-category quick links */
.zm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.zm-chip {
	display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px;
	background: #fff; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13.5px; font-weight: 500;
	transition: border-color .15s, background-color .15s, transform .18s var(--ease);
}
.zm-chip:hover { border-color: var(--ink); }
.zm-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.zm-chip__n { font-size: 12px; color: var(--steel-2); font-variant-numeric: tabular-nums; }
.zm-chip.is-active .zm-chip__n { color: rgba(255, 255, 255, .6); }
.zm-chip__i { display: none; }

/* Tiles: main categories on the root catalog */
.zm-chips--tiles { flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding-bottom: 8px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: thin; scroll-snap-type: x proximity; }
.zm-chips--tiles .zm-chip {
	flex: none; height: auto; width: 150px; flex-direction: column; align-items: flex-start; gap: 12px;
	padding: 16px 16px 14px; border-radius: var(--r-m); scroll-snap-align: start;
	animation: zm-rise .6s var(--ease-out) both; animation-delay: calc(.55s + var(--n, 0) * .05s);
}
.zm-chips--tiles .zm-chip__i { display: block; color: var(--graphite); }
.zm-chips--tiles .zm-chip__t { font-weight: 700; font-size: 14.5px; line-height: 1.4; }
.zm-chips--tiles .zm-chip__n { font-size: 12px; margin-top: -8px; }
.zm-chips--tiles .zm-chip::after { content: ''; position: absolute; inset-inline-start: 0; inset-block-end: 0; height: 3px; width: 0; background: var(--signal); border-radius: 0 3px 3px 0; transition: width .25s var(--ease); }
.zm-chips--tiles .zm-chip { position: relative; overflow: hidden; }
.zm-chips--tiles .zm-chip:hover::after, .zm-chips--tiles .zm-chip.is-active::after { width: 100%; }
.zm-chips--tiles .zm-chip:hover { transform: translateY(-3px); border-color: var(--line-2); }
.zm-chips--tiles .zm-chip:hover .zm-chip__i { color: var(--signal-deep); }

.zm-catalog__layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: start; }

/* Toolbar */
.zm-toolbar { display: flex; align-items: center; gap: 12px; padding: 4px 0 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.zm-toolbar__filters { display: none; }
.zm-toolbar__count { font-size: 14px; color: var(--steel); }
.zm-toolbar__count strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.zm-toolbar__sort { margin-inline-start: auto; position: relative; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--steel); }
.zm-toolbar .zm-toolbar__sort select { appearance: none; -webkit-appearance: none; border: 0; background: none; font-weight: 700; color: var(--ink); padding: 8px 6px 8px 24px; cursor: pointer; }
.zm-toolbar__sort .zm-i { position: absolute; inset-inline-end: auto; inset-inline-start: 2px; pointer-events: none; color: var(--steel); }

/* Active filter pills */
.zm-active { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.zm-active[hidden] { display: none; }
.zm-pill { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 6px 0 10px; border-radius: 6px; background: var(--signal-soft); color: var(--signal-deep); font-size: 12.5px; font-weight: 600; }
[dir="rtl"] .zm-pill { padding: 0 10px 0 6px; }
.zm-pill button { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: inherit; }
.zm-pill button:hover { background: rgba(196, 95, 0, .15); }
.zm-pill--clear { background: none; color: var(--steel); text-decoration: underline; text-underline-offset: 3px; }

/* Grid */
.zm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; transition: opacity .2s; }
.zm-grid[aria-busy="true"] { opacity: .45; pointer-events: none; }
ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; }
.zm-grid__li { display: contents; }

.zm-catalog__more { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 36px 0 0; }
.zm-catalog__more[hidden] { display: none; }
.zm-catalog__progress { font-size: 13px; color: var(--steel); font-variant-numeric: tabular-nums; }

.zm-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 64px 20px; background: #fff; border-radius: var(--r-m); }
.zm-empty[hidden] { display: none; }
.zm-empty .zm-i { color: var(--line); margin-bottom: 6px; }
.zm-empty h3 { font-size: 20px; }
.zm-empty p { color: var(--steel); max-width: 44ch; }

/* --------------------------------------------------------------------------
   Product card
   -------------------------------------------------------------------------- */
.zm-card {
	position: relative; display: flex; flex-direction: column; background: #fff; border-radius: 6px; overflow: hidden;
	box-shadow: inset 0 0 0 1px transparent;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.zm-grid.is-entering .zm-card, .zm-grid .zm-card.is-new, ul.products .zm-card { animation: zm-rise .55s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 28ms); }
.zm-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line), 0 14px 30px -18px rgba(26, 27, 30, .35); }
.zm-card::after { content: ''; position: absolute; inset-inline-start: 0; inset-block-end: 0; height: 3px; width: 0; background: var(--signal); transition: width .3s var(--ease); }
.zm-card:hover::after { width: 100%; }
.zm-card__media { position: relative; display: block; aspect-ratio: 1; padding: 18px; background: #fff; }
.zm-card__media img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; transition: transform .45s var(--ease); }
.zm-card:hover .zm-card__media img { transform: scale(1.05); }
.zm-card__media .zm-badge { position: absolute; top: 10px; inset-inline-start: 10px; }
.zm-card--out .zm-card__media img { filter: grayscale(1); opacity: .6; }
.zm-card__body { display: flex; flex-direction: column; gap: 4px; padding: 4px 14px 14px; flex: 1; }
.zm-card__brand { font-size: 12px; color: var(--steel); font-weight: 600; }
.zm-card__title { font-family: var(--font-body); font-size: 14px; font-weight: 500; line-height: 1.7; min-height: calc(2 * 1.7em); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zm-card__title a::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.zm-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.zm-card__price { display: flex; flex-direction: column; line-height: 1.4; font-variant-numeric: tabular-nums; }
.zm-card__price del { font-size: 12px; color: var(--steel-2); text-decoration: line-through; }
.zm-card__price ins { text-decoration: none; font-size: 16px; font-weight: 700; }
.zm-card__price ins small { font-size: 11px; font-weight: 500; color: var(--steel); }
.zm-card__price--inquiry span { font-size: 14px; font-weight: 700; color: var(--signal-deep); }
.zm-card__price--inquiry small { font-size: 11.5px; color: var(--steel); }
.zm-card__add {
	position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	width: 42px; height: 42px; border-radius: 50%; background: var(--graphite); color: #fff; flex: none;
	transition: background-color .18s, transform .18s var(--ease), width .25s var(--ease), border-radius .25s;
}
.zm-card__add span { display: none; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.zm-card__add:hover { background: var(--ink); transform: scale(1.06); }
.zm-card__add--view, .zm-card__add--call { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.zm-card__add--call { color: var(--signal-deep); box-shadow: inset 0 0 0 1px var(--signal-deep); }
.zm-card__add--call:hover, .zm-card__add--view:hover { background: var(--ground); }
.zm-card__add.loading { pointer-events: none; opacity: .6; }
.zm-card__add.loading .zm-i { animation: zm-spin .8s linear infinite; }
.zm-card__add.added { background: var(--ok); }
@keyframes zm-spin { to { transform: rotate(360deg); } }
.added_to_cart { display: none; }

/* --------------------------------------------------------------------------
   Filters
   -------------------------------------------------------------------------- */
.zm-filters { position: sticky; top: calc(var(--header-h) + 12px); max-height: calc(100vh - var(--header-h) - 24px); display: flex; flex-direction: column; background: #fff; border-radius: var(--r-m); }
.zm-filters__head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line-2); }
.zm-filters__head h2 { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.zm-filters__clear { margin-inline-start: auto; font-size: 12.5px; color: var(--signal-deep); font-weight: 600; }
.zm-filters__clear[hidden] { display: none; }
.zm-filters__close { display: none; margin-inline-start: auto; }
.zm-filters__body { overflow: auto; padding: 4px 18px 12px; scrollbar-width: thin; }
.zm-filters__foot { display: none; padding: 12px 18px; border-top: 1px solid var(--line-2); }
.zm-fgroup { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.zm-fgroup:last-child { border-bottom: 0; }
.zm-fgroup__title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--steel); margin-bottom: 10px; }
.zm-fgroup__find { display: flex; align-items: center; gap: 8px; height: 36px; padding-inline-start: 10px; border: 1px solid var(--line); border-radius: 6px; color: var(--steel); margin-bottom: 8px; }
.zm-fgroup__find input { flex: 1; min-width: 0; border: 0; background: none; outline: 0; height: 100%; font-size: 13px; }
.zm-fgroup__found { margin-bottom: 8px; }
.zm-fgroup__more { font-size: 12.5px; color: var(--signal-deep); font-weight: 600; margin-top: 8px; }

.zm-ftree__row { display: flex; align-items: center; }
.zm-ftree__link { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex: 1; min-width: 0; padding: 6px 8px; border-radius: 6px; font-size: 14px; position: relative; transition: background-color .15s; }
.zm-ftree__link small { color: var(--steel-2); font-size: 12px; font-variant-numeric: tabular-nums; flex: none; }
.zm-ftree__link:hover { background: var(--ground); }
.zm-ftree__link.is-active { font-weight: 700; color: var(--signal-deep); background: var(--signal-soft); }
.zm-ftree__link.is-active small { color: var(--signal-deep); }
.zm-ftree__toggle { width: 32px; height: 32px; display: grid; place-items: center; color: var(--steel); border-radius: 6px; transition: transform .25s var(--ease), background-color .15s; }
.zm-ftree__toggle:hover { background: var(--ground); }
.zm-ftree__toggle[aria-expanded="true"] { transform: rotate(180deg); }
.zm-ftree__sub { padding-inline-start: 14px; margin: 2px 0 6px; border-inline-start: 1px solid var(--line-2); }
.zm-ftree__sub[hidden] { display: none; }
.zm-ftree__sub .zm-ftree__link { font-size: 13.5px; padding-block: 5px; color: var(--steel); }
.zm-ftree__sub .zm-ftree__link.is-active, .zm-ftree__sub .zm-ftree__link:hover { color: var(--ink); }
.zm-ftree__sub .zm-ftree__link.is-active { color: var(--signal-deep); }
.zm-ftree__link--all { font-weight: 600; }

.zm-fchecks li[hidden] { display: none; }
.zm-fchecks label { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: 14px; }
.zm-fchecks input { position: absolute; opacity: 0; width: 0; height: 0; }
.zm-fchecks__box { display: grid; place-items: center; width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 4px; color: #fff; flex: none; transition: background-color .15s, border-color .15s; }
.zm-fchecks__box .zm-i { opacity: 0; transform: scale(.6); transition: opacity .15s, transform .15s var(--ease-out); }
.zm-fchecks input:checked + .zm-fchecks__box { background: var(--ink); border-color: var(--ink); }
.zm-fchecks input:checked + .zm-fchecks__box .zm-i { opacity: 1; transform: none; }
.zm-fchecks input:focus-visible + .zm-fchecks__box { outline: 2px solid var(--signal-deep); outline-offset: 2px; }
.zm-fchecks__label { flex: 1; }
.zm-fchecks__label em { font-style: normal; font-size: 11px; color: var(--steel-2); }
.zm-fchecks small { color: var(--steel-2); font-size: 12px; font-variant-numeric: tabular-nums; }

.zm-fprice { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: end; }
.zm-fprice label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--steel); }
.zm-filters .zm-fprice input { width: 100%; height: 36px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; font-size: 13px; font-variant-numeric: tabular-nums; }
.zm-filters .zm-fprice input:focus { outline: 0; border-color: var(--ink); }

/* --------------------------------------------------------------------------
   Pages, prose
   -------------------------------------------------------------------------- */
.zm-page { padding-block: 8px 72px; }
.zm-page--narrow { max-width: 820px; }
.zm-page__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 20px; padding: 18px 0 22px; }
.zm-page__title { font-size: clamp(26px, 3.4vw, 40px); }
.zm-page__head time { color: var(--steel); font-size: 13px; }
.zm-page__media img { border-radius: var(--r-m); }
.zm-prose { background: #fff; border-radius: var(--r-m); padding: clamp(20px, 3vw, 40px); font-size: 15.5px; line-height: 2; }
.zm-prose > * + * { margin-top: 1em; }
.zm-prose h1, .zm-prose h2, .zm-prose h3 { margin-top: 1.6em; }
.zm-prose h2 { font-size: 24px; }
.zm-prose h3 { font-size: 19px; }
.zm-prose a { color: var(--signal-deep); text-decoration: underline; text-underline-offset: 3px; }
.zm-prose ul { list-style: disc; padding-inline-start: 1.4em; }
.zm-prose ol { list-style: decimal; padding-inline-start: 1.4em; }
.zm-prose img { border-radius: var(--r-s); }
.zm-prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.zm-prose th, .zm-prose td { padding: 10px 12px; border: 1px solid var(--line-2); text-align: start; }
.zm-prose blockquote { margin: 0; padding: 12px 20px; border-inline-start: 3px solid var(--signal); background: var(--ground); border-radius: 0 6px 6px 0; }
.zm-page--wc .zm-prose { background: none; padding: 0; }

.zm-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.zm-post { background: #fff; border-radius: var(--r-m); overflow: hidden; }
.zm-post__body { padding: 18px; }
.zm-post__body time { font-size: 12.5px; color: var(--steel); }
.zm-post__body h2 { font-size: 18px; margin: 6px 0; }
.zm-post__body p { font-size: 14px; color: var(--steel); }
.zm-results li { background: #fff; border-radius: var(--r-m); padding: 16px 20px; margin-bottom: 10px; }
.zm-results a { font-weight: 700; font-size: 16px; }
.zm-results p { color: var(--steel); font-size: 14px; }
.zm-pagination { display: flex; justify-content: center; margin-top: 28px; }
.zm-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; margin: 0 2px; border-radius: 6px; background: #fff; font-size: 14px; }
.zm-pagination .page-numbers.current { background: var(--ink); color: #fff; }

.zm-404 { text-align: center; padding-block: 60px 100px; }
.zm-404__code { font-family: var(--font-display); font-weight: 900; font-size: clamp(80px, 18vw, 180px); line-height: 1; color: var(--ground-2); margin-bottom: -20px; }
.zm-404 p { color: var(--steel); max-width: 50ch; margin: 12px auto 24px; }
.zm-404__actions { display: flex; justify-content: center; gap: 10px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.zm-footer { position: relative; background: var(--graphite); color: rgba(255, 255, 255, .78); margin-top: 40px; overflow: hidden; }
.zm-footer__slash { position: absolute; top: 0; inset-inline-end: 8%; width: 2px; height: 140%; background: var(--signal); transform: rotate(45deg); transform-origin: top; opacity: .5; pointer-events: none; }
.zm-footer__grid { position: relative; display: grid; grid-template-columns: 1.3fr 1.2fr .8fr .8fr; gap: 40px; padding-block: 56px 40px; }
.zm-footer__brand img { width: 110px; height: auto; margin-bottom: 18px; }
.zm-footer__brand p { font-size: 14px; line-height: 2; max-width: 40ch; }
.zm-footer__title { font-size: 15px; color: #fff; margin-bottom: 16px; }
.zm-footer__menu a, .zm-footer__contact span, .zm-footer__contact a { font-size: 14px; }
.zm-footer__menu li { margin-bottom: 8px; }
.zm-footer__menu a:hover, .zm-footer__contact a:hover { color: #fff; }
.zm-footer__contact li { display: flex; align-items: flex-start; gap: 10px 8px; margin-bottom: 10px; flex-wrap: wrap; }
.zm-footer__contact .zm-i { color: var(--signal); margin-top: 4px; flex: none; }
.zm-footer__contact a + a::before { content: '·'; margin-inline-end: 8px; color: var(--steel-2); }
.zm-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 18px 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12.5px; color: rgba(255, 255, 255, .5); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
	.zm-header__phone { display: none; }
	.zm-mega__cols { columns: 2; }
}
@media (max-width: 1024px) {
	:root { --header-h: 64px; }
	.zm-header__burger { display: inline-flex; }
	.zm-header__cats, .zm-mega { display: none; }
	.zm-logo__word { display: none; }
	.zm-logo__mark { width: 40px; height: 40px; }
	.zm-hero__grid { grid-template-columns: 1fr; padding-block: 36px 40px; gap: 28px; min-height: 0; }
	.zm-hero__brands { grid-auto-rows: 104px; }
	.zm-row__logo { position: static; min-height: 150px; padding: 22px; }
	.zm-row__logo img { width: min(100%, 190px); }
	.zm-row--lead .zm-row__body { grid-template-columns: 1fr; }
	.zm-row__grid, .zm-row--lead .zm-row__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.zm-trust__grid { grid-template-columns: 1fr 1fr; }
	.zm-trust__item--years { grid-column: 1 / -1; }
	.zm-catalog__layout { grid-template-columns: 1fr; }
	.zm-toolbar__filters { display: inline-flex; }
	.zm-filters {
		position: fixed; inset-block: 0; inset-inline-start: 0; z-index: 960; width: min(400px, 92vw); max-height: none;
		border-radius: 0; transform: translateX(100%); transition: transform .32s var(--ease-out);
	}
	[dir="ltr"] .zm-filters { transform: translateX(-100%); }
	.zm-filters:not(.is-open) { visibility: hidden; transition: transform .32s var(--ease-out), visibility 0s .32s; }
	.zm-filters.is-open { transform: none; visibility: visible; }
	.zm-filters__close, .zm-filters__foot { display: block; }
	.zm-filters__body { flex: 1; }
	.zm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
	body { font-size: 14.5px; }
	.zm-header__bar { gap: 6px; }
	.zm-search { position: static; }
	.zm-search__input { height: 42px; padding-inline-start: 44px; font-size: 13.5px; }
	.zm-search__results { inset-inline: var(--gutter); top: var(--header-h); }
	.zm-header__account { display: none; }
	.zm-hero__title { font-size: clamp(30px, 9vw, 40px); }
	.zm-hero__brands { grid-auto-rows: 84px; gap: 8px; }
	.zm-hero__brand { gap: 8px; padding: 10px; border-radius: 8px; }
	.zm-hero__brand-logo { max-height: 24px; max-width: 80%; }
	.zm-hero__brand--lead .zm-hero__brand-logo { max-height: 44px; }
	.zm-hero__brand-meta { font-size: 10.5px; }
	.zm-hero__brand-word { font-size: 15px; }
	.zm-trust__grid { grid-template-columns: 1fr; gap: 28px; }
	.zm-row__head { flex-wrap: wrap; }
	.zm-row__grid, .zm-row--lead .zm-row__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
	.zm-row--lead { margin-inline: 0; border-radius: 0; }
	.zm-row__more-n { font-size: 34px; }
	.zm-grid, ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
	.zm-card__media { padding: 12px; }
	.zm-card__body { padding: 2px 10px 10px; }
	.zm-card__title { font-size: 13px; }
	.zm-card__price ins { font-size: 14px; }
	.zm-card__add { width: 38px; height: 38px; }
	.zm-toolbar__sort span { display: none; }
	.zm-chips--tiles .zm-chip { width: 128px; padding: 12px; }
	.zm-footer__grid { grid-template-columns: 1fr; }
	.zm-prose { padding: 18px; }
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
	.zm-hero__slash line { stroke-dashoffset: 0; }
}
