/*
Theme Name: TGM Transporti
Theme URI:
Author: TGM-Transporti
Description: Custom tema za TGM-Transporti Otočac
Version: 1.0.0
License: Proprietary
Text Domain: tgm-tema
*/

/* ─── ROBOTO — self-hosted ───────────────────────────── */
@font-face{
  font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;
  src:url('assets/fonts/roboto-latin-300-normal.woff2') format('woff2'),
      url('assets/fonts/roboto-latin-300-normal.woff') format('woff');
}
@font-face{
  font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;
  src:url('assets/fonts/roboto-latin-400-normal.woff2') format('woff2'),
      url('assets/fonts/roboto-latin-400-normal.woff') format('woff');
}
@font-face{
  font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;
  src:url('assets/fonts/roboto-latin-700-normal.woff2') format('woff2'),
      url('assets/fonts/roboto-latin-700-normal.woff') format('woff');
}
@font-face{
  font-family:'Roboto';font-style:italic;font-weight:400;font-display:swap;
  src:url('assets/fonts/roboto-latin-400-italic.woff2') format('woff2'),
      url('assets/fonts/roboto-latin-400-italic.woff') format('woff');
}
@font-face{
  font-family:'Roboto';font-style:italic;font-weight:700;font-display:swap;
  src:url('assets/fonts/roboto-latin-700-italic.woff2') format('woff2'),
      url('assets/fonts/roboto-latin-700-italic.woff') format('woff');
}

/* ─── RESET ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

/* ─── CSS VARIJABLE ──────────────────────────────────── */
:root{
  --red:#EE0000;
  --red-dark:#A01010;
  --red-light:#F9ECEC;
  --red-mid:#E03030;
  --blue:#1A4FA0;
  --blue-light:#EBF0FA;
  --blue-mid:#2563C8;
  --white:#FFFFFF;
  --off-white:#F7F6F4;
  --light-gray:#EEEDE9;
  --mid-gray:#C8C5BE;
  --dark-gray:#5A574F;
  --text:#1A1917;
  --text-muted:#6B6860;
  --radius:3px;
  --radius-lg:6px;
  --nav-h:66px;
}

/* ─── BASE ───────────────────────────────────────────── */
body{
  font-family:'Roboto',sans-serif;
  color:var(--text);
  background:var(--white);
  font-size:16px;
  line-height:1.65;
}
img{display:block;max-width:100%}
a{color:inherit}
h1,h2,h3,h4,h5,h6{font-weight:700}
.hero-title{font-style:italic}

.hero-tag{
  display:block;width:fit-content;
  font-style:normal;font-size:.5em;font-weight:700;
  color:#FFFFFF;background:#FF0000;
  padding:.2em .4em .1em;white-space:nowrap;line-height:1.2;
  transform:rotate(-2.5deg);transform-origin:left center;margin-top:.5em;
}

.section-title em{font-style:normal;color:var(--red)}

