/* ══════════════════════════════════════════════════════════
   Servis Medić j.d.o.o. — Split & Dalmacija
   Design system  ·  DEOS
   ══════════════════════════════════════════════════════════ */

@import url('../fonts/fonts.css');

/* ── 1. Tokeni ───────────────────────────────────────────── */
:root{
  /* boje izvedene iz logotipa firme */
  --ink:        #16202B;
  --ink-2:      #33434F;
  --ink-3:      #62737F;
  --ink-4:      #93A3AE;

  --brand:      #0B7FB4;   /* glavna — dovoljno tamna za tekst na bijelom */
  --brand-600:  #0A6E9C;
  --brand-700:  #075B82;
  --brand-300:  #4BB8E8;   /* iz logotipa */
  --brand-100:  #DCF0FA;
  --brand-50:   #F0F9FE;

  --heat:       #E9622F;   /* grijanje / dizalice topline */
  --heat-100:   #FDECE4;
  --sale:       #D6274B;   /* akcijska cijena */
  --ok:         #12916A;

  --bg:         #FFFFFF;
  --bg-soft:    #F5F9FC;
  --bg-deep:    #0F1C26;
  --line:       #E3EBF1;
  --line-2:     #D2DEE7;

  /* tipografija */
  --f-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --t-xs:   .75rem;    --t-sm:  .8125rem;  --t-base: .9375rem;
  --t-md:   1.0625rem; --t-lg:  1.25rem;   --t-xl:   1.5rem;
  --t-2xl:  1.875rem;  --t-3xl: 2.375rem;  --t-4xl:  3rem;
  --t-5xl:  3.75rem;

  /* prostor */
  --sp-1:.25rem; --sp-2:.5rem;  --sp-3:.75rem; --sp-4:1rem;
  --sp-5:1.5rem; --sp-6:2rem;   --sp-7:2.5rem; --sp-8:3.5rem;
  --sp-9:5rem;   --sp-10:7rem;

  --r-sm:6px; --r:10px; --r-lg:16px; --r-xl:22px; --r-full:999px;

  --sh-1: 0 1px 2px rgba(22,32,43,.06), 0 1px 3px rgba(22,32,43,.05);
  --sh-2: 0 4px 12px rgba(22,32,43,.07), 0 2px 4px rgba(22,32,43,.04);
  --sh-3: 0 12px 32px rgba(22,32,43,.10), 0 4px 8px rgba(22,32,43,.05);
  --sh-4: 0 24px 64px rgba(11,127,180,.16), 0 8px 16px rgba(22,32,43,.06);

  --wrap: 1240px;
  --ease: cubic-bezier(.4,.14,.3,1);
}

/* ── 2. Reset ────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }
[hidden]{ display:none !important; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:88px; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--f-body); font-size:var(--t-base); line-height:1.65;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg{ max-width:100%; display:block; }
button,input,select,textarea{ font:inherit; color:inherit; }
button{ cursor:pointer; background:none; border:0; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--f-head); margin:0; line-height:1.15; letter-spacing:-.02em; font-weight:800; }
p{ margin:0; }
ul,ol{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:3px solid var(--brand-300); outline-offset:2px; border-radius:4px; }

/* ── 3. Layout ───────────────────────────────────────────── */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--sp-5); }
.sec{ padding-block:var(--sp-9); }
.sec--soft{ background:var(--bg-soft); }
.sec--tight{ padding-block:var(--sp-8); }

.sec-head{ margin-bottom:var(--sp-7); max-width:62ch; }
.sec-head--center{ margin-inline:auto; text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:var(--sp-2);
  font-family:var(--f-head); font-size:var(--t-xs); font-weight:800;
  letter-spacing:.14em; text-transform:uppercase; color:var(--brand);
  margin-bottom:var(--sp-3);
}
.eyebrow::before{ content:''; width:22px; height:2px; background:var(--brand-300); border-radius:2px; }
.sec-head--center .eyebrow::before{ display:none; }
.sec-title{ font-size:clamp(1.75rem,3.4vw,var(--t-3xl)); }
.sec-sub{ margin-top:var(--sp-3); color:var(--ink-3); font-size:var(--t-md); line-height:1.6; }

