/* =========================================================================
   ZIX MOTORS — MINIMALIST PREMIUM
   Inter + JetBrains Mono. Fără decorații. Doar tipografie + spațiu.
   ========================================================================= */

:root{
	--bg:#0a0a0b;
	--bg-2:#111113;
	--bg-3:#161618;
	--line:#26262a;
	--line-soft:#1c1c1f;
	--text:#fafafa;
	--text-2:#a8a8ac;
	--muted:#5c5c61;
	--accent:#FF8000;
	--accent-h:#ff9342;
	--radius:6px;
	--radius-lg:10px;
	--max:1600px;
	--sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
	--mono:'JetBrains Mono',ui-monospace,monospace;
	--ease:cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{max-width:100%}
.zix-main{overflow-x:hidden}

/* Titlurile mari nu ies niciodată din ecran */
.zix-hero-title,.zix-single-title,.zix-h1,.zix-h2,.zix-card-title{
	overflow-wrap:break-word;word-break:break-word;hyphens:auto;
}

body.zix-body{
	margin:0;background:var(--bg);color:var(--text);
	font-family:var(--sans);font-size:16px;line-height:1.6;
	-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;

	font-feature-settings:'ss01','ss02','cv11';
}
.zix-body a{color:inherit;text-decoration:none;transition:color .2s var(--ease)}
img{max-width:100%;height:auto;display:block}

.zix-container{max-width:var(--max);margin:0 auto;padding:0 64px;width:100%}
.zix-muted{color:var(--muted)}
.zix-accent-text{color:var(--accent)}

/* ========================================================================
   TIPOGRAFIE
   ======================================================================== */
.zix-h1{
	font-size:clamp(40px,5vw,72px);
	font-weight:600;letter-spacing:-.03em;line-height:1.05;
	margin:0 0 12px;
}
.zix-h2{
	font-size:clamp(32px,3.5vw,48px);
	font-weight:600;letter-spacing:-.025em;line-height:1.05;
	margin:0;
}
.zix-lead{
	font-size:17px;line-height:1.65;color:var(--text-2);
	max-width:620px;margin:20px 0 0;
}
.zix-eyebrow{
	display:inline-flex;align-items:center;gap:12px;
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--accent);margin-bottom:24px;font-weight:500;
}
.zix-eyebrow::before{
	content:'';width:24px;height:1px;background:var(--accent);
}
.zix-block-title{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--muted);font-weight:500;
	margin:48px 0 20px;padding-bottom:14px;
	border-bottom:1px solid var(--line-soft);
}

/* ========================================================================
   HEADER
   ======================================================================== */
.zix-header{
	position:sticky;top:0;z-index:100;
	background:#0a0a0b;
	background:rgba(10,10,11,.92);
	backdrop-filter:blur(20px) saturate(180%);
	-webkit-backdrop-filter:blur(20px) saturate(180%);
	border-bottom:1px solid var(--line-soft);
}
.zix-header-inner{
	position:relative;
	display:flex;align-items:center;justify-content:space-between;
	gap:40px;height:72px;
}
.zix-logo{
	display:flex;align-items:center;gap:10px;
	font-weight:700;font-size:15px;letter-spacing:.18em;
	flex-shrink:0;z-index:2;
}
.zix-logo-badge{
	display:inline-block;width:6px;height:6px;
	background:var(--accent);border-radius:50%;
}
.zix-logo-text{font-size:15px;font-weight:700;letter-spacing:.18em}
.zix-nav{
	position:absolute;
	left:50%;top:50%;
	transform:translate(-50%,-50%);
	display:flex;justify-content:center;
}
.zix-nav .zix-menu{
	display:flex;gap:12px;list-style:none;margin:0;padding:0;align-items:center;
}
.zix-menu a{
	font-size:17px;font-weight:500;
	color:var(--text-2);padding:12px 26px;
	border-radius:var(--radius);
	position:relative;transition:all .2s var(--ease);
}
.zix-menu a:hover{color:var(--text);background:var(--bg-2)}
.zix-menu .current-menu-item a,
.zix-menu .current_page_item a{color:var(--accent)}
.zix-burger{
	display:none;background:none;border:0;color:var(--text);
	font-size:22px;cursor:pointer;padding:6px 10px;line-height:1;
	z-index:2;margin-left:auto;
}

/* ========================================================================
   BUTOANE
   ======================================================================== */
.zix-btn{
	display:inline-flex;align-items:center;gap:12px;justify-content:center;
	padding:14px 22px;border-radius:var(--radius);
	font-weight:500;font-size:14px;font-family:inherit;
	border:1px solid var(--line);background:transparent;color:var(--text);
	cursor:pointer;transition:all .25s var(--ease);
	white-space:nowrap;text-decoration:none;
	touch-action:manipulation;
}
.zix-burger,.zix-cat-arrow,.zix-menu a,a.zix-cat{touch-action:manipulation;-webkit-tap-highlight-color:transparent}
.zix-btn svg{width:14px;height:14px;transition:transform .2s var(--ease)}
.zix-btn:hover svg{transform:translateX(3px)}
.zix-btn-primary{
	background:var(--accent);color:#0a0a0b;border-color:var(--accent);font-weight:600;
}
.zix-btn-primary:hover{background:var(--accent-h);border-color:var(--accent-h)}
.zix-btn-dark:hover{border-color:var(--text-2);background:var(--bg-2)}
.zix-btn-ghost{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.35);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.zix-btn-ghost:hover{color:#0a0a0b;background:#fff;border-color:#fff}
.zix-btn-lg{padding:16px 28px;font-size:14px}
.zix-btn-block{width:100%}

/* ========================================================================
   HERO
   ======================================================================== */
.zix-hero{
	position:relative;
	min-height:calc(100vh - 73px);
	display:flex;
	flex-direction:column;
	background-color:var(--bg);
	border-bottom:1px solid var(--line-soft);
	overflow:hidden;
}

/* Poza fullscreen absoluta */
.zix-hero-bg{
	position:absolute;inset:0;
	width:100%;height:100%;
	object-fit:cover;
	object-position:center center;
	z-index:0;
}

/* Gradient: transparent sus, negru intens jos */
.zix-hero-overlay{
	position:absolute;inset:0;z-index:1;
	background:linear-gradient(
		160deg,
		rgba(10,10,11,0) 0%,
		rgba(10,10,11,.1) 30%,
		rgba(10,10,11,.6) 60%,
		rgba(10,10,11,.96) 100%
	);
}

/* Badge colt dreapta sus */
.zix-hero-badge{
	position:absolute;top:28px;right:40px;z-index:3;
	font-family:var(--mono);font-size:10px;
	letter-spacing:.22em;text-transform:uppercase;
	color:rgba(255,255,255,.45);
	display:flex;align-items:center;gap:10px;
}
.zix-hero-badge::before{
	content:'';width:20px;height:1px;background:var(--accent);
}

/* Container — flex coloana, textul jos */
.zix-hero-body{
	position:relative;z-index:2;
	display:flex;flex-direction:column;justify-content:space-between;
	height:calc(100vh - 73px);width:100%;
	padding:64px 64px 48px;
	box-sizing:border-box;
	max-width:var(--max);margin:0 auto;
}

.zix-hero-content{ max-width:700px; }

.zix-hero-title{
	font-weight:700;
	font-size:clamp(52px,7vw,116px);
	line-height:.92;letter-spacing:-.04em;
	margin:0 0 28px;color:#fff;
}
.zix-hero-title span{color:rgba(255,255,255,.38)}

.zix-hero-sub{
	max-width:480px;
	color:rgba(255,255,255,.72);
	font-size:17px;line-height:1.65;margin:0 0 40px;
}
.zix-hero-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}

