/*
Theme Name:  Auto-otpad Lada
Theme URI:   https://autootpadlada.rs
Author:      rondo.rs
Description: Tema za Auto-otpad Lada — prodaja polovnih delova za Lada vozila, Novi Beograd.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: autootpadlada
*/

/* ── CSS VARIJABLE ─────────────────────────────────────────────────────────── */
:root {
  --navy:    #081527;
  --navy-2:  #0a1a30;
  --panel:   #0f2138;
  --panel-2: #122843;
  --steel:   #1b3a5c;
  --cobalt:  #1f6fe0;
  --azure:   #4aa8ff;
  --ice:     #dce8f4;
  --muted:   #8ba7c4;
  --line:    rgba(122,164,209,.16);
  --radius:  14px;
  --maxw:    1180px;
  --font-head:  'Rajdhani', sans-serif;
  --font-body:  'Manrope', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--navy);
  color: var(--ice);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
input, button, select, textarea { font-family: inherit; }

/* ── LAYOUT ────────────────────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }

/* ── TIPOGRAFIJA ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
}
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--azure);
  opacity: .7;
}

/* ── GUMBI ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 24px;
  border-radius: 11px;
  border: 0;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  letter-spacing: .01em;
  text-decoration: none;
}
.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 8px 26px rgba(31,111,224,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31,111,224,.55);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid var(--steel);
}
.btn-ghost:hover { border-color: var(--azure); color: var(--azure); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ── HEADER ────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8,21,39,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  color: var(--ice);
  text-decoration: none;
}
.brand-logo { width: 42px; height: 42px; flex: 0 0 auto; object-fit: contain; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .24em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: .94rem;
  color: var(--muted);
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ice); }
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cobalt);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 10px;
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 6px 22px rgba(31,111,224,.35);
}
.call-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,111,224,.5); color: #fff; }
.burger {
  display: none;
  background: none;
  border: 0;
  color: var(--ice);
  cursor: pointer;
  padding: 4px;
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 78px 0 90px;
  overflow: hidden;
}
.hero-topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31,111,224,.32), transparent 68%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  text-transform: uppercase;
  margin: 16px 0 18px;
}
.hero h1 span { color: var(--azure); }
.hero .lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34ch;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats .st b {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--ice);
  display: block;
  line-height: 1;
}
.hero-stats .st span {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── SLIDER ────────────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel);
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.slider-inner {
  display: flex;
  transition: transform .6s cubic-bezier(.7,0,.2,1);
}
.slide {
  min-width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(140deg, #123a63, #0a1c33);
  position: relative;
  overflow: hidden;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px 22px 58px;
  position: absolute;
  inset: 0;
}
.slide-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(6,16,30,.9));
}
.slide-cap .k {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .2em;
  color: var(--azure);
  text-transform: uppercase;
}
.slide-cap h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2px;
}
.s-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--steel);
  background: rgba(8,21,39,.7);
  color: var(--ice);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.s-arrow:hover { background: var(--cobalt); border-color: var(--cobalt); }
.s-prev { left: 14px; }
.s-next { right: 14px; }
.s-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(220,232,244,.35);
  cursor: pointer;
  transition: .2s;
  border: 0;
  padding: 0;
}
.s-dot.active { background: var(--azure); width: 22px; border-radius: 5px; }

/* ── O LADI ────────────────────────────────────────────────────────────────── */
.about { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-transform: uppercase; margin-bottom: 20px; }
.about p { color: var(--muted); margin-bottom: 16px; }
.about p strong { color: var(--ice); font-weight: 700; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.badge {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--steel);
  color: var(--ice);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--azure); }

/* ── DELOVI PREVIEW (naslovna) ─────────────────────────────────────────────── */
.parts h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-transform: uppercase; margin-bottom: 8px; }
.parts .sub { color: var(--muted); max-width: 52ch; margin-bottom: 30px; }
.parts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; }
.parts-cta-row { display: flex; justify-content: center; margin-top: 38px; }