/* ─── NAV ────────────────────────────────────────────── */
nav{
  position:sticky;top:0;z-index:200;
  background:var(--white);
  border-bottom:3px solid var(--red);
  height:var(--nav-h);
  display:flex;align-items:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner{
  max-width:1240px;margin:0 auto;padding:0 2rem;
  width:100%;display:flex;align-items:center;gap:1rem;
}
.nav-logo-img{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.nav-logo-svg{height:auto;width:100%;max-width:200px;display:block}

.nav-links{display:flex;gap:0.25rem;list-style:none;flex:1}
.nav-links li a,
.nav-links a{
  font-family:'Roboto',sans-serif;
  font-size:0.88rem;font-weight:500;
  letter-spacing:1.5px;text-transform:uppercase;
  color:var(--text-muted);text-decoration:none;
  padding:0.45rem 0.85rem;border-radius:var(--radius);
  transition:color 0.15s,background 0.15s;white-space:nowrap;
  display:block;
}
.nav-links li a:hover,
.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-menu-ancestor > a,
.nav-links li.current_page_ancestor > a{
  color:var(--red);background:var(--red-light);
}

.nav-cta{
  font-family:'Roboto',sans-serif;
  font-size:0.85rem;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;
  background:var(--red);color:var(--white);
  padding:0.5rem 1.25rem;border-radius:var(--radius);
  text-decoration:none;white-space:nowrap;
  transition:background 0.15s;
}
.nav-cta:hover{background:var(--red-dark);color:var(--white)}

.hamburger{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;background:none;border:none;padding:4px;margin-left:auto;
}
.hamburger span{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:all .3s}

.mobile-nav{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;
  background:var(--white);border-bottom:3px solid var(--red);
  z-index:199;padding:1.5rem 2rem 2rem;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:block;font-family:'Roboto',sans-serif;
  font-size:1.1rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;
  color:var(--text);text-decoration:none;
  padding:.75rem 0;border-bottom:1px solid var(--light-gray);
  transition:color .15s;
}
.mobile-nav a:last-child{border-bottom:none}
.mobile-nav a:hover{color:var(--red)}

/* ─── LAYOUT SHARED ──────────────────────────────────── */
.container{max-width:1240px;margin:0 auto;padding:0 2rem}
section{padding:clamp(1.5rem,4vw,3rem) 0}

.eyebrow{
  font-family:'Roboto',sans-serif;
  font-size:0.72rem;font-weight:600;
  letter-spacing:3px;text-transform:uppercase;
  color:var(--red);margin-bottom:0.6rem;
  display:flex;align-items:center;gap:0.6rem;
}
.eyebrow::before{
  content:'';display:block;
  width:28px;height:2px;background:var(--red);flex-shrink:0;
}
.section-title{
  font-family:'Roboto',sans-serif;
  font-size:clamp(1.9rem,3.2vw,2.7rem);
  font-weight:800;color:var(--text);
  text-transform:uppercase;letter-spacing:0.5px;
  line-height:1.45;margin-bottom:1rem;
}
.section-lead{font-size:0.97rem;color:var(--text-muted);max-width:580px;line-height:1.75}
.section-header{margin-bottom:3.5rem}

/* ─── GUMBI ──────────────────────────────────────────── */
.btn-red{
  display:inline-block;
  font-family:'Roboto',sans-serif;font-size:0.9rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;
  background:var(--red);color:var(--white);
  padding:0.8rem 2rem;border-radius:var(--radius);
  border:2px solid var(--red);cursor:pointer;transition:background 0.15s;
}
.btn-red:hover{background:var(--red-dark);border-color:var(--red-dark);color:var(--white)}
.btn-outline{
  display:inline-block;
  font-family:'Roboto',sans-serif;font-size:0.9rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;
  background:transparent;color:var(--text);
  padding:0.8rem 2rem;border-radius:var(--radius);
  border:2px solid var(--mid-gray);cursor:pointer;transition:all 0.15s;
}
.btn-outline:hover{border-color:var(--red);color:var(--red)}
.btn-blue{
  display:inline-block;
  font-family:'Roboto',sans-serif;font-size:0.9rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;
  background:var(--blue);color:var(--white);
  padding:0.8rem 2rem;border-radius:var(--radius);
  border:2px solid var(--blue);cursor:pointer;transition:background 0.15s;
}
.btn-blue:hover{background:#133D80;border-color:#133D80;color:var(--white)}
.btn-white{
  display:inline-block;font-family:'Roboto',sans-serif;font-size:.9rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;
  background:var(--white);color:var(--red);
  padding:.85rem 2rem;border-radius:var(--radius);
  border:2px solid var(--white);white-space:nowrap;
  transition:background .15s,color .15s;cursor:pointer;
}
.btn-white:hover{background:var(--red-light);color:var(--red)}

/* ─── PAGE HERO (unutarnje stranice) ─────────────────── */
.page-hero{background:var(--text);padding:3.5rem 0;border-bottom:4px solid var(--red)}
.page-hero-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem}
.page-hero h1{
  font-family:'Roboto',sans-serif;font-size:clamp(2rem,4vw,3.2rem);
  font-weight:700;color:var(--white);text-transform:uppercase;letter-spacing:.5px;line-height:1.05;
}
.page-hero p{color:rgba(255,255,255,.55);font-size:.95rem;margin-top:.5rem;max-width:500px}
.breadcrumb{
  font-size:.8rem;color:rgba(255,255,255,.4);
  display:flex;align-items:center;gap:.5rem;white-space:nowrap;
}
.breadcrumb a{color:rgba(255,255,255,.4);text-decoration:none;transition:color .15s}
.breadcrumb a:hover{color:rgba(255,255,255,.75)}
.breadcrumb span{color:rgba(255,255,255,.25)}

/* ─── HOMEPAGE: HERO ─────────────────────────────────── */
#hero{
  background:var(--text);
  min-height:calc(100vh - var(--nav-h));
  position:relative;overflow:hidden;
  display:flex;align-items:center;
  padding:0;
}
.hero-pattern{
  position:absolute;inset:0;z-index:1;
  background-image:
    repeating-linear-gradient(90deg,rgba(255,255,255,.018) 0,rgba(255,255,255,.018) 1px,transparent 1px,transparent 56px),
    repeating-linear-gradient(0deg,rgba(255,255,255,.018) 0,rgba(255,255,255,.018) 1px,transparent 1px,transparent 56px);
  pointer-events:none;
}
.hero-stripe{position:absolute;left:0;top:0;bottom:0;width:0;background:var(--red);z-index:1}

/* Slider — puna pozadina cijelog hero-a */
.hero-slider{
  position:absolute;inset:0;
  z-index:0;
}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;transition:opacity 1.2s ease-in-out;
}
.hero-slide.active{opacity:1}