/* Stats jos */
.zix-hero-stats-row{
	margin-top:0;padding-top:24px;
	border-top:1px solid rgba(255,255,255,.1);
	flex-shrink:0;
}

/* hero-split removed — now fullscreen */
.zix-stats{
	margin-top:0;padding-top:0;
	border-top:0;
	display:grid;grid-template-columns:repeat(4,1fr);gap:40px;
}
.zix-stat .zix-stat-num{
	font-size:42px;font-weight:600;letter-spacing:-.025em;line-height:1;
	color:#fff;
}
.zix-stat .zix-stat-lbl{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--muted);margin-top:10px;
}

/* ========================================================================
   SECȚIUNI
   ======================================================================== */
.zix-section{padding:120px 0;border-bottom:1px solid var(--line-soft)}
.zix-section-alt{background:var(--bg-2)}
.zix-section-head{
	display:flex;justify-content:space-between;align-items:flex-end;
	gap:40px;margin-bottom:64px;flex-wrap:wrap;
}
.zix-section-head-text{max-width:680px}
.zix-link{
	font-size:14px;font-weight:500;color:var(--text-2);
	display:inline-flex;align-items:center;gap:10px;
	padding-bottom:6px;border-bottom:1px solid var(--line);
	transition:all .25s var(--ease);
}
.zix-link svg{width:14px;height:14px}
.zix-link:hover{color:var(--accent);border-color:var(--accent);gap:14px}

.zix-page-head{
	background:var(--bg-2);border-bottom:1px solid var(--line-soft);
	padding:80px 0 64px;
}

/* ========================================================================
   CARDURI MOTOCICLETĂ
   ======================================================================== */
.zix-grid{
	display:grid;grid-template-columns:repeat(3,1fr);gap:48px;
}
/* ========================================================================
   FEATURED CAROUSEL
   ======================================================================== */
/* ========================================================================
   FEATURED CAROUSEL — 3 pe pagina, loop infinit
   ======================================================================== */
.zix-fcarousel-wrap{
	position:relative;
	padding:0 56px;
	box-sizing:border-box;
}
.zix-fcarousel{
	overflow:hidden;
	width:100%;
}
.zix-fcarousel-track{
	display:flex;
	gap:24px;
	will-change:transform;
}
.zix-fcarousel-track .zix-card{
	flex:0 0 calc(33.333% - 16px);
	min-width:0;
	transition:none;
}
.zix-fcarousel-track .zix-clone{
	pointer-events:none;
	user-select:none;
}
.zix-fcarousel-track .zix-card-media{
	aspect-ratio:4/3;
	border-radius:var(--radius-lg);
}
.zix-fcarousel-dots{display:none}
.zix-fcarousel-arrow{
	position:absolute;
	top:38%;
	transform:translateY(-50%);
	z-index:10;
	background:var(--bg);
	border:1px solid var(--line-soft);
	border-radius:50%;
	width:44px;height:44px;
	display:flex;align-items:center;justify-content:center;
	cursor:pointer;
	color:var(--text);
	transition:all .2s var(--ease);
}
.zix-fcarousel-arrow:hover{background:var(--accent);border-color:var(--accent);color:#000}
.zix-fcarousel-arrow svg{width:18px;height:18px;flex-shrink:0}
.zix-fcarousel-prev{left:0}
.zix-fcarousel-next{right:0}
.zix-fcarousel-dots{
	display:flex;gap:8px;justify-content:center;
	margin-top:24px;
}
.zix-fcarousel-dot{
	width:20px;height:3px;border-radius:2px;
	background:var(--line-soft);
	border:none;cursor:pointer;
	transition:all .3s var(--ease);padding:0;
}
.zix-fcarousel-dot.is-active{background:var(--accent);width:36px;}
@media(max-width:900px){
	.zix-fcarousel-track .zix-card{flex:0 0 calc(50% - 12px)}
}
@media(max-width:900px){
	.zix-fcarousel-wrap{padding:0 40px}
}
@media(max-width:600px){
	.zix-fcarousel-wrap{padding:0}
	.zix-fcarousel-arrow{display:none}
	.zix-fcarousel-dots{display:none}
	/* Mobil: scroll nativ CSS pur, fara JS deloc */
	.zix-fcarousel{
		overflow-x:auto;
		scroll-snap-type:x mandatory;
		-webkit-overflow-scrolling:touch;
		scrollbar-width:none;
	}
	.zix-fcarousel::-webkit-scrollbar{display:none}
	.zix-fcarousel-track{
		transform:none !important;
		transition:none !important;
		width:max-content;
		gap:12px;
	}
	.zix-fcarousel-track .zix-card{
		flex:0 0 82vw;
		scroll-snap-align:start;
	}
}
.zix-card{
	display:block;
	transition:transform .35s var(--ease);
}
.zix-card:hover{transform:translateY(-6px)}
.zix-card-media{
	aspect-ratio:4/3;
	background-size:cover;background-position:center;
	background-color:var(--bg-3);
	margin-bottom:24px;
	position:relative;
	overflow:hidden;
	border-radius:8px;
}
.zix-badge{
	display:inline-flex;align-items:center;
	padding:5px 11px;border-radius:4px;
	font-size:10px;font-weight:700;
	letter-spacing:.12em;text-transform:uppercase;
}
.zix-badge-featured{
	position:absolute;top:14px;left:14px;
	background:var(--accent);color:#0a0a0b;z-index:2;
}
.zix-card-row{
	display:flex;justify-content:space-between;align-items:flex-start;
	margin-bottom:10px;
}
.zix-card-brand{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.2em;text-transform:uppercase;
	color:var(--muted);
}
.zix-card-fav{
	color:var(--accent);
	font-family:var(--mono);
	font-size:11px;
}
.zix-card-title{
	font-size:22px;font-weight:600;letter-spacing:-.015em;
	line-height:1.25;margin:0 0 20px;color:var(--text);
}
.zix-card-specs{
	display:flex;gap:24px;flex-wrap:wrap;
	font-family:var(--mono);
	font-size:12px;color:var(--text-2);
	margin-bottom:20px;padding-bottom:20px;
	border-bottom:1px solid var(--line-soft);
}
.zix-card-specs span{color:var(--muted)}
.zix-card-foot{
	display:flex;justify-content:space-between;align-items:flex-end;
}
.zix-price{
	font-size:24px;font-weight:600;letter-spacing:-.02em;color:var(--text);
}
.zix-view{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--text-2);
	display:inline-flex;align-items:center;gap:8px;
	transition:all .25s var(--ease);
}
.zix-view svg{width:12px;height:12px}
.zix-card:hover .zix-view{color:var(--accent);gap:12px}