/* ── KARTICA DELA ──────────────────────────────────────────────────────────── */
.deo-kartica {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s, border-color .2s, box-shadow .2s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.deo-kartica::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cobalt);
  opacity: .65;
  transition: .2s;
}
.deo-kartica:hover { transform: translateY(-4px); border-color: var(--steel); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.deo-kartica:hover::before { opacity: 1; background: var(--azure); }
.deo-slika {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--navy-2);
  padding: 12px;
}
.deo-slika-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy-2), var(--panel-2));
  display: grid;
  place-items: center;
  color: var(--steel);
}
.deo-status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 6px;
}
.status-na_stanju   { background: rgba(22,163,74,.2);  color: #4ade80; border: 1px solid rgba(22,163,74,.4); }
.status-rezervisano { background: rgba(217,119,6,.2);  color: #fbbf24; border: 1px solid rgba(217,119,6,.4); }
.status-prodato     { background: rgba(220,38,38,.2);  color: #f87171; border: 1px solid rgba(220,38,38,.4); }
.deo-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.deo-sifra { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; color: var(--azure); }
.deo-naziv { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; letter-spacing: .01em; }
.deo-kratki { font-size: .86rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.deo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px dashed var(--line);
}
.deo-cena { font-family: var(--font-mono); font-size: .88rem; color: var(--ice); }
.deo-cta-links { display: flex; gap: 10px; align-items: center; }
.deo-cta-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--azure);
  transition: color .2s;
}
.deo-cta-links .vb { color: #7360f2; }
.deo-cta-links a:hover { opacity: .8; }

/* ── OTKUP ─────────────────────────────────────────────────────────────────── */
.otkup {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border-top: 1px solid var(--line);
}
.otkup-glow {
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(74,168,255,.2), transparent 70%);
  pointer-events: none;
}
.otkup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.otkup h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); text-transform: uppercase; margin-bottom: 18px; }
.otkup h2 span { color: var(--azure); }
.otkup p { color: var(--muted); margin-bottom: 16px; max-width: 44ch; }
.otkup ul { display: grid; gap: 11px; margin: 22px 0 30px; }
.otkup li { display: flex; align-items: flex-start; gap: 11px; color: var(--ice); font-weight: 500; }
.otkup li svg { flex: 0 0 auto; color: var(--azure); margin-top: 3px; }
.otkup-card {
  background: var(--panel);
  border: 1px solid var(--steel);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  text-align: center;
}
.otkup-card .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.otkup-card h3 { font-family: var(--font-head); font-size: 2rem; text-transform: uppercase; margin: 6px 0 4px; }
.otkup-card .ph { font-family: var(--font-mono); font-size: 1.55rem; color: var(--azure); font-weight: 700; margin: 14px 0 22px; letter-spacing: .02em; }
.pulse-row { display: flex; flex-direction: column; gap: 12px; }
.pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  color: #fff;
  position: relative;
  transition: transform .15s;
  text-decoration: none;
}
.pulse:hover { transform: translateY(-2px); color: #fff; }
.pulse.call  { background: var(--cobalt); }
.pulse.viber { background: #7360f2; }
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  z-index: -1;
  animation: al-pulse 2.2s ease-out infinite;
}
.pulse.call::after  { box-shadow: 0 0 0 0 rgba(31,111,224,.6); }
.pulse.viber::after { box-shadow: 0 0 0 0 rgba(115,96,242,.55); }
@keyframes al-pulse { to { box-shadow: 0 0 0 20px rgba(31,111,224,0); } }

/* ── KONTAKT ───────────────────────────────────────────────────────────────── */
.contact { background: var(--navy-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.contact h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-transform: uppercase; margin-bottom: 22px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--steel);
  display: grid;
  place-items: center;
  color: var(--azure);
}
.info-row .lbl { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; }
.info-row .val { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--ice); }
.info-row .val a { color: var(--ice); }
.info-row .val a:hover { color: var(--azure); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--steel); min-height: 340px; background: var(--panel); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ── GALERIJA (naslovna) ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--steel);
  transition: transform .2s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 48px 0 30px;
}
.foot-kidi {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--panel), var(--navy-2));
  border: 1px solid var(--steel);
}
.foot-kidi-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--ice);
  transition: color .2s;
}
.foot-kidi-link:hover { color: var(--azure); }
.foot-kidi-link img { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.foot-kidi p { color: var(--muted); max-width: 60ch; font-size: .92rem; }
.foot-net-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.foot-net { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 26px; }
.foot-net a { font-size: .86rem; color: var(--muted); transition: color .2s; }
.foot-net a:hover { color: var(--azure); }
.foot-net a.hub { color: var(--ice); font-weight: 700; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}
.rondo { display: inline-flex; align-items: center; gap: 8px; opacity: .7; transition: opacity .2s; font-weight: 600; }
.rondo:hover { opacity: 1; color: var(--azure); }
.rondo .r {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
}

/* ── FLOATING BUTTONS ──────────────────────────────────────────────────────── */
.float-btns {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.float-btns a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.5);
  transition: transform .15s;
}
.float-btns a:hover { transform: scale(1.1); color: #fff; }
.fc { background: var(--cobalt); }
.fv { background: #7360f2; }

/* ── SINGLE DEO ────────────────────────────────────────────────────────────── */
.page-head {
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--azure); }
.breadcrumb span { color: var(--ice); }
.deo-single { padding: 60px 0; }
.deo-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.deo-single-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel);
  background: var(--navy-2);
}
.deo-single-img img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 24px; }
.deo-single-info {}
.deo-single-info .deo-sifra { font-size: .7rem; }
.deo-single-info h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; margin: 8px 0 16px; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--cobalt);
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 20px;
}
.price-badge .amount { font-family: var(--font-mono); font-size: 1.6rem; color: var(--azure); font-weight: 700; }
.price-badge .cur { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }
.deo-desc { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.deo-models { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.model-pill {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: 7px;
  background: var(--navy);
  border: 1px solid var(--steel);
  color: var(--muted);
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.model-pill:hover { border-color: var(--azure); color: var(--azure); }
.deo-cta-single { display: flex; flex-direction: column; gap: 12px; }
.post-content { margin-top: 32px; color: var(--muted); line-height: 1.8; }
.post-content h2, .post-content h3 { color: var(--ice); margin: 24px 0 12px; }
.post-content p { margin-bottom: 14px; }
.post-content strong { color: var(--ice); }

/* ── ARCHIVE DELOVI ────────────────────────────────────────────────────────── */
.katalog { padding: 60px 0; }
.katalog-head { margin-bottom: 36px; }
.katalog-head h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 8px; }
.notice-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(31,111,224,.08);
  border: 1px solid rgba(31,111,224,.25);
  border-radius: 9px;
  padding: 10px 16px;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.notice-bar svg { flex: 0 0 auto; color: var(--azure); }
.searchbar {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--steel);
  border-radius: 13px;
  padding: 6px 6px 6px 18px;
  max-width: 640px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  margin-bottom: 22px;
}
.searchbar svg { flex: 0 0 auto; color: var(--muted); }
.searchbar input {
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: var(--ice);
  font-size: 1rem;
  padding: 10px 4px;
}
.searchbar input::placeholder { color: #5f7ea0; }
.searchbar button {
  background: var(--cobalt);
  border: 0;
  color: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}
.searchbar button:hover { background: #1a5dc4; }
.model-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  padding: 8px 16px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid var(--steel);
  color: var(--muted);
  cursor: pointer;
  transition: .18s;
  text-decoration: none;
  display: inline-block;
}
.chip:hover { color: var(--ice); border-color: var(--azure); }
.chip.active { background: var(--cobalt); border-color: var(--cobalt); color: #fff; box-shadow: 0 6px 18px rgba(31,111,224,.4); }
.result-count { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; }
.katalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; }
.no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--muted); }
.no-results b { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--ice); margin-bottom: 8px; }
.pagination { margin-top: 52px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid var(--steel);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .82rem;
  transition: .18s;
  text-decoration: none;
}
.pagination .page-numbers:hover, .pagination .current { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.poziv-baner {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid var(--steel);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.poziv-baner h3 { font-family: var(--font-head); font-size: 1.6rem; text-transform: uppercase; }
.poziv-baner p { color: var(--muted); font-size: .94rem; }
.poziv-baner .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-left: auto; }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .otkup-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .deo-single-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 18px;
    overflow-y: auto;
    z-index: 59;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
  section { padding: 60px 0; }
  .hero { padding: 52px 0 66px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .poziv-baner .btns { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .call-btn span { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .pulse::after { animation: none; }
  .slider-inner { transition: none; }
}