/* Fallback gradijenti (background-image, ne shorthand) */
.hero-slide:nth-child(1){background-image:linear-gradient(135deg,#2c2c2c 0%,#4a4540 40%,#6b5e50 100%)}
.hero-slide:nth-child(2){background-image:linear-gradient(135deg,#1a1917 0%,#3d2f25 40%,#6b3a28 100%)}
.hero-slide:nth-child(3){background-image:linear-gradient(135deg,#1c2332 0%,#2a3a5c 40%,#1a4fa0 100%)}
.hero-slide:nth-child(4){background-image:linear-gradient(135deg,#252018 0%,#4a3d28 40%,#6b5a30 100%)}
.hero-slide:nth-child(5){background-image:linear-gradient(135deg,#1a2020 0%,#283830 40%,#3a5040 100%)}

/* Gradient overlay — cijela širina, čitljivost teksta lijevo */
.hero-slide::after{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(to right,
    rgba(26,25,23,0.88) 0%,
    rgba(26,25,23,0.60) 40%,
    rgba(26,25,23,0.20) 70%,
    transparent 100%
  );
}

/* Content — sjedi na vrhu slidera */
.hero-content{
  position:relative;z-index:2;
  width:100%;padding:2rem 0 4rem 0;
}
.hero-inner{max-width:600px}

.hero-eyebrow{
  font-family:'Roboto',sans-serif;
  font-size:0.72rem;font-weight:600;
  letter-spacing:3px;text-transform:uppercase;
  color:var(--red);margin-bottom:1.25rem;
  display:flex;align-items:center;gap:0.6rem;
}
.hero-eyebrow::before{content:'';display:block;width:28px;height:2px;background:var(--red)}
.hero-title{
  font-family:'Roboto',sans-serif;
  font-size:clamp(3rem,5.5vw,5rem);
  font-weight:700;color:var(--white);
  line-height:1.1;text-transform:uppercase;letter-spacing:1px;margin-bottom:1.5rem;
}
.hero-desc{font-size:1rem;color:rgba(255,255,255,.72);max-width:460px;margin-bottom:2.5rem;line-height:1.75}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{display:flex;gap:3rem;margin-top:1.5rem;padding-top:1rem}
.hs-num{font-family:'Roboto',sans-serif;font-size:2.1rem;font-weight:700;color:var(--red);line-height:1}
.hs-label{font-size:0.75rem;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:1px;margin-top:4px}

/* Slider dots */
.hero-slider-dots{
  position:absolute;bottom:1.75rem;right:2rem;
  display:flex;gap:.55rem;z-index:10;
}
.slider-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,.35);border:none;cursor:pointer;padding:0;
  transition:background .3s,transform .3s;
}
.slider-dot.active{background:var(--red);transform:scale(1.3)}

/* Homepage: Category Strip */
#cat-strip{background:var(--red);padding:0}
.cat-strip-inner{
  max-width:1240px;margin:0 auto;padding:0 2rem;
  display:flex;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;
}
.cat-strip-inner::-webkit-scrollbar{display:none}
.cat-pill{
  font-family:'Roboto',sans-serif;font-size:0.82rem;font-weight:500;
  letter-spacing:1.5px;text-transform:uppercase;
  color:rgba(255,255,255,.75);white-space:nowrap;
  padding:0.85rem 1.25rem;text-decoration:none;
  border-right:1px solid rgba(255,255,255,.15);
  transition:color .15s,background .15s;cursor:pointer;
  background:none;border-top:none;border-left:none;border-bottom:none;
}
.cat-pill:first-child{border-left:1px solid rgba(255,255,255,.15)}
.cat-pill:hover{color:var(--white);background:rgba(255,255,255,.12)}

/* Homepage: USPs */
#usps{background:var(--off-white);padding:4rem 0}
.usps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.usp{
  background:var(--white);border-radius:var(--radius-lg);
  padding:1.75rem 1.5rem;border:1px solid var(--light-gray);
  position:relative;overflow:hidden;transition:border-color .2s,transform .2s;
}
.usp:hover{border-color:var(--red);transform:translateY(-3px)}
.usp::after{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--red);transform:scaleX(0);transform-origin:left;transition:transform .25s;
}
.usp:hover::after{transform:scaleX(1)}
.usp-icon{
  width:46px;height:46px;background:var(--red-light);
  border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;
}
.usp-icon svg{width:22px;height:22px;stroke:var(--red);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.usp-title{font-family:'Roboto',sans-serif;font-size:1.05rem;font-weight:600;color:var(--text);text-transform:uppercase;letter-spacing:.5px;margin-bottom:.45rem}
.usp-text{font-size:.85rem;color:var(--text-muted);line-height:1.6}

/* Homepage: About Teaser */
#about-teaser{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-img{position:relative}
.about-img img{width:100%;height:460px;object-fit:cover;border-radius:var(--radius-lg)}
.about-badge{
  position:absolute;bottom:-1.5rem;right:-1.5rem;
  background:var(--red);color:var(--white);
  padding:1.2rem 1.5rem;border-radius:var(--radius-lg);text-align:center;
}
.about-badge-num{font-family:'Roboto',sans-serif;font-size:2.2rem;font-weight:700;line-height:1}
.about-badge-label{font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-top:3px;opacity:.85}
.about-body{font-size:.97rem;color:var(--text-muted);line-height:1.75;margin-bottom:1.2rem}
.about-checks{list-style:none;margin:1.5rem 0 2rem;display:flex;flex-direction:column;gap:.7rem}
.about-checks li{display:flex;align-items:center;gap:.7rem;font-size:.93rem;font-weight:500;color:var(--text)}
.check-dot{width:20px;height:20px;background:var(--red-light);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.check-dot svg{width:11px;height:11px;stroke:var(--red);stroke-width:2.5;fill:none}

/* Homepage: Assortment Teaser */
#assortment-teaser{background:var(--off-white)}
.assort-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.assort-card{
  background:var(--white);border-radius:var(--radius-lg);
  border:1px solid var(--light-gray);padding:0;overflow:hidden;
  display:flex;flex-direction:column;
  transition:border-color .2s,transform .2s;cursor:pointer;text-decoration:none;color:inherit;
}
.assort-card:hover{border-color:var(--red);transform:translateY(-3px)}
/* Gornja polovica — fotografija do ruba kartice */
.assort-img{
  width:100%;height:220px;flex-shrink:0;
  background-color:var(--light-gray);
  background-size:cover;background-position:center;background-repeat:no-repeat;
}
.assort-img-placeholder{
  width:100%;height:220px;flex-shrink:0;
  background:linear-gradient(135deg,#2c2825 0%,#4a3d2e 50%,#6b5a40 100%);
  display:flex;align-items:center;justify-content:center;
}
.assort-img-placeholder svg{width:44px;height:44px;opacity:.18;stroke:#fff;fill:none;stroke-width:1.2}
/* Donja polovica — sadržaj (bivši padding kartice) */
.assort-body{
  flex:1;padding:1.75rem 1.5rem;
  display:flex;flex-direction:column;gap:.5rem;
}
.assort-icon{
  width:44px;height:44px;background:var(--red-light);
  border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:.5rem;
}
.assort-icon svg{width:22px;height:22px;stroke:var(--red);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.assort-name{font-family:'Roboto',sans-serif;font-size:1rem;font-weight:600;color:var(--text);text-transform:uppercase;letter-spacing:.5px}
.assort-desc{font-size:.82rem;color:var(--text-muted);line-height:1.55}
.assort-link{
  font-family:'Roboto',sans-serif;font-size:.78rem;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;
  color:var(--red);margin-top:.5rem;display:flex;align-items:center;gap:.35rem;
}
.assort-link svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* Homepage: News Teaser */
#news-teaser{background:var(--white)}
.news-list{display:flex;flex-direction:column;gap:0}
.news-item{
  display:grid;grid-template-columns:120px 1fr auto;
  align-items:center;gap:2rem;
  padding:1.5rem 0;border-bottom:1px solid var(--light-gray);
  transition:background .15s;text-decoration:none;color:inherit;
}
.news-item:last-child{border-bottom:none}
.news-date-block{font-family:'Roboto',sans-serif;text-align:center}
.news-day{font-size:2.2rem;font-weight:700;color:var(--red);line-height:1}
.news-month{font-size:.72rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--text-muted)}
.news-tag{
  display:inline-block;
  font-size:.7rem;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
  background:var(--red-light);color:var(--red);padding:2px 8px;border-radius:2px;margin-bottom:.4rem;
}
.news-item-title{font-family:'Roboto',sans-serif;font-size:1.1rem;font-weight:600;color:var(--text);text-transform:uppercase;letter-spacing:.3px;margin-bottom:.3rem}
.news-excerpt{font-size:.85rem;color:var(--text-muted);line-height:1.55}
.news-arrow{
  width:36px;height:36px;border:1.5px solid var(--mid-gray);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  transition:border-color .15s,background .15s;
}
.news-item:hover .news-arrow{border-color:var(--red);background:var(--red-light)}
.news-arrow svg{width:14px;height:14px;stroke:var(--text-muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.news-item:hover .news-arrow svg{stroke:var(--red)}

/* CTA Band */
#cta-band{background:var(--red);padding:3.5rem 0}
.cta-band-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.cta-band-text h2{
  font-family:'Roboto',sans-serif;font-size:clamp(1.6rem,2.5vw,2.2rem);
  font-weight:700;color:var(--white);text-transform:uppercase;letter-spacing:.5px;margin-bottom:.35rem;
}
.cta-band-text p{color:rgba(255,255,255,.7);font-size:.95rem}

/* ─── BRAND TICKER ───────────────────────────────────── */
#brand-ticker{
  background:var(--off-white);
  border-top:1px solid var(--light-gray);
  border-bottom:1px solid var(--light-gray);
  padding:1.5rem 0;overflow:hidden;
}
.ticker-wrap{position:relative;overflow:hidden}
.ticker-wrap::before,
.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;
}
.ticker-wrap::before{left:0;background:linear-gradient(to right,var(--off-white),transparent)}
.ticker-wrap::after{right:0;background:linear-gradient(to left,var(--off-white),transparent)}
.ticker-inner{
  display:flex;align-items:center;gap:3.5rem;
  animation:ticker-scroll 30s linear infinite;
  width:max-content;
}
/* Hover pause premješten u JS (touch detekcija u main.js) */
/* Na touch uređajima :hover ostaje "zalijepljen" — pause samo na miš */
@keyframes ticker-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.ticker-logo{display:flex;align-items:center;justify-content:center;flex-shrink:0;height:52px;padding:0 .5rem}
.ticker-logo img{
  height:38px;width:auto;max-width:130px;object-fit:contain;
  filter:grayscale(100%) opacity(0.42);
  transition:filter .4s ease;
}
.ticker-logo:hover img{filter:none}
.ticker-brand-text{
  font-family:'Roboto',sans-serif;font-size:1rem;font-weight:600;
  letter-spacing:2px;text-transform:uppercase;
  color:var(--mid-gray);transition:color .3s;cursor:default;white-space:nowrap;
}
.ticker-logo:hover .ticker-brand-text{color:var(--text)}

/* ─── ASORTIMAN stranica ─────────────────────────────── */
.assort-page-section{padding:4.5rem 0;background:var(--off-white)}
.assort-categories{display:flex;flex-direction:column;gap:3.5rem}
.assort-cat-block{}
.assort-cat-header{
  display:flex;align-items:center;gap:1rem;
  margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid var(--red);
}
.assort-cat-num{font-family:'Roboto',sans-serif;font-size:1.6rem;font-weight:700;color:var(--red);line-height:1;min-width:2.5rem}
.assort-cat-title{font-family:'Roboto',sans-serif;font-size:1.4rem;font-weight:700;color:var(--text);text-transform:uppercase;letter-spacing:.5px}
.assort-cat-icon{width:44px;height:44px;background:var(--red-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-left:auto}
.assort-cat-icon svg{width:22px;height:22px;stroke:var(--red);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.subcats-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:1rem}
.subcat{
  background:var(--white);border:1px solid var(--light-gray);
  border-radius:var(--radius-lg);padding:1.1rem 1.25rem;
  transition:border-color .2s,box-shadow .2s;
  text-decoration:none;color:inherit;display:block;
}
.subcat:hover{border-color:var(--red);box-shadow:0 2px 12px rgba(204,22,22,.08)}
.subcat-name{font-family:'Roboto',sans-serif;font-size:.93rem;font-weight:600;color:var(--text);text-transform:uppercase;letter-spacing:.4px;margin-bottom:.25rem}
.subcat-hint{font-size:.78rem;color:var(--text-muted)}
.subcat-badge{
  display:inline-block;margin-top:.5rem;
  font-size:.68rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;
  background:var(--blue-light);color:var(--blue);padding:2px 7px;border-radius:2px;
}

/* ─── O NAMA stranica ────────────────────────────────── */
.about-page-body{padding:5rem 0;background:var(--white)}
.about-page-grid{display:grid;grid-template-columns:3fr 2fr;gap:5rem;align-items:start}
.about-page-text .section-title{margin-bottom:1.5rem}
.about-page-text p{font-size:.97rem;color:var(--text-muted);line-height:1.8;margin-bottom:1.2rem}
.about-sidebar{}
.sidebar-card{background:var(--off-white);border-radius:var(--radius-lg);padding:2rem;border:1px solid var(--light-gray);margin-bottom:1.5rem}
.sidebar-card-title{
  font-family:'Roboto',sans-serif;font-size:1rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.5px;color:var(--text);margin-bottom:1rem;
  padding-bottom:.75rem;border-bottom:2px solid var(--red);
}
.contact-row{display:flex;align-items:flex-start;gap:.75rem;padding:.6rem 0;border-bottom:1px solid var(--light-gray);font-size:.88rem}
.contact-row:last-child{border-bottom:none}
.contact-row-label{color:var(--text-muted);min-width:80px;flex-shrink:0}
.contact-row-val{color:var(--text);font-weight:500}
.contact-row-val a{color:var(--blue);text-decoration:none}
.contact-row-val a:hover{text-decoration:underline}
.wh-row2{display:flex;justify-content:space-between;font-size:.85rem;padding:.45rem 0;border-bottom:1px solid var(--light-gray)}
.wh-row2:last-child{border-bottom:none}
.wh-day2{color:var(--text-muted)}
.wh-time2{font-weight:600;color:var(--text)}
.stats-2x2{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--light-gray);border-radius:var(--radius-lg);overflow:hidden;margin-top:2rem}
.stat-cell{background:var(--white);padding:1.5rem;text-align:center}
.stat-cell-num{font-family:'Roboto',sans-serif;font-size:2rem;font-weight:700;color:var(--red);line-height:1}
.stat-cell-label{font-size:.78rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-top:.3rem}
.about-values{padding:4rem 0;background:var(--off-white)}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.value-card{background:var(--white);border-radius:var(--radius-lg);padding:2rem 1.75rem;border:1px solid var(--light-gray)}
.value-card-num{font-family:'Roboto',sans-serif;font-size:2.5rem;font-weight:700;color:var(--red-light);line-height:1}
.value-card-title{font-family:'Roboto',sans-serif;font-size:1.1rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--text);margin:.5rem 0 .65rem}
.value-card-text{font-size:.85rem;color:var(--text-muted);line-height:1.65}

/* ─── NOVOSTI: arhiva i filteri ──────────────────────── */
.news-page-body{padding:4.5rem 0;background:var(--off-white)}
.news-filters{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:3rem}
.filter-btn{
  font-family:'Roboto',sans-serif;font-size:.78rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;
  padding:.45rem 1.1rem;border-radius:var(--radius);
  border:1.5px solid var(--mid-gray);background:var(--white);
  color:var(--text-muted);cursor:pointer;transition:all .15s;
  text-decoration:none;display:inline-block;
}
.filter-btn:hover,.filter-btn.active{background:var(--red);border-color:var(--red);color:var(--white)}
.news-page-list{display:flex;flex-direction:column;gap:1.25rem}
.news-page-item{
  background:var(--white);border-radius:var(--radius-lg);
  border:1px solid var(--light-gray);
  display:grid;grid-template-columns:160px 1fr;overflow:hidden;
  transition:border-color .2s,transform .2s;text-decoration:none;color:inherit;
}
.news-page-item:hover{border-color:var(--red);transform:translateX(4px)}
.news-page-img{background:var(--text);background-size:cover;background-position:center;min-height:140px}
.news-page-content{padding:1.75rem 2rem}
.news-page-meta{display:flex;align-items:center;gap:.75rem;margin-bottom:.5rem}
.news-page-tag{font-size:.7rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;background:var(--red-light);color:var(--red);padding:2px 8px;border-radius:2px}
.news-page-date{font-size:.78rem;color:var(--text-muted)}
.news-page-title{font-family:'Roboto',sans-serif;font-size:1.2rem;font-weight:700;color:var(--text);text-transform:uppercase;letter-spacing:.3px;margin-bottom:.5rem;line-height:1.2}
.news-page-excerpt{font-size:.88rem;color:var(--text-muted);line-height:1.6}
.news-page-read{
  display:inline-flex;align-items:center;gap:.4rem;margin-top:.75rem;
  font-family:'Roboto',sans-serif;font-size:.8rem;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;color:var(--blue);
}
.news-page-read svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* ─── SINGLE POST ────────────────────────────────────── */
.single-hero-img{width:100%;height:420px;object-fit:cover;display:block}
.single-hero-img-placeholder{width:100%;height:420px;background:var(--text)}
.single-body{padding:4rem 0;background:var(--white)}
.single-inner{max-width:820px;margin:0 auto;padding:0 2rem}
.single-meta{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.single-title{font-family:'Roboto',sans-serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:700;color:var(--text);text-transform:uppercase;letter-spacing:.3px;line-height:1.2;margin-bottom:2rem}
.single-content{font-size:1rem;color:var(--text-muted);line-height:1.8}
.single-content h2{font-size:1.5rem;font-weight:700;color:var(--text);text-transform:uppercase;margin:2rem 0 1rem}
.single-content h3{font-size:1.2rem;font-weight:700;color:var(--text);margin:1.5rem 0 .75rem}
.single-content p{margin-bottom:1.2rem}
.single-content ul,.single-content ol{margin:0 0 1.2rem 1.5rem}
.single-content li{margin-bottom:.4rem}
.single-content img{display:block;margin:1.5rem 0;max-width:100%;height:auto;border-radius:var(--radius-lg)}
.single-content img.img-landscape{width:600px}
.single-content img.img-portrait{width:400px}
.single-back{margin-top:3rem;padding-top:2rem;border-top:1px solid var(--light-gray)}
.single-back a{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Roboto',sans-serif;font-size:.85rem;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);text-decoration:none;
  transition:color .15s;
}
.single-back a:hover{color:var(--red)}
.single-back svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* ─── KONTAKT stranica ───────────────────────────────── */
.kontakt-body{padding:5rem 0;background:var(--off-white)}
.kontakt-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:3.5rem;align-items:start}
.kontakt-block{background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--light-gray);margin-bottom:1.25rem;overflow:hidden}
.kontakt-block-header{background:var(--red);padding:.8rem 1.25rem;font-family:'Roboto',sans-serif;font-size:.82rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--white)}
.kontakt-block-body{padding:1.25rem}
.ki-row{display:flex;align-items:flex-start;gap:.85rem;padding:.65rem 0;border-bottom:1px solid var(--light-gray);font-size:.92rem}
.ki-row:last-child{border-bottom:none}
.ki-icon{width:34px;height:34px;background:var(--red-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ki-icon svg{width:16px;height:16px;stroke:var(--red);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.ki-label{font-size:.74rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:1px}
.ki-val{font-weight:500;color:var(--text)}
.ki-val a{color:var(--blue);text-decoration:none}
.ki-val a:hover{text-decoration:underline}
.wh-table{width:100%}
.wh-table tr td{padding:.45rem 0;font-size:.88rem;border-bottom:1px solid var(--light-gray)}
.wh-table tr:last-child td{border-bottom:none}
.wh-table td:first-child{color:var(--text-muted)}
.wh-table td:last-child{text-align:right;font-weight:600;color:var(--text)}
.wh-table tr.closed td{color:var(--mid-gray)}
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--light-gray);height:480px}
.map-wrap iframe{width:100%;height:100%;border:none;display:block}

/* ─── TEKSTUALNA STRANICA ────────────────────────────── */
.tekst-body{padding:5rem 0;background:var(--white)}
.tekst-inner{max-width:820px;margin:0 auto;padding:0 2rem}
.entry-content{font-size:1rem;color:var(--text-muted);line-height:1.8}
.entry-content h2{
  font-family:'Roboto',sans-serif;font-size:1.5rem;font-weight:700;
  color:var(--text);text-transform:uppercase;letter-spacing:.3px;
  margin:2.5rem 0 1rem;padding-bottom:.5rem;border-bottom:2px solid var(--red);
}
.entry-content h3{font-family:'Roboto',sans-serif;font-size:1.15rem;font-weight:700;color:var(--text);margin:1.75rem 0 .75rem}
.entry-content p{margin-bottom:1.2rem}
.entry-content ul,.entry-content ol{margin:0 0 1.2rem 1.5rem}
.entry-content li{margin-bottom:.4rem}
.entry-content table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.9rem}
.entry-content table th,.entry-content table td{padding:.65rem 1rem;border:1px solid var(--light-gray);text-align:left}
.entry-content table th{background:var(--off-white);font-weight:600;color:var(--text)}
.entry-content a{color:var(--blue);text-decoration:underline}
.entry-content strong{color:var(--text);font-weight:700}

/* ─── FOOTER ─────────────────────────────────────────── */
footer{background:var(--text);color:rgba(255,255,255,.55);padding:4rem 0 2rem;border-top:3px solid var(--red)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo-img{display:block;margin-bottom:.85rem;text-decoration:none}
.footer-logo-svg{height:auto;width:100%;max-width:200px;display:block}
.footer-about{font-size:.84rem;line-height:1.7;max-width:280px;margin-bottom:1.5rem}
.footer-socials{display:flex;gap:.6rem}
.fsoc{
  width:34px;height:34px;border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;transition:border-color .15s,background .15s;
}
.fsoc:hover{border-color:var(--red);background:rgba(204,22,22,.15)}
.fsoc svg{width:15px;height:15px;fill:rgba(255,255,255,.55);transition:fill .15s}
.fsoc:hover svg{fill:var(--white)}
.footer-col-title{font-family:'Roboto',sans-serif;font-size:.78rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--white);margin-bottom:1.1rem}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.footer-links a,.footer-links li a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.86rem;transition:color .15s}
.footer-links a:hover,.footer-links li a:hover{color:var(--red)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;display:flex;align-items:center;justify-content:space-between;font-size:.78rem}
.footer-bottom a{color:rgba(255,255,255,.35);text-decoration:none;transition:color .15s;margin-left:1.5rem}
.footer-bottom a:hover{color:var(--red)}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .usps-grid{grid-template-columns:1fr 1fr}
  .assort-grid{grid-template-columns:1fr 1fr}
  .about-page-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  nav .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  /* Hero: slider ostaje full-width pozadina, content na vrhu */
  #hero{min-height:85vh;align-items:flex-start;padding-top:0}
  .hero-content{padding:3rem 0 2.5rem}
  .hero-eyebrow{display:none}
  .hero-slide::after{
    background:linear-gradient(to bottom,
      rgba(26,25,23,0.85) 0%,
      rgba(26,25,23,0.60) 60%,
      rgba(26,25,23,0.75) 100%
    );
  }
  .hero-slider-dots{right:1rem;bottom:1rem}
  .about-grid{grid-template-columns:1fr;gap:2.5rem}
  .about-badge{bottom:1rem;right:1rem}
  .assort-grid{grid-template-columns:1fr}
  .kontakt-grid{grid-template-columns:1fr}
  .news-page-item{grid-template-columns:1fr}
  .news-page-img{height:160px}
  .news-item{grid-template-columns:80px 1fr;gap:1rem}
  .news-arrow{display:none}
  .cta-band-inner{flex-direction:column;text-align:center}
  .footer-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .page-hero-inner{flex-direction:column;gap:1rem;align-items:flex-start}
  .hero-stats{flex-wrap:wrap;gap:1.5rem}
  .single-hero-img,.single-hero-img-placeholder{height:240px}
  .single-content img.img-landscape,.single-content img.img-portrait{width:100%}
}
@media(max-width:480px){
  .usps-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:.5rem;text-align:center}
  .footer-bottom a{margin-left:0}
}