/* ========================================================================
   HOME — CATEGORII
   ======================================================================== */
.zix-cats{
	display:grid;
	grid-auto-flow:column;
	grid-template-rows:1fr;
	grid-auto-columns:280px;
	gap:1px;background:var(--line-soft);
	border:1px solid var(--line-soft);border-radius:var(--radius-lg);
	overflow-x:auto;overflow-y:hidden;
	-webkit-overflow-scrolling:touch;
	scrollbar-width:thin;
	scrollbar-color:var(--accent) var(--bg-2);
	cursor:grab;
}
.zix-cats:active{cursor:grabbing}
.zix-cats::-webkit-scrollbar{height:4px}
.zix-cats::-webkit-scrollbar-track{background:var(--bg-2)}
.zix-cats::-webkit-scrollbar-thumb{background:var(--accent);border-radius:2px}
.zix-cats::-webkit-scrollbar-thumb:hover{background:var(--accent)}
.zix-cat{
	display:flex;flex-direction:column;
	background:var(--bg);
	padding:36px 28px;
	transition:background .25s var(--ease);
	min-height:200px;
	position:relative;
	scroll-snap-align:start;
}
.zix-cat:hover{background:var(--bg-2)}
.zix-cat-num{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;
	color:var(--muted);margin-bottom:24px;
}
.zix-cat-name{
	font-size:22px;font-weight:600;color:var(--text);margin:0 0 8px;letter-spacing:-.015em;
}
.zix-cat-count{
	font-family:var(--mono);
	color:var(--text-2);font-size:12px;
	margin-top:auto;padding-top:16px;
}
.zix-cat-count span{color:var(--muted)}
.zix-cat-arrow{
	position:absolute;top:36px;right:28px;
	color:var(--muted);transition:all .25s var(--ease);
}
.zix-cat:hover .zix-cat-arrow{color:var(--accent);transform:translate(4px,-4px)}

/* ========================================================================
   HOME — DE CE NOI
   ======================================================================== */
.zix-why{
	display:grid;grid-template-columns:repeat(3,1fr);gap:48px;
}
.zix-why-item{padding:8px 0}
.zix-why-num{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.2em;
	color:var(--accent);margin-bottom:20px;
}
.zix-why-item h3{
	font-size:20px;font-weight:600;
	margin:0 0 12px;letter-spacing:-.015em;
}
.zix-why-item p{color:var(--text-2);font-size:15px;line-height:1.6;margin:0}

/* ========================================================================
   HOME — CTA + CONTACT PREVIEW
   ======================================================================== */
.zix-cta-band{
	padding:80px;
	border:1px solid var(--line-soft);
	border-radius:var(--radius-lg);
	background:var(--bg-2);
	position:relative;overflow:hidden;
}
.zix-cta-band::before{
	content:'';position:absolute;right:-200px;top:-200px;
	width:500px;height:500px;
	background:radial-gradient(circle,rgba(255,128,0,.1),transparent 70%);
	pointer-events:none;
}
.zix-cta-band-inner{
	display:flex;align-items:center;justify-content:space-between;
	gap:40px;flex-wrap:wrap;position:relative;
}
.zix-cta-band p{margin:14px 0 0;max-width:520px;color:var(--text-2);font-size:17px;line-height:1.6}

.zix-contact-preview{
	display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.zix-cp-item{
	background:var(--bg);
	border:1px solid var(--line-soft);
	border-radius:var(--radius-lg);
	padding:32px;
	transition:all .3s var(--ease);
}
.zix-cp-item:hover{border-color:var(--accent);transform:translateY(-3px)}
.zix-cp-num{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;
	color:var(--muted);margin-bottom:24px;
}
.zix-cp-label{
	font-size:12px;font-weight:500;color:var(--muted);margin-bottom:8px;
}
.zix-cp-value{
	font-size:18px;font-weight:600;color:var(--text);word-break:break-word;
}

/* ========================================================================
   INVENTORY
   ======================================================================== */
.zix-toolbar{
	display:flex;gap:12px;align-items:center;
	margin-bottom:20px;flex-wrap:wrap;
}
.zix-search{
	flex:1;min-width:240px;
	display:flex;align-items:center;gap:12px;
	background:var(--bg-2);border:1px solid var(--line-soft);
	border-radius:var(--radius);padding:0 18px;
	transition:border-color .2s var(--ease);
}
.zix-search:focus-within{border-color:var(--accent)}
.zix-search svg{width:14px;height:14px;color:var(--muted)}
.zix-search input{
	flex:1;background:none;border:0;color:var(--text);
	padding:14px 0;font-size:14px;font-family:inherit;outline:none;
}
.zix-search input::placeholder{color:var(--muted)}
.zix-sort select,.zix-f select,.zix-f-range input{
	background:var(--bg-2);border:1px solid var(--line-soft);
	color:var(--text);border-radius:var(--radius);
	padding:13px 16px;font-size:13px;font-family:inherit;
	cursor:pointer;outline:none;
	transition:border-color .2s var(--ease);
}
.zix-sort select:focus,.zix-f select:focus,.zix-f-range input:focus{border-color:var(--accent)}
.zix-found{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.15em;text-transform:uppercase;
	color:var(--muted);margin:0 0 32px;
}
.zix-found b{color:var(--text);font-weight:500}
.zix-layout{display:grid;grid-template-columns:280px 1fr;gap:32px}
.zix-layout.show-filters{grid-template-columns:280px 1fr}
.zix-filters{
	background:var(--bg-2);
	border:1px solid var(--line-soft);border-radius:var(--radius-lg);
	padding:28px;height:fit-content;position:sticky;top:92px;
}
.zix-layout .zix-filters{display:block}
.zix-filters-head{
	display:flex;justify-content:space-between;align-items:center;
	margin-bottom:24px;padding-bottom:16px;
	border-bottom:1px solid var(--line-soft);
}
.zix-filters-head h3{
	margin:0;font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	font-weight:500;color:var(--text);
}
.zix-clear{
	color:var(--accent);font-size:12px;
	font-family:var(--mono);letter-spacing:.05em;
}
/* FILTRE — spacing consistent: gap mare între grupuri, mic label→input */
.zix-f,
.zix-f-range{
	display:block;
	margin-bottom:22px;
}
.zix-f span,
.zix-f-range span{
	display:block;font-family:var(--mono);
	font-size:10px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--muted);
	margin-bottom:9px;
	line-height:1;
}
.zix-f select{width:100%}
.zix-f-range>div{display:flex;gap:8px}
.zix-f-range input{
	flex:1;min-width:0;width:100%;
	background:var(--bg-3);
	padding:11px 12px;
	font-size:13px;
}
/* ultimul element fără margine în plus */
.zix-filters .zix-f-range:last-of-type{margin-bottom:0}
.zix-f-check{
	display:flex;align-items:center;gap:10px;
	font-size:13px;
	margin:22px 0;
	color:var(--text-2);cursor:pointer;
}
.zix-f-check input{accent-color:var(--accent);width:16px;height:16px;flex-shrink:0}
.zix-results{min-width:0}
.zix-mobile-only{display:none}