/* ── 4. Dugmad ───────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:var(--sp-2);
  font-family:var(--f-head); font-weight:700; font-size:var(--t-base);
  padding:.8rem 1.5rem; border-radius:var(--r-full); border:1.5px solid transparent;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn--primary{ background:var(--brand); color:#fff; box-shadow:0 4px 14px rgba(11,127,180,.28); }
.btn--primary:hover{ background:var(--brand-600); box-shadow:0 8px 22px rgba(11,127,180,.34); }
.btn--heat{ background:var(--heat); color:#fff; box-shadow:0 4px 14px rgba(233,98,47,.26); }
.btn--heat:hover{ background:#D4551F; }
.btn--ghost{ border-color:var(--line-2); color:var(--ink); background:#fff; }
.btn--ghost:hover{ border-color:var(--brand); color:var(--brand); }
.btn--light{ background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.28); backdrop-filter:blur(6px); }
.btn--light:hover{ background:rgba(255,255,255,.24); }
.btn--sm{ padding:.55rem 1.05rem; font-size:var(--t-sm); }
.btn--block{ width:100%; }

/* ── 5. Traka obavijesti ─────────────────────────────────── */
.topbar{
  background:linear-gradient(90deg,var(--ink) 0%,#1D3140 55%,var(--brand-700) 100%);
  color:#fff; font-size:var(--t-sm);
}
.topbar__in{ display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4); min-height:40px; }
.topbar__msg{ display:flex; align-items:center; gap:var(--sp-2); color:rgba(255,255,255,.9); }
.topbar__msg b{ color:#fff; }
.topbar__links{ display:flex; align-items:center; gap:var(--sp-5); }
.topbar__links a{ display:inline-flex; align-items:center; gap:6px; color:rgba(255,255,255,.86); transition:color .16s; }
.topbar__links a:hover{ color:#fff; }
.topbar__links svg{ width:15px; height:15px; opacity:.85; }

/* ── 6. Zaglavlje ────────────────────────────────────────── */
.hdr{
  position:sticky; top:0; z-index:60; background:rgba(255,255,255,.94);
  backdrop-filter:saturate(180%) blur(14px); border-bottom:1px solid var(--line);
  transition:box-shadow .2s var(--ease);
}
.hdr.is-stuck{ box-shadow:var(--sh-2); }
.hdr__in{ display:flex; align-items:center; gap:var(--sp-5); min-height:80px; }

/* logotip — bez okvira, veći */
.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand img{ height:46px; width:auto; display:block; }

/* pretraga */
.srch{ position:relative; flex:1; max-width:520px; }
.srch__ic{
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:18px; height:18px; color:var(--ink-4); pointer-events:none;
}
.srch__in{
  width:100%; height:46px; padding:0 40px 0 42px; border-radius:var(--r-full);
  border:1.5px solid var(--line-2); background:var(--bg-soft); color:var(--ink);
  font-family:var(--f-body); font-size:var(--t-base); transition:.18s var(--ease);
}
.srch__in::placeholder{ color:var(--ink-4); }
.srch__in:focus{
  outline:none; background:#fff; border-color:var(--brand-300);
  box-shadow:0 0 0 4px rgba(75,184,232,.16);
}
.srch__in::-webkit-search-cancel-button{ display:none; }
.srch__x{
  position:absolute; right:8px; top:50%; transform:translateY(-50%);
  width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
  color:var(--ink-4); transition:.16s;
}
.srch__x:hover{ background:var(--line); color:var(--ink); }
.srch__x svg{ width:15px; height:15px; }

/* prijedlozi pretrage */
.sugg{
  position:absolute; top:calc(100% + 8px); left:0; right:0; z-index:80;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--sh-3); overflow:hidden; max-height:min(70vh,460px); overflow-y:auto;
}
.sugg__h{
  padding:.55rem var(--sp-4) .3rem; font-family:var(--f-head); font-weight:800;
  font-size:var(--t-xs); text-transform:uppercase; letter-spacing:.08em; color:var(--ink-4);
}
.sugg__it{
  display:flex; align-items:center; gap:var(--sp-3); width:100%; text-align:left;
  padding:.5rem var(--sp-4); transition:background .14s; cursor:pointer;
}
.sugg__it:hover,.sugg__it.is-on{ background:var(--brand-50); }
.sugg__it img{ width:44px; height:44px; object-fit:contain; flex-shrink:0; }
.sugg__ic{
  width:34px; height:34px; flex-shrink:0; border-radius:9px; display:grid; place-items:center;
  background:var(--brand-50); color:var(--brand);
}
.sugg__ic svg{ width:17px; height:17px; }
.sugg__tx{ min-width:0; flex:1; }
.sugg__tx b{ display:block; font-family:var(--f-head); font-size:var(--t-sm); font-weight:700;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sugg__tx span{ font-size:var(--t-xs); color:var(--ink-3); }
.sugg__p{ font-family:var(--f-head); font-weight:800; font-size:var(--t-sm); color:var(--brand); white-space:nowrap; }
.sugg__none{ padding:var(--sp-5) var(--sp-4); text-align:center; color:var(--ink-3); font-size:var(--t-sm); }
.sugg mark{ background:var(--brand-100); color:inherit; border-radius:3px; }

/* desna strana zaglavlja */
.hdr__cta{ display:flex; align-items:center; gap:var(--sp-3); flex-shrink:0; margin-left:auto; }
.hdr__tel{ display:flex; flex-direction:column; line-height:1.2; text-align:right; }
.hdr__tel span{ font-size:var(--t-xs); color:var(--ink-4); }
.hdr__tel b{ font-family:var(--f-head); font-size:var(--t-md); font-weight:800; color:var(--ink); }

.iconbtn{
  position:relative; width:46px; height:46px; border-radius:var(--r-full);
  border:1.5px solid var(--line-2); background:#fff; color:var(--ink);
  display:grid; place-items:center; transition:.16s var(--ease);
}
.iconbtn:hover{ border-color:var(--brand); color:var(--brand); background:var(--brand-50); }
.iconbtn svg{ width:21px; height:21px; }
.iconbtn__badge{
  position:absolute; top:-4px; right:-4px; min-width:21px; height:21px; padding:0 5px;
  border-radius:var(--r-full); background:var(--sale); color:#fff; border:2px solid #fff;
  font-family:var(--f-head); font-weight:800; font-size:11px; line-height:17px; text-align:center;
}
.iconbtn.is-bump{ animation:bump .38s var(--ease); }
@keyframes bump{ 0%,100%{ transform:scale(1); } 40%{ transform:scale(1.16); } }

/* traka kategorija */
.navbar{ border-top:1px solid var(--line); background:#fff; }
.navbar__in{ display:flex; align-items:center; gap:var(--sp-4); }
.navbar__note{
  margin-left:auto; display:flex; align-items:center; gap:6px; flex-shrink:0;
  font-size:var(--t-xs); color:var(--ink-3); white-space:nowrap;
}
.navbar__note svg{ width:15px; height:15px; color:var(--brand); }

.nav{ display:flex; align-items:center; gap:1px; }
.nav__a{
  position:relative; display:flex; align-items:center; gap:6px; padding:.8rem .8rem;
  font-family:var(--f-head); font-weight:600; font-size:var(--t-base); color:var(--ink-2);
  white-space:nowrap; transition:color .16s, background .16s; background:none; border:0; cursor:pointer;
}
.nav__a svg{ width:15px; height:15px; }
.nav__a:hover{ color:var(--brand); }
.nav__a.is-active{ color:var(--brand); }
.nav__a.is-active::after{
  content:''; position:absolute; left:.8rem; right:.8rem; bottom:0;
  height:2px; background:var(--brand); border-radius:2px;
}
.nav__a--sale{ color:var(--sale); }
.nav__a--sale:hover{ color:#B21F3E; }
.nav__a--all{
  background:var(--brand); color:#fff; border-radius:var(--r) var(--r) 0 0;
  padding-inline:1rem; margin-right:var(--sp-3);
}
.nav__a--all:hover{ background:var(--brand-600); color:#fff; }
.nav__burg{ width:17px; height:17px; }
.nav__chev{ width:14px; height:14px; transition:transform .2s var(--ease); opacity:.7; }

/* padajući izbornici */
.nav__drop{ position:relative; }
.nav__drop.is-open .nav__chev{ transform:rotate(180deg); }
.mega{
  position:absolute; top:100%; left:0; z-index:70; min-width:660px;
  background:#fff; border:1px solid var(--line); border-radius:0 var(--r-lg) var(--r-lg) var(--r-lg);
  box-shadow:var(--sh-3); padding:var(--sp-4);
  display:grid; grid-template-columns:repeat(2,1fr); gap:2px;
  opacity:0; visibility:hidden; transform:translateY(-8px); transition:.18s var(--ease);
}
.nav__drop.is-open .mega{ opacity:1; visibility:visible; transform:none; }
.mega__it{ display:flex; align-items:flex-start; gap:var(--sp-3); padding:var(--sp-3); border-radius:var(--r); transition:background .16s; }
.mega__it:hover{ background:var(--brand-50); }
.mega__ic{
  width:38px; height:38px; flex-shrink:0; border-radius:10px; display:grid; place-items:center;
  background:linear-gradient(140deg,var(--brand) 0%,var(--brand-300) 100%); color:#fff;
}
.mega__it--heat .mega__ic{ background:linear-gradient(140deg,var(--heat) 0%,#F79E6B 100%); }
.mega__ic svg{ width:19px; height:19px; }
.mega__tx b{ display:block; font-family:var(--f-head); font-size:var(--t-base); font-weight:700; color:var(--ink); }
.mega__tx > span{ display:block; font-size:var(--t-xs); color:var(--ink-3); line-height:1.45; margin-top:2px; }
.mega__n{ display:inline; margin-left:4px; }
.mega__n{ font-size:var(--t-xs); color:var(--brand); font-weight:700; }

.mega--brend{ min-width:520px; grid-template-columns:repeat(3,1fr); }

/* dropdown jedne kategorije: brendovi lijevo, sažetak desno */
.mega--kat{
  min-width:520px; grid-template-columns:1.05fr .95fr; gap:var(--sp-4);
  border-radius:var(--r-lg); padding:var(--sp-4) var(--sp-5) var(--sp-5);
}
.mega__col{ display:flex; flex-direction:column; gap:1px; min-width:0; }
.mega__col--info{
  border-left:1px solid var(--line); padding-left:var(--sp-5); gap:0;
}
.mega__nas{
  font-family:var(--f-head); font-weight:800; font-size:var(--t-xs);
  text-transform:uppercase; letter-spacing:.08em; color:var(--ink-4);
  margin-bottom:var(--sp-3);
}
.mega__opis{ font-size:var(--t-sm); color:var(--ink-3); line-height:1.55; margin-bottom:var(--sp-4); }
.mega__fakt{ display:flex; flex-direction:column; gap:var(--sp-3); margin-bottom:var(--sp-4); }
.mega__fakt div{ display:flex; flex-direction:column; }
.mega__fakt b{ font-family:var(--f-head); font-size:var(--t-md); font-weight:800; color:var(--brand); line-height:1.15; }
.mega__fakt span{ font-size:var(--t-xs); color:var(--ink-4); }
.mega__col--info .mega__all{
  margin-top:auto; padding-top:var(--sp-3); justify-content:flex-start;
}
.mega__b.is-off{ color:var(--ink-4); cursor:default; }
.mega__b.is-off:hover{ background:none; color:var(--ink-4); }
.mega__b{
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-2);
  padding:.5rem .7rem; border-radius:var(--r-sm); transition:background .16s;
  font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); color:var(--ink-2);
}
.mega__b:hover{ background:var(--brand-50); color:var(--brand); }
.mega__b span{ font-size:var(--t-xs); color:var(--ink-4); font-weight:600; }
.mega__all{
  grid-column:1/-1; margin-top:var(--sp-2); padding-top:var(--sp-3); border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); color:var(--brand);
}
.mega__all svg{ width:15px; height:15px; }

.burger{ display:none; width:44px; height:44px; border-radius:var(--r); border:1px solid var(--line-2); align-items:center; justify-content:center; }
.burger span{ display:block; width:19px; height:2px; background:var(--ink); border-radius:2px; position:relative; transition:.22s var(--ease); }
.burger span::before,.burger span::after{ content:''; position:absolute; left:0; width:19px; height:2px; background:var(--ink); border-radius:2px; transition:.22s var(--ease); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }
.burger.is-open span{ background:transparent; }
.burger.is-open span::before{ top:0; transform:rotate(45deg); }
.burger.is-open span::after{ top:0; transform:rotate(-45deg); }

/* ── 7. Hero — vrtuljak (svijetla, „ledena" podloga) ─────── */
.hero{
  position:relative; color:var(--ink);
  background:linear-gradient(168deg,#F4FBFF 0%,#E4F4FD 44%,#D3ECFA 100%);
  border-bottom:1px solid var(--line);
}
.sldr{ position:relative; overflow:hidden; }
.sld{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity .55s var(--ease), visibility .55s;
}
.sld.is-on{ position:relative; opacity:1; visibility:visible; }
.sld::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(1100px 620px at 80% -10%, rgba(75,184,232,.30), transparent 62%),
    radial-gradient(760px 520px at 4% 110%, rgba(11,127,180,.14), transparent 60%);
}
.sld--brz::before{
  background:
    radial-gradient(1000px 600px at 76% -8%, rgba(18,145,106,.16), transparent 62%),
    radial-gradient(720px 500px at 6% 110%, rgba(75,184,232,.26), transparent 60%);
}
.sld--akc::before{
  background:
    radial-gradient(1000px 600px at 78% -8%, rgba(233,98,47,.20), transparent 62%),
    radial-gradient(720px 500px at 4% 108%, rgba(214,39,75,.13), transparent 60%);
}

/* ── pahuljice koje padaju ───────────────────────────────── */
.pahulje{ position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.pah{
  position:absolute; top:-8%; left:var(--l);
  width:var(--v); height:var(--v);
  color:var(--brand-300); opacity:var(--o);
  animation:pada var(--t) linear var(--d) infinite;
  will-change:transform;
}
@keyframes pada{
  0%   { transform:translate3d(0,-14vh,0) rotate(0deg); }
  50%  { transform:translate3d(var(--nj),42vh,0) rotate(180deg); }
  100% { transform:translate3d(0,104vh,0) rotate(360deg); }
}
.sld--akc ~ .pahulje .pah{ color:#F0A882; }

.sld__in{
  position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr;
  gap:var(--sp-7); align-items:center; padding-block:var(--sp-8) var(--sp-8);
  min-height:436px;
}
.sld__tx{ max-width:56ch; }
.sld h1{
  font-size:clamp(2.1rem,4.6vw,var(--t-5xl)); line-height:1.06; letter-spacing:-.03em;
  margin-bottom:var(--sp-5); color:var(--ink);
}
.sld h1 em{
  font-style:normal;
  background:linear-gradient(102deg,var(--brand) 6%,var(--brand-300) 94%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sld--akc h1 em{
  background:linear-gradient(102deg,var(--heat) 6%,#F2884F 94%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.sld__img{ position:relative; display:grid; place-items:center; }
.sld__img::before{
  content:''; position:absolute; width:88%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.35) 54%, transparent 72%);
}
/* Slike u images/hero/ imaju uklonjenu bijelu pozadinu (prozirni webp),
   pa uređaj lebdi nad podlogom. Izvorne slike u images/proizvodi/ su na bijelom
   kvadratu i ovdje se NE smiju koristiti. Pripremljene su s:
   convert IZVOR.webp -alpha set -bordercolor white -border 1 -fuzz 7% \
     -fill none -floodfill +0+0 white -shave 1x1 -trim +repage -resize 760x760\> CILJ.webp */
.sld__img img{
  position:relative; width:auto; max-width:100%; max-height:340px; height:auto;
  filter:drop-shadow(0 18px 30px rgba(11,63,90,.18));
}

.sldr__nav{
  position:absolute; top:50%; z-index:3; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.82); border:1px solid var(--line-2);
  color:var(--ink-2); box-shadow:var(--sh-1); backdrop-filter:blur(6px);
  transition:.18s var(--ease);
}
.sldr__nav:hover{ background:#fff; color:var(--brand); border-color:var(--brand-300); }
.sldr__nav svg{ width:20px; height:20px; }
.sldr__nav--p{ left:max(var(--sp-4), calc((100vw - var(--wrap)) / 2 - 56px)); }
.sldr__nav--n{ right:max(var(--sp-4), calc((100vw - var(--wrap)) / 2 - 56px)); }
.sldr__nav--p svg{ transform:rotate(90deg); }
.sldr__nav--n svg{ transform:rotate(-90deg); }

.sldr__dots{
  position:absolute; z-index:3; bottom:var(--sp-5); left:50%; transform:translateX(-50%);
  display:flex; gap:9px;
}
.sldr__dots button{
  width:30px; height:4px; border-radius:2px; background:rgba(11,127,180,.24); transition:.2s var(--ease);
}
.sldr__dots button:hover{ background:rgba(11,127,180,.45); }
.sldr__dots button.is-on{ background:var(--brand); width:44px; }

.hero__badge{
  display:inline-flex; align-items:center; gap:var(--sp-2);
  background:rgba(255,255,255,.78); border:1px solid var(--brand-100);
  color:var(--brand-700); font-family:var(--f-head); font-weight:700; font-size:var(--t-sm);
  padding:.4rem .9rem; border-radius:var(--r-full); margin-bottom:var(--sp-5);
  box-shadow:var(--sh-1);
}
.hero__badge svg{ color:var(--brand); }
.hero__badge--akc{ border-color:#F7D3C2; color:#B4471E; }
.hero__badge--akc svg{ color:var(--heat); }
.hero__lead{ font-size:var(--t-md); color:var(--ink-2); max-width:52ch; margin-bottom:var(--sp-6); }
.hero__acts{ display:flex; flex-wrap:wrap; gap:var(--sp-3); }

/* na svijetloj podlozi „light" dugme treba obris, ne prozirno bijelo */
.hero .btn--light{
  background:rgba(255,255,255,.9); color:var(--ink); border-color:var(--line-2);
  backdrop-filter:blur(6px);
}
.hero .btn--light:hover{ background:#fff; border-color:var(--brand-300); color:var(--brand); }

.hero__trust{
  position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:var(--sp-5) var(--sp-7);
  padding-bottom:var(--sp-7); padding-top:var(--sp-2);
}
.hero__trust div{ display:flex; flex-direction:column; }
.hero__trust b{ font-family:var(--f-head); font-size:var(--t-2xl); font-weight:800; color:var(--brand); line-height:1; }
.hero__trust span{ font-size:var(--t-sm); color:var(--ink-3); margin-top:4px; }

/* ── Kalkulator u svojoj sekciji ─────────────────────────── */
.sec--calc{ background:var(--bg-soft); }
.calc__wrap{ display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-7); align-items:center; }
.calc__uvod .sec-title{ margin-bottom:var(--sp-3); }
.calc__lista{ list-style:none; display:flex; flex-direction:column; gap:var(--sp-2); margin-top:var(--sp-4); }
.calc__lista li{ display:flex; align-items:flex-start; gap:9px; font-size:var(--t-sm); color:var(--ink-2); }
.calc__lista svg{ width:16px; height:16px; color:var(--ok); flex-shrink:0; margin-top:2px; }

/* ── 8. Kalkulator (hero kartica) ────────────────────────── */
.calc{
  background:#fff; color:var(--ink); border-radius:var(--r-xl);
  padding:var(--sp-6); box-shadow:var(--sh-4); position:relative;
}
.calc__top{ display:flex; align-items:flex-start; gap:var(--sp-3); margin-bottom:var(--sp-5); }
.calc__icon{
  width:44px; height:44px; flex-shrink:0; border-radius:var(--r); display:grid; place-items:center;
  background:linear-gradient(140deg,var(--brand) 0%,var(--brand-300) 100%); color:#fff;
}
.calc__icon svg{ width:23px; height:23px; }
.calc h3{ font-size:var(--t-lg); margin-bottom:2px; }
.calc__top p{ font-size:var(--t-sm); color:var(--ink-3); line-height:1.5; }
.calc__row{ margin-bottom:var(--sp-4); }
.calc__lbl{
  display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); margin-bottom:var(--sp-2);
}
.calc__lbl output{ color:var(--brand); font-size:var(--t-md); font-weight:800; }
.calc input[type=range]{
  width:100%; height:6px; border-radius:var(--r-full); appearance:none;
  background:linear-gradient(90deg,var(--brand) var(--pct,35%),var(--line) var(--pct,35%));
  cursor:pointer;
}
.calc input[type=range]::-webkit-slider-thumb{
  appearance:none; width:22px; height:22px; border-radius:50%; background:#fff;
  border:3px solid var(--brand); box-shadow:var(--sh-2); cursor:grab;
}
.calc input[type=range]::-moz-range-thumb{
  width:22px; height:22px; border-radius:50%; background:#fff; border:3px solid var(--brand);
  box-shadow:var(--sh-2); cursor:grab; }
.calc__chips{ display:flex; flex-wrap:wrap; gap:var(--sp-2); }
.chip{
  padding:.42rem .85rem; border-radius:var(--r-full); border:1.5px solid var(--line-2);
  font-size:var(--t-sm); font-weight:600; font-family:var(--f-head); color:var(--ink-2);
  transition:.16s var(--ease); background:#fff;
}
.chip:hover{ border-color:var(--brand-300); color:var(--brand); }
.chip.is-on{ background:var(--brand); border-color:var(--brand); color:#fff; }
.calc__out{
  margin:var(--sp-5) 0 var(--sp-4); padding:var(--sp-4);
  background:var(--brand-50); border:1px solid var(--brand-100); border-radius:var(--r-lg);
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-3);
}
.calc__out div span{ display:block; font-size:var(--t-xs); color:var(--ink-3); text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.calc__out div b{ font-family:var(--f-head); font-size:var(--t-2xl); font-weight:800; color:var(--brand); line-height:1.15; }
.calc__out small{ font-size:var(--t-xs); color:var(--ink-3); text-align:right; max-width:15ch; line-height:1.4; }

/* ── 9. Traka povjerenja ─────────────────────────────────── */
.usp{ border-bottom:1px solid var(--line); background:#fff; }
.usp__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); }
.usp__it{ background:#fff; padding:var(--sp-5) var(--sp-4); display:flex; gap:var(--sp-3); align-items:flex-start; }
.usp__ic{
  width:38px; height:38px; flex-shrink:0; border-radius:10px; display:grid; place-items:center;
  background:var(--brand-50); color:var(--brand);
}
.usp__ic svg{ width:20px; height:20px; }
.usp__it b{ display:block; font-family:var(--f-head); font-size:var(--t-base); font-weight:700; }
.usp__it span{ font-size:var(--t-sm); color:var(--ink-3); line-height:1.45; }

/* ── Mrvice (putanja) ────────────────────────────────────── */
.krumb{ border-bottom:1px solid var(--line); background:#fff; }
.krumb .wrap{ display:flex; align-items:center; gap:var(--sp-2); padding-block:.7rem; font-size:var(--t-sm); }
.krumb a{ color:var(--ink-3); transition:color .16s; }
.krumb a:hover{ color:var(--brand); }
.krumb svg{ width:13px; height:13px; color:var(--ink-4); flex-shrink:0; }
.krumb span{ color:var(--ink); font-family:var(--f-head); font-weight:700; }

/* ── 11. Shop: filtri + rezultati ────────────────────────── */
.sec--shop{ padding-top:var(--sp-6); }
.sec--shop .sec-title{ font-size:clamp(1.7rem,3.4vw,var(--t-3xl)); }

/* naslov sekcije s dugmetom uz njega */
.sec-head--red{ display:flex; align-items:flex-end; justify-content:space-between; gap:var(--sp-5); flex-wrap:wrap; }
.sec-head__cta{ flex-shrink:0; margin-bottom:4px; }
.sec-head__cta svg{ width:15px; height:15px; }

/* pomoć u dnu filtera i ispod rezultata */
.fltr__pomoc{ background:var(--brand-50); }
.fltr__pomoc b{ display:block; font-family:var(--f-head); font-size:var(--t-sm); margin-bottom:4px; }
.fltr__pomoc p{ font-size:var(--t-xs); color:var(--ink-3); line-height:1.5; margin-bottom:var(--sp-3); }
.fltr__pomoc .btn{ width:100%; justify-content:center; }
.shop__pomoc{
  margin-top:var(--sp-7); padding:var(--sp-5) var(--sp-6); border-radius:var(--r-lg);
  background:#fff; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-5); flex-wrap:wrap;
}
.shop__pomoc b{ display:block; font-family:var(--f-head); font-size:var(--t-md); margin-bottom:3px; }
.shop__pomoc p{ font-size:var(--t-sm); color:var(--ink-3); max-width:56ch; }
.shop{ display:grid; grid-template-columns:262px 1fr; gap:var(--sp-5); align-items:start; }

.fltr{
  position:sticky; top:140px; background:#fff; border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden; max-height:calc(100vh - 170px); overflow-y:auto;
}
.fltr__top{
  display:flex; align-items:center; gap:var(--sp-2); padding:var(--sp-4);
  border-bottom:1px solid var(--line); position:sticky; top:0; background:#fff; z-index:2;
}
.fltr__top b{ display:flex; align-items:center; gap:7px; font-family:var(--f-head); font-size:var(--t-base); }
.fltr__top b svg{ width:16px; height:16px; color:var(--brand); }
.fltr__reset{
  margin-left:auto; font-size:var(--t-xs); font-weight:700; font-family:var(--f-head);
  color:var(--ink-4); transition:color .16s;
}
.fltr__reset:hover{ color:var(--sale); }
.fltr__x{ display:none; width:30px; height:30px; border-radius:50%; place-items:center; color:var(--ink-3); }
.fltr__x svg{ width:16px; height:16px; }

.fltr__g{ padding:var(--sp-3) var(--sp-4); border-bottom:1px solid var(--line); }
.fltr__g:last-child{ border-bottom:0; }
.fltr__h{
  display:flex; align-items:baseline; gap:6px; margin-bottom:var(--sp-3);
  font-family:var(--f-head); font-weight:800; font-size:var(--t-xs);
  text-transform:uppercase; letter-spacing:.08em; color:var(--ink-3);
}
.fltr__hint{ text-transform:none; letter-spacing:0; font-weight:600; color:var(--ink-4); font-size:11px; }
.fltr__body{ display:flex; flex-direction:column; gap:2px; }
.fltr__body--scroll{ max-height:196px; overflow-y:auto; padding-right:4px; }
.fltr__chips{ flex-direction:row; flex-wrap:wrap; gap:6px; }

/* radio / checkbox red */
.chk{
  display:flex; align-items:center; gap:9px; padding:.4rem .3rem; border-radius:var(--r-sm);
  font-size:var(--t-sm); color:var(--ink-2); cursor:pointer; transition:background .14s;
  position:relative;
}
.chk:hover{ background:var(--brand-50); }
.chk input{ position:absolute; opacity:0; width:0; height:0; }
.chk > span{
  width:17px; height:17px; flex-shrink:0; border-radius:5px; border:1.6px solid var(--line-2);
  background:#fff; transition:.14s var(--ease); position:relative;
}
.chk input[type=radio] + span{ border-radius:50%; }
.chk input:checked + span{ background:var(--brand); border-color:var(--brand); }
.chk input:checked + span::after{
  content:''; position:absolute; left:5px; top:1.5px; width:4.5px; height:9px;
  border:solid #fff; border-width:0 2px 2px 0; transform:rotate(42deg);
}
.chk input[type=radio]:checked + span::after{
  left:4px; top:4px; width:5px; height:5px; border:0; background:#fff; border-radius:50%; transform:none;
}
.chk input:focus-visible + span{ box-shadow:0 0 0 3px rgba(75,184,232,.3); }
.chk__n{ margin-left:auto; font-size:var(--t-xs); color:var(--ink-4); font-weight:600; }
.chk--mont{ padding:var(--sp-3); border:1px solid var(--line); border-radius:var(--r); align-items:flex-start; }
.chk--mont div{ font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); line-height:1.35; }
.chk--mont small{ display:block; font-weight:600; font-size:var(--t-xs); color:var(--ink-3); }

/* raspon cijene */
.rng{ position:relative; height:26px; margin:2px 0 var(--sp-2); }
.rng__track{ position:absolute; left:0; right:0; top:11px; height:4px; border-radius:2px; background:var(--line); }
.rng__fill{ position:absolute; height:100%; border-radius:2px; background:var(--brand); }
.rng input{
  position:absolute; left:0; width:100%; top:0; height:26px; margin:0;
  appearance:none; background:none; pointer-events:none;
}
.rng input::-webkit-slider-thumb{
  appearance:none; pointer-events:auto; width:18px; height:18px; border-radius:50%;
  background:#fff; border:2.5px solid var(--brand); box-shadow:var(--sh-1); cursor:grab;
}
.rng input::-moz-range-thumb{
  pointer-events:auto; width:18px; height:18px; border-radius:50%;
  background:#fff; border:2.5px solid var(--brand); box-shadow:var(--sh-1); cursor:grab;
}
.rng__val{
  display:flex; justify-content:space-between; font-family:var(--f-head);
  font-weight:700; font-size:var(--t-sm); color:var(--ink-2);
}

/* traka iznad rezultata */
.shop__bar{
  display:flex; align-items:center; gap:var(--sp-3); margin-bottom:var(--sp-4);
  padding-bottom:var(--sp-3); border-bottom:1px solid var(--line);
}
.shop__count{ font-size:var(--t-sm); color:var(--ink-3); }
.shop__count b{ color:var(--ink); font-family:var(--f-head); }
.shop__bar .sel{ margin-left:auto; }
.shop__fbtn{ display:none; background:#fff; border-color:var(--line-2); color:var(--ink); }
.shop__fbtn svg{ width:15px; height:15px; }
.shop__fbtn span{
  min-width:19px; height:19px; padding:0 5px; border-radius:var(--r-full);
  background:var(--brand); color:#fff; font-size:11px; line-height:19px; font-weight:800;
}
.shop__chips{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:var(--sp-4); }
.shop__chips:empty{ display:none; }
.pill{
  display:inline-flex; align-items:center; gap:6px; padding:.32rem .5rem .32rem .7rem;
  border-radius:var(--r-full); background:var(--brand-50); border:1px solid var(--brand-100);
  font-family:var(--f-head); font-weight:700; font-size:var(--t-xs); color:var(--brand-700);
}
.pill svg{ width:12px; height:12px; }
.pill button{ display:grid; place-items:center; width:17px; height:17px; border-radius:50%; color:var(--brand); transition:.14s; }
.pill button:hover{ background:var(--brand); color:#fff; }
.fltr__veil{ display:none; }

/* filtri kao stara traka (koristi ih modal usluga) */
.sel{
  padding:.5rem 2rem .5rem .9rem; border-radius:var(--r-full); border:1.5px solid var(--line-2);
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5 6 8.5l4-4' stroke='%2362737F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right .8rem center/12px;
  font-family:var(--f-head); font-weight:600; font-size:var(--t-sm); appearance:none; cursor:pointer;
  color:var(--ink);
}
.sel:hover{ border-color:var(--brand-300); }

/* ── 12. Kartica proizvoda ───────────────────────────────── */
.grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:var(--sp-4); }
.card{
  position:relative; display:flex; flex-direction:column; background:#fff;
  border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden;
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--sh-3); border-color:var(--brand-100); }
.card__media{ position:relative; aspect-ratio:1/1; background:#fff; padding:var(--sp-4); }
.card__media img{ width:100%; height:100%; object-fit:contain; transition:transform .3s var(--ease); }
.card:hover .card__media img{ transform:scale(1.045); }
.card__flags{ position:absolute; top:var(--sp-3); left:var(--sp-3); display:flex; flex-direction:column; gap:5px; z-index:2; }
.flag{
  font-family:var(--f-head); font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:.28rem .55rem; border-radius:var(--r-sm); color:#fff; background:var(--ink);
}
.flag--sale{ background:var(--sale); }
.flag--top{ background:var(--brand); }
.flag--new{ background:var(--ok); }
.flag--rec{ background:var(--heat); }
.card__save{
  position:absolute; top:var(--sp-3); right:var(--sp-3); z-index:2;
  width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line);
  display:grid; place-items:center; color:var(--ink-4); transition:.16s var(--ease);
}
.card__save:hover{ color:var(--sale); border-color:var(--sale); }
.card__save svg{ width:16px; height:16px; }
.card__body{ padding:0 var(--sp-4) var(--sp-4); display:flex; flex-direction:column; flex:1; }
.card__brand{
  font-family:var(--f-head); font-size:var(--t-xs); font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; color:var(--brand); margin-bottom:5px;
}
.card__name{
  font-family:var(--f-head); font-size:var(--t-base); font-weight:700; line-height:1.35;
  margin-bottom:var(--sp-3); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden; min-height:2.7em;
}
.card__specs{ display:flex; flex-wrap:wrap; gap:5px; margin-bottom:var(--sp-3); }
.spec{
  font-size:var(--t-xs); font-weight:600; padding:.22rem .5rem; border-radius:var(--r-sm);
  background:var(--bg-soft); color:var(--ink-2); border:1px solid var(--line);
}
.spec--en{ background:var(--brand-50); color:var(--brand-600); border-color:var(--brand-100); font-weight:800; }
.card__price{ margin-top:auto; display:flex; align-items:baseline; gap:var(--sp-2); flex-wrap:wrap; }
.price{ font-family:var(--f-head); font-size:var(--t-xl); font-weight:800; color:var(--ink); letter-spacing:-.02em; }
.price--sale{ color:var(--sale); }
.price__old{ font-size:var(--t-sm); color:var(--ink-4); text-decoration:line-through; }
.card__rate{ display:flex; align-items:center; gap:4px; font-size:var(--t-xs); color:var(--ink-3); margin-top:4px; }
.card__rate svg{ width:13px; height:13px; color:#F5A623; }
.card__note{ font-size:var(--t-xs); color:var(--ink-4); margin-top:5px; }
.card__acts{ display:flex; gap:var(--sp-2); margin-top:var(--sp-4); }
.card__acts .btn{ flex:1; }

/* ── 13. Prazan rezultat ─────────────────────────────────── */
.empty{ grid-column:1/-1; text-align:center; padding:var(--sp-9) var(--sp-4); color:var(--ink-3); }
.empty svg{ width:52px; height:52px; margin:0 auto var(--sp-4); color:var(--line-2); }
.empty b{ display:block; font-family:var(--f-head); font-size:var(--t-lg); color:var(--ink); margin-bottom:var(--sp-2); }

/* ── 14. Istaknuta akcija (banner) ───────────────────────── */
.promo{
  position:relative; overflow:hidden; border-radius:var(--r-xl); color:#fff;
  background:linear-gradient(122deg,var(--ink) 0%,#173447 52%,var(--brand-700) 100%);
  padding:var(--sp-8); display:grid; grid-template-columns:1.25fr .75fr; gap:var(--sp-6); align-items:center;
}
.promo::before{
  content:''; position:absolute; right:-8%; top:-46%; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(75,184,232,.36) 0%,transparent 64%);
}
.promo__c{ position:relative; z-index:2; }
.promo__tag{
  display:inline-flex; align-items:center; gap:var(--sp-2); background:var(--heat); color:#fff;
  font-family:var(--f-head); font-weight:800; font-size:var(--t-xs); letter-spacing:.1em; text-transform:uppercase;
  padding:.32rem .8rem; border-radius:var(--r-full); margin-bottom:var(--sp-4);
}
.promo h2{ font-size:clamp(1.5rem,3vw,var(--t-2xl)); margin-bottom:var(--sp-3); }
.promo p{ color:rgba(226,238,246,.82); font-size:var(--t-md); margin-bottom:var(--sp-5); max-width:46ch; }
.promo__pts{ position:relative; z-index:2; display:flex; flex-direction:column; gap:var(--sp-3); }
.promo__pt{ display:flex; gap:var(--sp-3); align-items:flex-start; }
.promo__pt svg{ width:20px; height:20px; flex-shrink:0; color:var(--brand-300); margin-top:2px; }
.promo__pt b{ display:block; font-family:var(--f-head); font-size:var(--t-base); }
.promo__pt span{ font-size:var(--t-sm); color:rgba(226,238,246,.66); line-height:1.45; }

/* ── 15. Usluge / cjenik ─────────────────────────────────── */
.svc{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--sp-4); }
.svc__it{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:var(--sp-5);
  display:flex; flex-direction:column; transition:.22s var(--ease);
}
.svc__it:hover{ border-color:var(--brand-100); box-shadow:var(--sh-2); transform:translateY(-3px); }
.svc__it h3{ font-size:var(--t-md); margin-bottom:var(--sp-2); }
.svc__it p{ font-size:var(--t-sm); color:var(--ink-3); line-height:1.55; margin-bottom:var(--sp-4); }
.svc__price{ margin-top:auto; display:flex; align-items:baseline; gap:var(--sp-2); padding-top:var(--sp-3); border-top:1px dashed var(--line-2); }
.svc__price b{ font-family:var(--f-head); font-size:var(--t-xl); font-weight:800; color:var(--brand); }
.svc__price span{ font-size:var(--t-xs); color:var(--ink-4); }

.pricelist{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; }
.pricelist__h{
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4);
  padding:var(--sp-4) var(--sp-5); background:var(--bg-soft); border-bottom:1px solid var(--line);
}
.pricelist__h b{ font-family:var(--f-head); font-size:var(--t-md); }
.pricelist__h span{ font-size:var(--t-xs); color:var(--ink-3); }
.prow{
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4);
  padding:.85rem var(--sp-5); border-bottom:1px solid var(--line); font-size:var(--t-base);
}
.prow:last-child{ border-bottom:0; }
.prow:nth-child(even){ background:#FCFDFE; }
.prow span{ color:var(--ink-2); }
.prow b{ font-family:var(--f-head); font-weight:800; color:var(--ink); white-space:nowrap; }

/* ── 16. Zašto mi ────────────────────────────────────────── */
.why{ display:grid; grid-template-columns:repeat(2,1fr); gap:var(--sp-6) var(--sp-8); }
.why__it{ display:flex; gap:var(--sp-4); align-items:flex-start; }
.why__n{
  flex-shrink:0; width:46px; height:46px; border-radius:14px; display:grid; place-items:center;
  background:var(--brand-50); color:var(--brand); font-family:var(--f-head); font-weight:800; font-size:var(--t-md);
  border:1px solid var(--brand-100);
}
.why__it h3{ font-size:var(--t-md); margin-bottom:var(--sp-2); }
.why__it p{ font-size:var(--t-base); color:var(--ink-3); line-height:1.6; }

/* ── 17. Recenzije ───────────────────────────────────────── */
.revs{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--sp-4); }
.rev{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:var(--sp-5); display:flex; flex-direction:column; }
.rev__stars{ display:flex; gap:2px; margin-bottom:var(--sp-3); color:#F5A623; }
.rev__stars svg{ width:16px; height:16px; }
.rev p{ font-size:var(--t-base); color:var(--ink-2); line-height:1.65; margin-bottom:var(--sp-4); }
.rev__who{ margin-top:auto; display:flex; align-items:center; gap:var(--sp-3); padding-top:var(--sp-4); border-top:1px solid var(--line); }
.rev__av{
  width:38px; height:38px; border-radius:50%; display:grid; place-items:center; flex-shrink:0;
  background:linear-gradient(140deg,var(--brand) 0%,var(--brand-300) 100%); color:#fff;
  font-family:var(--f-head); font-weight:800; font-size:var(--t-sm);
}
.rev__who b{ display:block; font-family:var(--f-head); font-size:var(--t-base); }
.rev__who span{ font-size:var(--t-xs); color:var(--ink-4); }

/* ── 18. FAQ ─────────────────────────────────────────────── */
.faq{ max-width:840px; margin-inline:auto; }
.faq__it{ border-bottom:1px solid var(--line); }
.faq__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4);
  padding:var(--sp-5) 0; text-align:left; font-family:var(--f-head); font-weight:700; font-size:var(--t-md);
  transition:color .16s;
}
.faq__q:hover{ color:var(--brand); }
.faq__q svg{ width:20px; height:20px; flex-shrink:0; color:var(--brand); transition:transform .24s var(--ease); }
.faq__it.is-open .faq__q svg{ transform:rotate(45deg); }
.faq__a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .28s var(--ease); }
.faq__it.is-open .faq__a{ grid-template-rows:1fr; }
.faq__a > div{ overflow:hidden; }
.faq__a p{ padding-bottom:var(--sp-5); color:var(--ink-3); line-height:1.7; max-width:70ch; }

/* ── 19. Kontakt ─────────────────────────────────────────── */
.contact{ display:grid; grid-template-columns:.95fr 1.05fr; gap:var(--sp-8); align-items:start; }
.cinfo__list{ display:flex; flex-direction:column; gap:var(--sp-4); margin-top:var(--sp-6); }
.cinfo__it{ display:flex; gap:var(--sp-4); align-items:flex-start; }
.cinfo__ic{
  width:42px; height:42px; flex-shrink:0; border-radius:12px; display:grid; place-items:center;
  background:var(--brand-50); color:var(--brand); border:1px solid var(--brand-100);
}
.cinfo__ic svg{ width:19px; height:19px; }
.cinfo__it b{ display:block; font-family:var(--f-head); font-size:var(--t-xs); text-transform:uppercase; letter-spacing:.1em; color:var(--ink-4); margin-bottom:3px; }
.cinfo__it a,.cinfo__it p{ font-size:var(--t-md); font-weight:600; color:var(--ink); }
.cinfo__it a:hover{ color:var(--brand); }
.cinfo__it small{ display:block; font-size:var(--t-sm); color:var(--ink-3); font-weight:400; margin-top:2px; }

.hours{ margin-top:var(--sp-6); background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; }
.hours__h{ padding:var(--sp-4) var(--sp-5); background:var(--bg-soft); border-bottom:1px solid var(--line); display:flex; align-items:center; gap:var(--sp-3); }
.hours__h b{ font-family:var(--f-head); font-size:var(--t-base); }
.hours__h svg{ width:18px; height:18px; color:var(--brand); }
.hrow{ display:flex; justify-content:space-between; padding:.65rem var(--sp-5); font-size:var(--t-base); border-bottom:1px solid var(--line); }
.hrow:last-child{ border-bottom:0; }
.hrow.is-now{ background:var(--brand-50); }
.hrow span{ color:var(--ink-3); }
.hrow b{ font-weight:700; color:var(--ink); }
.hrow.is-closed b{ color:var(--ink-4); font-weight:600; }

.form{ background:#fff; border:1px solid var(--line); border-radius:var(--r-xl); padding:var(--sp-6); box-shadow:var(--sh-2); }
.form h3{ font-size:var(--t-lg); margin-bottom:var(--sp-2); }
.form > p{ font-size:var(--t-sm); color:var(--ink-3); margin-bottom:var(--sp-5); }
.fgrid{ display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-4); }
.fld{ display:flex; flex-direction:column; gap:6px; }
.fld--full{ grid-column:1/-1; }
.fld label{ font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); }
.fld label i{ color:var(--sale); font-style:normal; }
.fld input,.fld select,.fld textarea{
  padding:.7rem .9rem; border:1.5px solid var(--line-2); border-radius:var(--r);
  background:#fff; font-size:var(--t-base); transition:border-color .16s, box-shadow .16s;
}
.fld textarea{ resize:vertical; min-height:104px; font-family:var(--f-body); }
.fld input:focus,.fld select:focus,.fld textarea:focus{
  outline:none; border-color:var(--brand); box-shadow:0 0 0 3px var(--brand-100);
}
.fld select{
  appearance:none; cursor:pointer;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5 6 8.5l4-4' stroke='%2362737F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right .9rem center/12px;
  padding-right:2.2rem;
}
.fcheck{ grid-column:1/-1; display:flex; gap:var(--sp-3); align-items:flex-start; font-size:var(--t-sm); color:var(--ink-3); }
.fcheck input{ margin-top:3px; width:17px; height:17px; accent-color:var(--brand); flex-shrink:0; }
.fcheck a{ color:var(--brand); text-decoration:underline; text-underline-offset:2px; }
.form__note{ margin-top:var(--sp-4); font-size:var(--t-xs); color:var(--ink-4); text-align:center; }

/* ── 20. Podnožje ────────────────────────────────────────── */
.ftr{ background:var(--bg-deep); color:rgba(226,238,246,.72); padding-block:var(--sp-8) var(--sp-5); }
.ftr__grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:var(--sp-7); padding-bottom:var(--sp-7); border-bottom:1px solid rgba(255,255,255,.09); }
.ftr__brand img{ height:74px; width:auto; margin-bottom:var(--sp-4); }
.ftr__brand p{ font-size:var(--t-sm); line-height:1.65; margin-bottom:var(--sp-4); max-width:36ch; }
.ftr__soc{ display:flex; gap:var(--sp-2); }
.ftr__soc a{
  width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
  background:rgba(255,255,255,.07); color:rgba(226,238,246,.8); transition:.16s var(--ease);
}
.ftr__soc a:hover{ background:var(--brand); color:#fff; transform:translateY(-2px); }
.ftr__soc svg{ width:17px; height:17px; }
.ftr h4{ font-family:var(--f-head); font-size:var(--t-sm); font-weight:800; color:#fff; text-transform:uppercase; letter-spacing:.12em; margin-bottom:var(--sp-4); }
.ftr ul li{ margin-bottom:.6rem; }
.ftr ul a{ font-size:var(--t-base); transition:color .16s, padding-left .16s; }
.ftr ul a:hover{ color:var(--brand-300); padding-left:4px; }
.ftr__c{ display:flex; flex-direction:column; gap:var(--sp-3); }
.ftr__c div{ display:flex; gap:var(--sp-3); align-items:flex-start; font-size:var(--t-base); }
.ftr__c svg{ width:16px; height:16px; flex-shrink:0; color:var(--brand-300); margin-top:4px; }
.ftr__c a:hover{ color:var(--brand-300); }
.ftr__bot{ padding-top:var(--sp-5); display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4); flex-wrap:wrap; font-size:var(--t-sm); }
.ftr__bot p{ color:rgba(226,238,246,.5); }
.ftr__legal{ display:flex; gap:var(--sp-5); flex-wrap:wrap; }
.ftr__legal a{ color:rgba(226,238,246,.62); }
.ftr__legal a:hover{ color:var(--brand-300); }
.ftr__by{ color:rgba(226,238,246,.4); }
.ftr__by a{ color:var(--brand-300); font-weight:600; }

/* ── 21. Plutajuće akcije ────────────────────────────────── */
/* ── Korpa (klizna ladica) ───────────────────────────────── */
.drw{ position:fixed; inset:0; z-index:95; }
.drw__veil{ position:absolute; inset:0; background:rgba(15,28,38,.52); backdrop-filter:blur(2px); animation:fade .22s var(--ease); }
.drw__box{
  position:absolute; inset-block:0; right:0; width:100%; max-width:428px;
  background:#fff; box-shadow:var(--sh-4); display:flex; flex-direction:column;
  animation:slideIn .28s var(--ease);
}
@keyframes fade{ from{ opacity:0; } }
@keyframes slideIn{ from{ transform:translateX(100%); } }

.drw__top{
  display:flex; align-items:center; justify-content:space-between; gap:var(--sp-3);
  padding:var(--sp-4) var(--sp-5); background:var(--bg-deep); color:#fff;
}
.drw__top h2{ display:flex; align-items:center; gap:9px; font-size:var(--t-md); color:#fff; }
.drw__top h2 svg{ width:19px; height:19px; color:var(--brand-300); }
.drw__top h2 span{
  padding:.1rem .5rem; border-radius:var(--r-full); background:var(--brand);
  font-size:var(--t-xs); font-weight:800;
}
.drw__x{ width:34px; height:34px; border-radius:var(--r); display:grid; place-items:center; color:rgba(255,255,255,.7); transition:.16s; }
.drw__x:hover{ background:rgba(255,255,255,.12); color:#fff; }
.drw__x svg{ width:18px; height:18px; }

.drw__scroll{ flex:1; overflow-y:auto; }

/* stavka korpe */
.ci{ display:flex; gap:var(--sp-3); padding:var(--sp-4) var(--sp-5); border-bottom:1px solid var(--line); }
.ci__img{
  width:74px; height:74px; flex-shrink:0; border:1px solid var(--line); border-radius:var(--r);
  background:#fff; padding:5px;
}
.ci__img img{ width:100%; height:100%; object-fit:contain; }
.ci__b{ min-width:0; flex:1; }
.ci__brand{ font-family:var(--f-head); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; color:var(--brand); }
.ci__name{ display:block; font-family:var(--f-head); font-weight:700; font-size:var(--t-sm); line-height:1.35; margin:1px 0 3px; }
.ci__meta{ font-size:var(--t-xs); color:var(--ink-3); }
.ci__row{ display:flex; align-items:center; gap:var(--sp-3); margin-top:var(--sp-3); }
.qty{ display:flex; align-items:center; border:1.5px solid var(--line-2); border-radius:var(--r-full); overflow:hidden; }
.qty button{ width:28px; height:28px; display:grid; place-items:center; color:var(--ink-2); transition:.14s; }
.qty button:hover:not(:disabled){ background:var(--brand-50); color:var(--brand); }
.qty button:disabled{ opacity:.35; cursor:not-allowed; }
.qty svg{ width:13px; height:13px; }
.qty b{ min-width:26px; text-align:center; font-family:var(--f-head); font-size:var(--t-sm); font-weight:800; }
.ci__p{ margin-left:auto; text-align:right; }
.ci__p b{ display:block; font-family:var(--f-head); font-weight:800; font-size:var(--t-base); }
.ci__p s{ font-size:var(--t-xs); color:var(--ink-4); }
.ci__del{ width:26px; height:26px; border-radius:var(--r-sm); display:grid; place-items:center; color:var(--ink-4); transition:.14s; }
.ci__del:hover{ background:#FDE9ED; color:var(--sale); }
.ci__del svg{ width:15px; height:15px; }

.drw__empty{ padding:var(--sp-9) var(--sp-5); text-align:center; }
.drw__empty svg{ width:56px; height:56px; color:var(--line-2); margin-bottom:var(--sp-4); }
.drw__empty b{ display:block; font-family:var(--f-head); font-size:var(--t-lg); margin-bottom:var(--sp-2); }
.drw__empty p{ font-size:var(--t-sm); color:var(--ink-3); max-width:30ch; margin:0 auto var(--sp-5); }

.drw__foot{ border-top:1px solid var(--line); padding:var(--sp-4) var(--sp-5) var(--sp-3); background:var(--bg-soft); }
.drw__sum{ margin:var(--sp-4) 0 var(--sp-2); display:flex; flex-direction:column; gap:5px; }
.drw__sum > div{ display:flex; justify-content:space-between; align-items:baseline; font-size:var(--t-sm); color:var(--ink-3); }
.drw__sum b{ font-family:var(--f-head); font-weight:700; color:var(--ink); }
.drw__sum .is-save{ color:var(--ok); }
.drw__tot{ border-top:1px solid var(--line-2); padding-top:var(--sp-3); margin-top:var(--sp-2); }
.drw__tot span{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:var(--t-md); }
.drw__tot b{ font-size:var(--t-xl); font-weight:800; color:var(--brand); }
.drw__note{ font-size:11.5px; color:var(--ink-3); line-height:1.45; margin-bottom:var(--sp-3); }
.btn--full{ width:100%; justify-content:center; }
.drw__trust{ display:flex; justify-content:center; gap:var(--sp-4); padding-top:var(--sp-3); flex-wrap:wrap; }
.drw__trust span{ display:flex; align-items:center; gap:5px; font-size:11px; font-weight:600; color:var(--ink-3); }
.drw__trust svg{ width:13px; height:13px; color:var(--brand); }

/* dugme „u korpu" na kartici */
.card__cart{
  width:38px; height:38px; flex-shrink:0; border-radius:var(--r); display:grid; place-items:center;
  background:var(--brand); color:#fff; transition:.16s var(--ease);
}
.card__cart:hover{ background:var(--brand-600); transform:translateY(-2px); }
.card__cart.is-in{ background:var(--ok); }
.card__cart svg{ width:18px; height:18px; }

/* ── 22. Modal proizvoda ─────────────────────────────────── */
.modal{
  position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center;
  padding:var(--sp-4); background:rgba(15,28,38,.62); backdrop-filter:blur(4px);
}
.modal.is-open{ display:flex; animation:fade .2s var(--ease); }
@keyframes fade{ from{opacity:0} to{opacity:1} }
.modal__box{
  background:#fff; border-radius:var(--r-xl); max-width:900px; width:100%; max-height:90vh; overflow-y:auto;
  box-shadow:var(--sh-4); position:relative; animation:pop .25s var(--ease);
}
@keyframes pop{ from{opacity:0; transform:translateY(16px) scale(.98)} to{opacity:1; transform:none} }
.modal__x{
  position:absolute; top:var(--sp-4); right:var(--sp-4); z-index:3; width:38px; height:38px; border-radius:50%;
  background:#fff; border:1px solid var(--line); display:grid; place-items:center; color:var(--ink-3);
  transition:.16s var(--ease);
}
.modal__x:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.modal__x svg{ width:17px; height:17px; }
.modal__grid{ display:grid; grid-template-columns:1fr 1fr; }
.modal__media{ background:var(--bg-soft); padding:var(--sp-7); display:grid; place-items:center; }
.modal__media img{ max-height:340px; object-fit:contain; }
.modal__body{ padding:var(--sp-7) var(--sp-6); }
.modal__body .card__brand{ font-size:var(--t-sm); }
.modal__body h3{ font-size:var(--t-xl); margin-bottom:var(--sp-3); }
.modal__body > p{ color:var(--ink-3); line-height:1.65; margin-bottom:var(--sp-5); }
.modal__specs{ display:flex; flex-direction:column; gap:var(--sp-2); margin-bottom:var(--sp-5); }
.modal__specs div{ display:flex; justify-content:space-between; padding:.55rem 0; border-bottom:1px solid var(--line); font-size:var(--t-base); }
.modal__specs span{ color:var(--ink-3); }
.modal__specs b{ font-family:var(--f-head); font-weight:700; }
.modal__price{ display:flex; align-items:baseline; gap:var(--sp-3); margin-bottom:var(--sp-5); }
.modal__price .price{ font-size:var(--t-3xl); }

/* ── 23. Traka brendova ──────────────────────────────────── */
.brands{ padding-block:var(--sp-6); border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.brands__t{ text-align:center; font-size:var(--t-sm); color:var(--ink-4); font-family:var(--f-head); font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:var(--sp-5); }
.brands__row{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:var(--sp-3) var(--sp-5); }
.brands__row a,.brands__row span{
  font-family:var(--f-head); font-size:var(--t-lg); font-weight:800; color:var(--ink-4);
  letter-spacing:-.02em; transition:.2s var(--ease); white-space:nowrap; cursor:pointer;
  padding:.3rem .7rem; border-radius:var(--r); border:1.5px solid transparent;
}
.brands__row a:hover{ color:var(--brand); border-color:var(--brand-100); background:var(--brand-50); }
.brands__row .is-off{ cursor:default; opacity:.7; }
.brands__row .is-on{ color:var(--brand); border-color:var(--brand-300); background:var(--brand-50); }
.brands__note{ text-align:center; font-size:var(--t-xs); color:var(--ink-4); margin-top:var(--sp-4); }

/* ── 24. Pomoćne klase ───────────────────────────────────── */
.mt-6{ margin-top:var(--sp-6); }
.center{ text-align:center; }
.sr{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.more-wrap{ display:flex; justify-content:center; margin-top:var(--sp-6); }
.nav-backdrop{ display:none; }

/* ── 25. Responsive ──────────────────────────────────────── */
@media (max-width:1500px){
  .navbar__note{ display:none; }
}

@media (max-width:1240px){
  .mega{ min-width:560px; }
}

@media (max-width:1100px){
  .sld__in{ grid-template-columns:1.1fr .9fr; gap:var(--sp-5); min-height:400px; }
  .sld__img img{ max-width:320px; }
  .calc__wrap{ grid-template-columns:1fr; gap:var(--sp-6); }
  .grid{ grid-template-columns:repeat(3,1fr); }
  .shop{ grid-template-columns:230px 1fr; gap:var(--sp-4); }
  .calc{ max-width:none; }
  .promo{ grid-template-columns:1fr; }
  .contact{ grid-template-columns:1fr; gap:var(--sp-7); }
  .usp__grid{ grid-template-columns:repeat(2,1fr); }
  .ftr__grid{ grid-template-columns:1fr 1fr; gap:var(--sp-6); }
  .svc{ grid-template-columns:repeat(2,1fr); }
  .revs{ grid-template-columns:1fr; }
  .modal__grid{ grid-template-columns:1fr; }
  .modal__media{ padding:var(--sp-5); }
  .modal__media img{ max-height:230px; }
  .hdr__quote{ display:none; }
  .srch{ max-width:none; }
}

@media (max-width:980px){
  .hdr__in{ min-height:68px; gap:var(--sp-3); }
  .brand img{ height:38px; }
  html{ scroll-padding-top:80px; }
  .burger{ display:flex; }
  .hdr__tel{ display:none; }
  .navbar{ border-top:0; }

  /* traka kategorija → klizni izbornik */
  .navbar__in{ display:block; }
  .nav{
    position:fixed; inset:68px 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
    background:#fff; border-bottom:1px solid var(--line); box-shadow:var(--sh-3);
    padding:var(--sp-2) var(--sp-5) var(--sp-5); margin:0;
    transform:translateY(-14px); opacity:0; pointer-events:none; transition:.24s var(--ease);
    max-height:calc(100vh - 68px); overflow-y:auto; z-index:70;
  }
  .nav.is-open{ transform:none; opacity:1; pointer-events:auto; }
  .nav__a{ padding:.85rem .5rem; font-size:var(--t-md); border-bottom:1px solid var(--line); border-radius:0; }
  .nav__a.is-active::after{ display:none; }
  .nav__a--all{ background:none; color:var(--ink); margin:0; padding-inline:.5rem; border-radius:0; }
  .nav__a--all:hover{ background:none; color:var(--brand); }
  .nav__burg{ display:none; }
  .nav__drop{ border-bottom:1px solid var(--line); }
  .nav__drop .nav__a{ border-bottom:0; width:100%; justify-content:space-between; }
  .mega{
    position:static; min-width:0; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:0; border-radius:0; padding:0 0 var(--sp-3);
    display:none; grid-template-columns:1fr;
  }
  .nav__drop.is-open .mega{ display:grid; }
  .mega--brend{ min-width:0; grid-template-columns:repeat(2,1fr); }
  .mega--kat{ min-width:0; grid-template-columns:1fr; padding:0 0 var(--sp-3); gap:var(--sp-3); }
  .mega__col--info{ border-left:0; padding-left:0; border-top:1px solid var(--line); padding-top:var(--sp-3); }
  .mega__fakt{ flex-direction:row; flex-wrap:wrap; gap:var(--sp-4); }
  .krumb .wrap{ padding-block:.55rem; }
  .shop__pomoc{ padding:var(--sp-5) var(--sp-4); }
  .sec-head--red{ flex-direction:column; align-items:flex-start; gap:var(--sp-4); }
  .mega__it{ padding:.6rem .5rem; }
  .topbar__msg{ display:none; }
  .topbar__in{ justify-content:center; }
  .topbar__links{ gap:var(--sp-4); font-size:var(--t-xs); }
  .why{ grid-template-columns:1fr; gap:var(--sp-5); }

  /* filtri → panel s ruba */
  .shop{ grid-template-columns:1fr; }
  .shop__fbtn{ display:inline-flex; }
  .fltr{
    position:fixed; inset-block:0; left:0; z-index:96; width:min(320px,88vw); max-height:none;
    border-radius:0; border:0; box-shadow:var(--sh-4);
    transform:translateX(-100%); transition:transform .26s var(--ease); overflow-y:auto;
  }
  .fltr.is-open{ transform:none; }
  .fltr__x{ display:grid; }
  .fltr__veil{ display:block; position:fixed; inset:0; z-index:95; background:rgba(15,28,38,.5); }
  .fltr__body--scroll{ max-height:none; }
}

@media (max-width:860px){
  .sld__in{ grid-template-columns:1fr; padding-block:var(--sp-7) var(--sp-8); min-height:0; text-align:left; }
  .sld__img{ display:none; }
  .sldr__nav{ display:none; }
  .sldr__dots{ bottom:var(--sp-4); left:var(--sp-5); transform:none; }
  .sld h1{ font-size:clamp(1.9rem,7vw,2.5rem); }
}

@media (max-width:720px){
  :root{ --sp-9:3.5rem; --sp-10:4rem; }
  .wrap{ padding-inline:var(--sp-4); }
  .grid{ grid-template-columns:repeat(2,1fr); gap:var(--sp-3); }
  .svc{ grid-template-columns:1fr; }
  .usp__grid{ grid-template-columns:1fr; }
  .ftr__grid{ grid-template-columns:1fr; gap:var(--sp-6); }
  .fgrid{ grid-template-columns:1fr; }
  .promo{ padding:var(--sp-6) var(--sp-5); }
  .hero__trust{ gap:var(--sp-4) var(--sp-5); }
  .hero__trust b{ font-size:var(--t-xl); }
  .hero__trust div{ min-width:calc(50% - var(--sp-5)); }
  .card__body{ padding:0 var(--sp-3) var(--sp-3); }
  .card__media{ padding:var(--sp-3); }
  .card__name{ font-size:var(--t-sm); min-height:2.6em; }
  .price{ font-size:var(--t-md); }
  .card__acts{ flex-direction:column; gap:6px; margin-top:var(--sp-3); }
  .card__acts .btn{ padding:.5rem .8rem; font-size:var(--t-xs); }
  .card__cart{ width:100%; height:34px; }
  .flag{ font-size:9px; padding:.22rem .45rem; }
  .form{ padding:var(--sp-5) var(--sp-4); }
  .sec-head{ margin-bottom:var(--sp-6); }
  .ftr__bot{ flex-direction:column; align-items:flex-start; gap:var(--sp-3); }
  .prow{ padding:.75rem var(--sp-4); font-size:var(--t-sm); }
  .pricelist__h{ padding:var(--sp-3) var(--sp-4); }
  .modal__body{ padding:var(--sp-5) var(--sp-4); }
  .modal__box{ max-height:94vh; }
  .shop__bar{ flex-wrap:wrap; }
  .shop__bar .sel{ width:100%; margin-left:0; order:3; }
  .drw__box{ max-width:none; }
  .ci__img{ width:60px; height:60px; }
}

@media (max-width:620px){
  /* pretraga u svoj red */
  .hdr__in{ flex-wrap:wrap; padding-bottom:var(--sp-3); min-height:0; padding-top:var(--sp-3); }
  .brand{ order:1; }
  .hdr__cta{ order:2; }
  .srch{ order:3; flex-basis:100%; }
  .srch__in{ height:42px; font-size:var(--t-sm); }
  .nav{ inset-block-start:auto; position:fixed; top:118px; }
}

@media (max-width:420px){
  .grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:1.95rem; }
  .brands__row{ gap:var(--sp-2) var(--sp-3); }
  .brands__row a,.brands__row span{ font-size:var(--t-base); padding:.25rem .5rem; }
  .brand img{ height:34px; }
  .iconbtn{ width:42px; height:42px; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .pahulje{ display:none; }
}

@media print{
  .hdr,.topbar,.fltr,.shop__bar,.form,.modal,.drw{ display:none !important; }
  .hero{ background:#fff; color:var(--ink); }
}

/* ── 26. EU energetska oznaka ────────────────────────────── */
.enlabel{
  display:inline-flex; align-items:center; height:20px; padding:0 .45rem 0 .5rem;
  font-family:var(--f-head); font-size:11px; font-weight:800; letter-spacing:.02em; color:#fff;
  clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  padding-right:1rem; white-space:nowrap;
}
.enlabel--a3{ background:#0F9D58; }   /* A+++ */
.enlabel--a2{ background:#3FA34D; }   /* A++  */
.enlabel--a1{ background:#8CB93B; }   /* A+   */
.enlabel--a0{ background:#D9B310; }   /* A    */
.card__en{ display:flex; align-items:center; gap:5px; margin-bottom:var(--sp-3); }
.card__en small{ font-size:var(--t-xs); color:var(--ink-4); }

/* ── 27. Cjenovni blok kartice ───────────────────────────── */
.card__pricebox{
  margin-top:auto; padding:var(--sp-3); border-radius:var(--r);
  background:var(--bg-soft); border:1px solid var(--line);
}
.card--sale .card__pricebox{ background:#FEF2F4; border-color:#F8D3DA; }
.card__pricerow{ display:flex; align-items:baseline; gap:var(--sp-2); flex-wrap:wrap; }
.card__save-eur{
  display:inline-block; margin-top:4px; font-family:var(--f-head); font-size:var(--t-xs);
  font-weight:800; color:#fff; background:var(--sale); padding:.16rem .45rem; border-radius:var(--r-sm);
}
.card__rate-mj{ display:block; margin-top:5px; font-size:var(--t-xs); color:var(--ink-3); }
.card__rate-mj b{ font-family:var(--f-head); font-weight:800; color:var(--ink-2); }
.card__note{ margin-top:5px; }

/* ── 28. Sitno ───────────────────────────────────────────── */
.cinfo{ min-width:0; }
@media (max-width:560px){ .hide-sm{ display:none; } }

/* ── 29. Brojevi i cijena ugradnje ───────────────────────── */
.price, .price__old, .card__rate-mj, .prow b, .svc__price b, .card__save-eur, .hero__trust b{
  font-variant-numeric:tabular-nums;
}
.card__install{
  display:flex; align-items:center; gap:5px; margin-top:6px;
  font-size:var(--t-xs); color:var(--ink-3);
}
.card__install b{ font-family:var(--f-head); font-weight:700; color:var(--ink-2); font-variant-numeric:tabular-nums; }
.card__install svg{ width:13px; height:13px; color:var(--brand); flex-shrink:0; }

/* ── Modal: dugmad ───────────────────────────────────────── */
.modal__acts{ display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-3); }
.modal__acts .btn{ justify-content:center; }
.modal__acts svg{ width:16px; height:16px; }
@media (max-width:480px){ .modal__acts{ grid-template-columns:1fr; } }