/* PAGINAȚIE */
.zix-pagination{display:flex;justify-content:center;gap:8px;margin-top:64px}
.zix-pagination .page-numbers{
	display:inline-flex;align-items:center;justify-content:center;
	min-width:42px;height:42px;padding:0 14px;
	background:var(--bg-2);border:1px solid var(--line-soft);
	border-radius:var(--radius);
	color:var(--text-2);font-weight:500;font-size:13px;
	font-family:var(--mono);
	transition:all .2s var(--ease);
}
.zix-pagination .page-numbers.current{
	background:var(--accent);color:#0a0a0b;border-color:var(--accent);
}
.zix-pagination a.page-numbers:hover{border-color:var(--text-2);color:var(--text)}

.zix-empty{
	text-align:center;padding:80px 20px;color:var(--muted);
	background:var(--bg-2);border:1px solid var(--line-soft);
	border-radius:var(--radius-lg);
}
.zix-empty svg{width:48px;height:48px;color:var(--muted);margin-bottom:20px}
.zix-empty p{margin:0 0 24px;font-size:16px}

/* ========================================================================
   SINGLE MOTORCYCLE — REDESIGN PREMIUM
   Poza stanga (mai lata) + info dreapta ingusta + card contact sticky
   ======================================================================== */

/* Back bar */
.zix-single-back-bar{
	padding:18px 0;
	border-bottom:1px solid var(--line-soft);
	background:var(--bg);
}
.zix-single-back-bar .zix-back{margin:0}

/* Hero split — coloana dreapta mai ingusta, poza ia mai mult */
.zix-sp-hero{
	display:grid;
	grid-template-columns:1fr 410px;
	align-items:start;
	border-bottom:1px solid var(--line-soft);
}

/* STANGA — galerie */
.zix-sp-left{
	background:var(--bg-2);
	border-right:1px solid var(--line-soft);
	display:flex;flex-direction:column;
	min-width:0;
}
.zix-sp-gallery{
	display:flex;flex-direction:column;padding:28px;gap:16px;
}
.zix-sp-main{
	position:relative;
	width:fit-content;max-width:100%;
	margin:0 auto;
	border-radius:var(--radius-lg);
	overflow:hidden;
	background:#000;
	line-height:0;
}
.zix-sp-main-img{
	display:block;
	width:auto;height:auto;
	max-width:100%;
	max-height:62vh;
	object-fit:contain;
}
/* THUMBNAILS — bandă orizontală derulabilă */
.zix-sp-thumbs-wrap{
	display:flex;align-items:center;gap:10px;
}
.zix-thumbs-arrow{
	flex-shrink:0;
	width:38px;height:72px;
	border-radius:var(--radius);
	background:var(--bg-3);
	border:1px solid var(--line);
	color:var(--text-2);
	cursor:pointer;
	display:flex;align-items:center;justify-content:center;
	transition:all .2s var(--ease);
	touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.zix-thumbs-arrow svg{width:18px;height:18px}
.zix-thumbs-arrow:hover{border-color:var(--accent);color:var(--accent)}
.zix-thumbs-arrow:disabled{opacity:.3;cursor:default;border-color:var(--line-soft)}
.zix-thumbs-arrow:disabled:hover{color:var(--text-2)}
.zix-sp-thumbs{
	display:flex;gap:10px;
	overflow-x:auto;
	scroll-behavior:smooth;
	scrollbar-width:none;
	-ms-overflow-style:none;
	flex:1;
}
.zix-sp-thumbs::-webkit-scrollbar{display:none}
.zix-sp-thumbs .zix-g-th{
	flex:0 0 auto;
	width:116px;height:72px;
	border-radius:6px;
	background-size:cover;background-position:center;
	border:2px solid transparent;cursor:pointer;
	background-color:var(--bg-3);
	transition:border-color .2s var(--ease);
	touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.zix-sp-thumbs .zix-g-th.is-active{border-color:var(--accent)}
.zix-sp-thumbs .zix-g-th:hover{border-color:var(--line)}

/* Săgeți carousel pe poza mare */
.zix-sp-main .zix-carousel-arrow{
	position:absolute;top:50%;transform:translateY(-50%);
	width:40px;height:40px;border-radius:50%;
	background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.18);
	color:#fff;cursor:pointer;z-index:5;
	display:flex;align-items:center;justify-content:center;
	transition:all .2s var(--ease);
	touch-action:manipulation;-webkit-tap-highlight-color:transparent;
	user-select:none;
}
.zix-sp-main .zix-carousel-arrow svg{width:20px;height:20px}
.zix-sp-main .zix-carousel-arrow:hover{background:rgba(255,128,0,.75);border-color:var(--accent)}
.zix-sp-main .zix-carousel-prev{left:14px}
.zix-sp-main .zix-carousel-next{right:14px}
.zix-sp-main .zix-carousel-dots{
	position:absolute;bottom:14px;left:50%;transform:translateX(-50%);
	display:flex;gap:7px;z-index:5;
	background:rgba(0,0,0,.4);padding:8px 12px;border-radius:20px;
	backdrop-filter:blur(8px);
}
.zix-sp-main .zix-dot{
	width:7px;height:7px;border-radius:50%;
	background:rgba(255,255,255,.5);border:0;cursor:pointer;padding:0;
	transition:all .2s var(--ease);
	touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.zix-sp-main .zix-dot.is-active{background:var(--accent);transform:scale(1.25)}

/* DREAPTA — info, sticky la scroll */
.zix-sp-right{
	padding:36px 36px 40px;
	display:flex;flex-direction:column;gap:0;
	background:var(--bg);
	position:sticky;top:72px;
	min-width:0;
}
.zix-sp-top-row{
	display:flex;justify-content:space-between;align-items:center;
	gap:12px;margin-bottom:16px;
}
.zix-sp-brand{
	font-family:var(--mono);
	font-size:10px;letter-spacing:.2em;text-transform:uppercase;
	color:var(--accent);font-weight:500;line-height:1.4;
}
.zix-sp-avail{
	font-family:var(--mono);
	font-size:9px;letter-spacing:.12em;text-transform:uppercase;
	color:var(--bg);background:var(--accent);
	padding:4px 9px;border-radius:4px;font-weight:700;flex-shrink:0;white-space:nowrap;
}
.zix-sp-title{
	font-size:clamp(24px,2.4vw,32px);
	font-weight:600;letter-spacing:-.025em;line-height:1.15;
	margin:0 0 22px;color:var(--text);
	overflow-wrap:break-word;word-break:break-word;
}
.zix-sp-price-block{
	padding:16px 0;
	border-top:1px solid var(--line-soft);
	border-bottom:1px solid var(--line-soft);
	margin-bottom:22px;
	display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;
}
.zix-sp-price-lbl{
	font-family:var(--mono);
	font-size:9px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--muted);
}
.zix-sp-price{
	font-size:clamp(28px,2.6vw,38px);
	font-weight:600;letter-spacing:-.03em;color:var(--accent);line-height:1;
}

/* SPECIFICAȚII — listă verticală echilibrată */
.zix-sp-specs{
	display:flex;flex-direction:column;
	border:1px solid var(--line-soft);border-radius:var(--radius-lg);
	overflow:hidden;margin-bottom:24px;
}
.zix-sp-spec{
	display:flex;justify-content:space-between;align-items:center;gap:16px;
	padding:13px 16px;background:var(--bg-2);
	border-bottom:1px solid var(--line-soft);
}
.zix-sp-spec:nth-child(even){background:#0d0d0f}
.zix-sp-spec:last-child{border-bottom:0}
.zix-sp-spec-lbl{
	font-family:var(--mono);
	font-size:10px;letter-spacing:.12em;text-transform:uppercase;
	color:var(--muted);flex-shrink:0;
}
.zix-sp-spec-val{
	font-size:15px;font-weight:600;letter-spacing:-.01em;color:var(--text);
	text-align:right;min-width:0;overflow-wrap:break-word;word-break:break-word;
}
.zix-sp-spec-accent .zix-sp-spec-val{color:var(--accent)}

/* CARD CONTACT — margine portocalie sus */
.zix-sp-cta{
	background:var(--bg-2);
	border:1px solid var(--line);
	border-radius:var(--radius-lg);
	padding:20px;position:relative;margin-top:4px;
}
.zix-sp-cta::before{
	content:'';position:absolute;top:-1px;left:-1px;right:-1px;height:3px;
	background:var(--accent);border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
.zix-sp-cta-eyebrow{
	font-family:var(--mono);
	font-size:9px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--accent);margin-bottom:14px;font-weight:500;
}
.zix-sp-actions{
	display:flex;flex-direction:column;gap:9px;
}
.zix-sp-actions .zix-btn{width:100%;justify-content:center;font-size:13px;padding:13px}

/* BODY — detalii extra la scroll */
.zix-sp-body{
	padding:72px 0;
	border-bottom:1px solid var(--line-soft);
}
.zix-sp-extra{
	max-width:780px;margin-bottom:72px;
}
.zix-sp-similar{
	padding-top:64px;border-top:1px solid var(--line-soft);
}

.zix-gallery{
	padding:0 0 80px;
	border-bottom:1px solid var(--line-soft);
}
.zix-carousel{
	position:relative;
}
.zix-gallery-main{
	aspect-ratio:16/9;
	background-size:cover;background-position:center;
	background-color:var(--bg-3);
	border-radius:var(--radius-lg);
	margin-bottom:16px;
	transition:background-image .35s var(--ease);
}

/* SĂGEȚI CAROUSEL */
.zix-carousel-arrow{
	position:absolute;
	top:50%;transform:translateY(-50%);
	width:48px;height:48px;
	border-radius:50%;
	background:rgba(0,0,0,.4);
	border:1px solid rgba(255,255,255,.2);
	color:#fff;
	cursor:pointer;
	display:flex;align-items:center;justify-content:center;
	z-index:10;
	transition:all .25s var(--ease);
	font-size:0;
}
.zix-carousel-arrow svg{width:20px;height:20px;stroke-width:2.5}
.zix-carousel-arrow:hover{
	background:rgba(255,128,0,.7);
	border-color:var(--accent);
	transform:translateY(-50%) scale(1.05);
}
.zix-carousel-prev{left:20px}
.zix-carousel-next{right:20px}

/* INDICATOR CU PUNCTE */
.zix-carousel-dots{
	position:absolute;
	bottom:16px;left:50%;transform:translateX(-50%);
	display:flex;gap:8px;
	z-index:10;
	background:rgba(0,0,0,.3);
	padding:10px 14px;
	border-radius:24px;
	backdrop-filter:blur(10px);
}
.zix-dot{
	width:8px;height:8px;
	border-radius:50%;
	background:rgba(255,255,255,.5);
	border:0;cursor:pointer;
	transition:all .25s var(--ease);
	padding:0;
}
.zix-dot:hover{background:rgba(255,255,255,.8)}
.zix-dot.is-active{
	background:var(--accent);
	transform:scale(1.25);
}
.zix-gallery-thumbs{
	display:grid;grid-template-columns:repeat(6,1fr);gap:10px;
}
.zix-g-th{
	aspect-ratio:16/9;border-radius:6px;
	background-size:cover;background-position:center;
	border:2px solid transparent;cursor:pointer;
	background-color:var(--bg-3);
	transition:border-color .2s var(--ease);
}
.zix-g-th.is-active{border-color:var(--accent)}
.zix-g-th:hover{border-color:var(--line)}

/* Conținut info — coloane editoriale */
.zix-single-body{
	padding:80px 0;
	display:grid;grid-template-columns:1fr 380px;gap:80px;
	align-items:start;
}
.zix-single-main{min-width:0}
.zix-single-side{
	position:sticky;top:92px;
}

.zix-tags-row{
	display:flex;gap:8px;flex-wrap:wrap;margin-bottom:48px;
}
.zix-tag{
	display:inline-flex;align-items:center;
	padding:6px 12px;border-radius:4px;
	font-family:var(--mono);
	font-size:10px;font-weight:500;
	letter-spacing:.15em;text-transform:uppercase;
	border:1px solid var(--line);color:var(--text-2);
}
.zix-tag-accent{background:var(--accent);color:#0a0a0b;border-color:var(--accent);font-weight:600}

/* Specificații tehnice — grid mare */
.zix-spec-grid{
	display:grid;grid-template-columns:repeat(3,1fr);
	gap:1px;background:var(--line-soft);
	border:1px solid var(--line-soft);border-radius:var(--radius-lg);
	overflow:hidden;margin-bottom:48px;
}
.zix-spec-cell{
	background:var(--bg);padding:24px;
}
.zix-spec-cell-lbl{
	font-family:var(--mono);
	font-size:10px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--muted);margin-bottom:10px;
}
.zix-spec-cell-val{
	font-size:22px;font-weight:600;letter-spacing:-.015em;
	color:var(--text);
}
.zix-spec-cell-val small{
	font-size:12px;font-family:var(--mono);
	color:var(--muted);margin-left:6px;
	font-weight:400;letter-spacing:.1em;
}

/* Listă specificații rămase */
.zix-spec-list{
	border-top:1px solid var(--line-soft);
	margin-bottom:48px;
}
.zix-spec-row{
	display:grid;grid-template-columns:200px 1fr;
	padding:16px 0;border-bottom:1px solid var(--line-soft);
	font-size:14px;
}
.zix-spec-row span{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.15em;text-transform:uppercase;
	color:var(--muted);
}
.zix-spec-row strong{font-weight:500;color:var(--text)}

.zix-desc{color:var(--text-2);font-size:16px;line-height:1.75}
.zix-desc p{margin:0 0 16px}

.zix-features,.zix-service{
	list-style:none;padding:0;margin:0;
	display:grid;grid-template-columns:1fr 1fr;gap:12px;
}
.zix-features li,.zix-service li{
	font-size:14px;color:var(--text-2);
	display:flex;align-items:flex-start;gap:12px;
	padding:8px 0;
}
.zix-features li::before{
	content:'';width:6px;height:6px;background:var(--accent);
	border-radius:50%;margin-top:8px;flex-shrink:0;
}
.zix-service li::before{
	content:'';width:6px;height:6px;background:var(--muted);
	border-radius:50%;margin-top:8px;flex-shrink:0;
}

/* SIDEBAR CTA — design nou cu chenar accent */
.zix-cta-card{
	background:var(--bg-2);
	border:1px solid var(--line);
	border-radius:var(--radius-lg);
	padding:32px;
	position:relative;
}
.zix-cta-card::before{
	content:'';position:absolute;top:-1px;left:-1px;right:-1px;
	height:3px;background:var(--accent);
	border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
.zix-cta-card-eyebrow{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.18em;text-transform:uppercase;
	color:var(--accent);margin-bottom:14px;font-weight:500;
}
.zix-cta-card h3{
	font-size:24px;font-weight:600;letter-spacing:-.02em;
	margin:0 0 12px;line-height:1.2;
}
.zix-cta-card p{
	margin:0 0 28px;color:var(--text-2);font-size:14px;line-height:1.6;
}
.zix-cta-buttons{
	display:flex;flex-direction:column;gap:10px;
}
.zix-cta-buttons .zix-btn{width:100%}

.zix-cta-divider{
	margin:32px 0;border:0;border-top:1px solid var(--line-soft);
}
.zix-cta-contact{
	display:flex;flex-direction:column;gap:14px;
}
.zix-cta-contact-line{
	display:flex;align-items:center;gap:12px;
	font-size:13px;color:var(--text-2);
	transition:color .2s;
}
.zix-cta-contact-line:hover{color:var(--accent)}
.zix-cta-contact-line svg{width:14px;height:14px;color:var(--accent);flex-shrink:0}

/* ========================================================================
   MANAGE
   ======================================================================== */
.zix-manage-head{
	display:flex;align-items:center;justify-content:space-between;
	gap:20px;flex-wrap:wrap;
}
.zix-manage-list{display:flex;flex-direction:column;gap:14px}
.zix-manage-row{
	display:flex;align-items:center;gap:20px;
	background:var(--bg-2);border:1px solid var(--line-soft);
	border-radius:var(--radius-lg);padding:16px 20px;
	transition:border-color .2s var(--ease);
}
.zix-manage-row:hover{border-color:var(--line)}
.zix-manage-thumb{
	width:100px;height:75px;border-radius:6px;
	background-size:cover;background-position:center;
	background-color:var(--bg-3);flex-shrink:0;
}
.zix-manage-info{flex:1;min-width:0}
.zix-manage-title{font-weight:600;font-size:16px;letter-spacing:-.01em}
.zix-manage-title:hover{color:var(--accent)}
.zix-manage-meta{
	font-family:var(--mono);
	color:var(--muted);font-size:12px;margin-top:4px;letter-spacing:.05em;
}
.zix-manage-actions{display:flex;align-items:center;gap:10px}
.zix-icon-btn{
	width:38px;height:38px;
	display:inline-flex;align-items:center;justify-content:center;
	border:1px solid var(--line);border-radius:var(--radius);
	color:var(--text-2);font-size:13px;background:var(--bg-3);
	transition:all .2s var(--ease);
}
.zix-icon-btn:hover{border-color:var(--text-2);color:var(--text)}
.zix-icon-btn.is-on{color:var(--accent);border-color:var(--accent)}
.zix-icon-btn.zix-del:hover{color:#ef4444;border-color:#ef4444}

/* ========================================================================
   CONTACT
   ======================================================================== */
.zix-contact-grid{
	display:grid;grid-template-columns:1fr 1.3fr;gap:64px;
	align-items:start;
}
.zix-contact-info{padding-top:8px}
.zix-contact-line{
	display:flex;align-items:center;gap:14px;padding:18px 0;
	color:var(--text-2);font-size:15px;
	border-bottom:1px solid var(--line-soft);
	transition:color .2s;
}
.zix-contact-line:last-child{border-bottom:0}
.zix-contact-line svg{width:18px;height:18px;color:var(--accent);flex-shrink:0}
.zix-contact-line:hover{color:var(--text)}

.zix-form label{
	display:block;font-family:var(--mono);
	font-size:11px;color:var(--muted);font-weight:500;
	letter-spacing:.15em;text-transform:uppercase;
	margin-bottom:20px;
}
.zix-form input,.zix-form textarea{
	width:100%;margin-top:8px;
	background:var(--bg-2);border:1px solid var(--line-soft);
	border-radius:var(--radius);padding:14px 16px;
	color:var(--text);font-size:15px;outline:none;
	font-family:inherit;transition:border-color .2s var(--ease);
}
.zix-form input:focus,.zix-form textarea:focus{border-color:var(--accent)}
.zix-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.zix-hp{position:absolute;left:-9999px;width:1px;height:1px}
.zix-alert{
	padding:16px 20px;border-radius:var(--radius);
	margin-bottom:24px;font-size:14px;
}
.zix-alert-ok{
	background:rgba(255,128,0,.08);border:1px solid var(--accent);
	color:var(--accent-h);
}
.zix-alert-err{
	background:rgba(239,68,68,.08);border:1px solid #ef4444;color:#fca5a5;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.zix-footer{
	background:var(--bg);border-top:1px solid var(--line-soft);
}
.zix-footer-inner{
	display:grid;grid-template-columns:2fr 1fr 1.2fr;
	gap:48px;padding:80px 48px 48px;
}
.zix-footer-col h4{
	font-family:var(--mono);
	font-size:11px;font-weight:500;letter-spacing:.18em;
	text-transform:uppercase;color:var(--text);margin:0 0 20px;
}
.zix-footer-col a,.zix-footer-col span{
	display:flex;align-items:center;gap:10px;
	color:var(--text-2);padding:6px 0;font-size:14px;
}
.zix-footer-col a:hover{color:var(--accent)}
.zix-footer-col svg{width:14px;height:14px;color:var(--accent);flex-shrink:0}
.zix-footer-bottom{
	border-top:1px solid var(--line-soft);padding:24px 0;
	font-family:var(--mono);
	color:var(--muted);font-size:11px;letter-spacing:.15em;
	text-transform:uppercase;text-align:center;
}
.zix-prose{max-width:780px;color:var(--text-2);line-height:1.75}
.zix-prose h2,.zix-prose h3{color:var(--text);font-weight:600;letter-spacing:-.02em}

/* ========================================================================
   LEGENDA SECȚIUNE (sub grid de motociclete)
   ======================================================================== */
.zix-legend{
	font-family:var(--mono);
	font-size:11px;letter-spacing:.15em;text-transform:uppercase;
	color:var(--muted);
	padding-top:48px;margin-top:64px;
	border-top:1px solid var(--line-soft);
	display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
}

/* ========================================================================
   RESPONSIVE — TABLETĂ & MOBIL
   Breakpoints: 1100 (tabletă mare) · 880 (tabletă) · 600 (mobil) · 400 (mic)
   ======================================================================== */

/* ===== TABLETĂ MARE (≤1100px) ===== */
@media (max-width:1100px){
	/* Single page split → o coloană, poza sus */
	.zix-sp-hero{grid-template-columns:minmax(0,1fr) !important}
	.zix-sp-left{border-right:0;border-bottom:1px solid var(--line-soft);position:static;min-width:0}
	.zix-sp-right{padding:32px 28px;position:static;min-width:0}
	.zix-sp-main-img{max-height:64vh}
	.zix-sp-actions{margin-top:0}

	/* Home hero cu imagine */
	.zix-hero-split .zix-hero-inner{grid-template-columns:1fr;gap:40px}
	.zix-hero-split .zix-hero-image{aspect-ratio:16/10}

	/* Griduri */
	.zix-contact-grid{grid-template-columns:1fr;gap:40px}
	.zix-footer-inner{grid-template-columns:1.6fr 1fr 1fr}
	.zix-cats{grid-auto-columns:260px}
	.zix-why{grid-template-columns:1fr 1fr}
	.zix-contact-preview{grid-template-columns:1fr 1fr 1fr}
	.zix-stats{grid-template-columns:repeat(4,1fr)}
}

/* ===== TABLETĂ (≤880px) ===== */
@media (max-width:880px){
	.zix-container{padding:0 24px}
	.zix-layout{grid-template-columns:200px 1fr}
	.zix-layout .zix-filters{display:block;position:sticky;top:92px}
	.zix-mobile-only{display:none}
	.zix-section{padding:64px 0}
	.zix-hero-body{padding:100px 24px 48px}
	.zix-grid{grid-template-columns:1fr 1fr;gap:28px}

	/* HEADER → meniu hamburger */
	.zix-burger{display:flex;align-items:center;justify-content:center;font-size:26px;width:44px;height:44px;padding:0}
	.zix-nav{
		position:fixed !important;
		top:72px !important;left:0 !important;right:0 !important;bottom:auto !important;
		width:100%;
		background:#0c0c0d;
		border-bottom:1px solid var(--line-soft);
		transform:translateY(-150%) !important;
		transition:transform .3s var(--ease);z-index:90;
		justify-content:flex-start;
		box-shadow:0 12px 30px rgba(0,0,0,.5);
	}
	.zix-nav.open{transform:translateY(0) !important}
	.zix-nav .zix-menu{flex-direction:column;gap:0;padding:8px 24px;width:100%;align-items:stretch}
	.zix-menu li{border-bottom:1px solid var(--line-soft)}
	.zix-menu li:last-child{border-bottom:0}
	.zix-menu a{padding:18px 8px;font-size:16px;border-radius:0;display:block}
	.zix-menu a:hover{background:none}

	/* Hero */
	.zix-hero-title{font-size:clamp(38px,8vw,56px);letter-spacing:-.03em}
	.zix-hero-sub{font-size:16px}
	.zix-hero-meta{margin-bottom:32px;flex-direction:column;gap:6px;align-items:flex-start}
	.zix-stats{grid-template-columns:1fr 1fr;gap:28px;margin-top:48px}
	.zix-stat .zix-stat-num{font-size:30px}

	/* Inventar */
	.zix-toolbar{flex-wrap:wrap}
	.zix-search{flex:1 1 100%}
	.zix-layout{grid-template-columns:220px 1fr}
	.zix-layout .zix-filters{display:block}
	.zix-mobile-only{display:none}
	.zix-features,.zix-service{grid-template-columns:1fr}

	/* Categorii / De ce noi */
	.zix-cats{grid-auto-columns:260px}
	.zix-why{grid-template-columns:1fr 1fr;gap:36px}

	/* CTA band */
	.zix-cta-band{padding:36px 28px}
	.zix-cta-band-inner{flex-direction:column;align-items:flex-start;gap:24px}
	.zix-cta-band-inner > a{align-self:stretch;text-align:center;justify-content:center}

	/* Footer */
	.zix-footer-inner{grid-template-columns:1fr 1fr;padding:56px 24px 32px;gap:36px 32px}

	/* Single — specs */
	.zix-sp-body{padding:56px 0}

	/* Carduri */
	.zix-card-title{font-size:21px}
}

/* ===== MOBIL (≤600px) ===== */
@media (max-width:600px){
	.zix-layout{grid-template-columns:1fr}
	.zix-layout .zix-filters{display:none;width:100%;position:static;margin-bottom:24px}
	.zix-layout.show-filters{grid-template-columns:1fr}
	.zix-layout.show-filters .zix-filters{display:block}
	.zix-mobile-only{display:inline-flex}
	.zix-container{padding:0 18px}
	.zix-section{padding:48px 0}
	/* MOBIL HERO: poza sus, continut jos pe negru — 100% lizibil */
	.zix-hero{
		min-height:unset;
		display:block;
		overflow:visible;
	}
	.zix-hero-bg{
		position:relative;
		width:100%;height:80vw;
		min-height:300px;max-height:460px;
		object-position:90% 10%;
		display:block;
	}
	.zix-hero-overlay{display:none}
	.zix-hero-badge{display:none}
	.zix-hero-body{
		position:relative;z-index:2;
		min-height:unset;
		background:var(--bg);
		padding:28px 20px 40px;
		border-top:2px solid var(--accent);
	}
	.zix-hero-title{
		font-size:clamp(34px,9vw,48px);
		margin-bottom:18px;
		color:var(--text);
	}
	.zix-hero-title span{color:var(--muted)}
	.zix-hero-sub{
		color:var(--text-2);
		font-size:15px;
		margin-bottom:28px;
	}
	.zix-hero-actions{flex-direction:column;align-items:stretch}
	.zix-hero-actions .zix-btn{width:100%;justify-content:center}
	.zix-hero-stats-row{
		margin-top:36px;
		border-top:1px solid var(--line-soft);
		padding-top:28px;
	}

	/* Tot pe o coloană */
	.zix-grid{grid-template-columns:1fr;gap:28px}
	.zix-form-row{grid-template-columns:1fr}
	.zix-why{grid-template-columns:1fr;gap:28px}
	.zix-stats{grid-template-columns:1fr 1fr;gap:20px}
	.zix-hero-stats-row .zix-stats{grid-template-columns:1fr 1fr;gap:16px 12px}
	.zix-contact-preview{grid-template-columns:1fr}
	.zix-footer-inner{grid-template-columns:1fr;gap:32px}

	/* CATEGORII — carusel mobil: un card pe ecran, swipe dreapta */
	.zix-cats{
		grid-template-rows:1fr;
		grid-auto-columns:calc(80% - 18px);
		gap:12px;
		background:transparent;
		border:0;border-radius:0;overflow:visible;
		overflow-x:auto;
		padding:0 18px 14px;
		margin:0 -18px;
	}
	.zix-cats::-webkit-scrollbar{display:none}
	.zix-cat{
		scroll-snap-align:start;
		border:1px solid var(--line-soft);
		border-radius:var(--radius);
		height:148px;min-height:0;
		padding:18px 20px;
		justify-content:space-between;
	}
	.zix-cat-num{margin-bottom:0}
	.zix-cat-name{font-size:20px;margin:0}
	.zix-cat-count{margin-top:0;padding-top:0}
	.zix-cat-arrow{top:18px;right:18px}

	/* Tipografie — fără overflow */
	.zix-h1{font-size:clamp(28px,8vw,38px)}
	.zix-h2{font-size:clamp(25px,7vw,32px)}
	.zix-lead{font-size:15px}
	.zix-hero-title{font-size:clamp(32px,10vw,44px);line-height:1.06}
	.zix-hero-sub{font-size:15px}
	.zix-stat .zix-stat-num{font-size:26px}
	.zix-hero-stats-row .zix-stat .zix-stat-num{font-size:28px;color:var(--text)}
	.zix-eyebrow{margin-bottom:18px}

	/* Butoane hero full-width */
	.zix-hero-actions{flex-direction:column;align-items:stretch;width:100%}
	.zix-hero-actions .zix-btn{width:100%;justify-content:center}

	/* Section head stivuit */
	.zix-section-head{flex-direction:column;align-items:flex-start;gap:14px;margin-bottom:40px}
	.zix-section-head-text{max-width:100%}

	/* Carduri */
	.zix-card-title{font-size:20px}
	.zix-card-specs{gap:16px}


	/* SINGLE PAGE */
	.zix-single-back-bar{padding:14px 0}
	.zix-sp-left{position:static !important}
	.zix-sp-right{position:static !important;padding:28px 18px}
	.zix-sp-gallery{padding:16px;gap:12px}
	.zix-sp-main{width:100%}
	.zix-sp-main-img{height:44vh;max-height:44vh;width:100%;object-fit:cover}
	.zix-sp-top-row{flex-wrap:wrap;gap:10px}
	.zix-sp-title{font-size:clamp(24px,7vw,32px);margin-bottom:22px}
	.zix-sp-price{font-size:clamp(28px,8vw,38px)}
	.zix-sp-price-block{padding:16px 0;margin-bottom:22px}
	.zix-sp-specs{margin-bottom:22px}
	.zix-sp-spec{padding:13px 16px}
	.zix-sp-spec-val{font-size:15px}
	.zix-sp-thumbs .zix-g-th{width:100px;height:64px}
	.zix-thumbs-arrow{width:34px;height:64px}
	.zix-sp-body{padding:48px 0}
	.zix-sp-extra{margin-bottom:56px}

	/* Carousel săgeți */
	.zix-carousel-arrow{width:38px;height:38px}
	.zix-carousel-arrow svg{width:16px;height:16px}

	/* Contact */
	.zix-contact-line{font-size:14px;padding:14px 0}
	.zix-cp-item{padding:24px}

	/* Manage */
	.zix-manage-row{flex-wrap:wrap;gap:12px}
	.zix-manage-thumb{width:72px;height:54px}
	.zix-manage-info{flex:1 1 auto;min-width:0}
	.zix-manage-actions{width:100%;justify-content:flex-start;flex-wrap:wrap}

	/* Footer */
	.zix-footer-bottom{font-size:10px;letter-spacing:.1em;padding:20px 16px;line-height:1.6}

	/* Paginație */
	.zix-pagination .page-numbers{min-width:38px;height:38px;font-size:12px}
}

/* ===== MOBIL MIC (≤400px) ===== */
@media (max-width:400px){
	.zix-container{padding:0 14px}
	.zix-stats{grid-template-columns:1fr 1fr;gap:14px}
	.zix-hero-title{font-size:30px}
	.zix-logo-text{font-size:13px;letter-spacing:.1em}
	.zix-sp-thumbs .zix-g-th{width:88px;height:56px}
	.zix-cp-value{font-size:16px}
}
