:root{
  --red:#e2001a;--ink:#1c1c1c;--ink-soft:#5d5d5d;--paper:#fff;
  --herobg:#e7e4e5;--mist:#e7e4e5;--mist-2:#f4f2f1;--line:#d4d2d3;--maxw:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{max-width:100vw;font-family:'Inter',system-ui,sans-serif;color:var(--ink);background:var(--paper);line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:'Inter',sans-serif;font-weight:400;line-height:1.15;letter-spacing:-.02em}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px}
@media (hover:hover) and (pointer:fine){body,a,button,.clickable{cursor:none}}

/* cursor */
.cursor{position:fixed;top:0;left:0;z-index:99999;pointer-events:none;display:none;opacity:0;transition:opacity .25s}
@media (hover:hover) and (pointer:fine){.cursor{display:block}}
.cursor__dot{position:fixed;width:6px;height:6px;border-radius:50%;background:var(--red);transform:translate(-50%,-50%);transition:width .25s,height .25s}
.cursor__ring{position:fixed;width:34px;height:34px;border:1.5px solid var(--red);border-radius:50%;transform:translate(-50%,-50%);transition:width .3s var(--ease),height .3s var(--ease),background .3s,opacity .3s}
.cursor__ring::after{content:"";position:absolute;inset:-8px;border:1px solid var(--red);border-radius:50%;opacity:0}
.cursor.is-hover .cursor__ring{width:58px;height:58px;background:rgba(226,0,26,.06)}
.cursor.is-hover .cursor__dot{width:4px;height:4px}
.cursor.is-hover .cursor__ring::after{animation:ripple 1s var(--ease) infinite}
@keyframes ripple{0%{transform:scale(.6);opacity:.5}100%{transform:scale(1.5);opacity:0}}
.cursor__label{position:fixed;transform:translate(-50%,-50%);font-size:.58rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:#fff;background:var(--red);width:0;height:0;display:flex;align-items:center;justify-content:center;border-radius:50%;overflow:hidden;transition:width .3s var(--ease),height .3s var(--ease);white-space:nowrap}
.cursor.is-drag .cursor__label{width:72px;height:72px}
.cursor.is-drag .cursor__ring,.cursor.is-drag .cursor__dot{opacity:0}
.cursor.is-down .cursor__ring{width:24px;height:24px}

/* header on light gray, red divider under topbar */
header.site{position:absolute;top:0;left:0;right:0;z-index:800;background:transparent}
header.site.scrolled{background:rgba(255,255,255,.97);backdrop-filter:blur(8px);box-shadow:0 1px 0 var(--line)}
.topbar{border-bottom:1px solid var(--red)}
.topbar .wrap{display:flex;justify-content:flex-end;gap:26px;height:38px;align-items:center;font-size:.86rem;color:var(--ink)}
.topbar a{transition:color .25s}.topbar a:hover{color:var(--red)}
.nav{display:flex;align-items:center;gap:26px;height:84px}
.brandnav{display:flex;align-items:center;gap:30px;font-size:1.02rem;font-weight:500;color:var(--ink)}
.brandnav.right{margin-left:auto}
.navlink{position:relative;padding:6px 0;transition:color .25s}
.navlink::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--red);transition:width .35s var(--ease)}
.navlink:hover,.navlink.active{color:var(--red)}
.navlink:hover::after,.navlink.active::after{width:100%}
.navlink.loading::after{animation:navload 1s linear}
@keyframes navload{0%{width:0}100%{width:100%}}
.logo img{height:40px;width:auto}
.icobtn{width:30px;height:30px;display:flex;align-items:center;justify-content:center;transition:color .25s}
.icobtn:hover{color:var(--red)}
.brandnav.right .icobtn:first-of-type{margin-left:6px}
.burger{display:none;flex-direction:column;gap:5px;margin-left:auto}.burger span{width:24px;height:2px;background:var(--ink)}

/* links */
.lnk{position:relative;display:inline-block;font-size:.92rem;letter-spacing:.02em;color:var(--ink);padding-bottom:8px;transition:color .3s}
.lnk::after{content:"";position:absolute;left:0;bottom:0;height:1.5px;width:100%;background:var(--ink);transition:background .3s,transform .4s var(--ease);transform-origin:left}
.lnk:hover{color:var(--red)}.lnk:hover::after{background:var(--red)}
.lnk.loading::after{background:var(--red);animation:lnkload .9s var(--ease)}
@keyframes lnkload{0%{transform:scaleX(0)}100%{transform:scaleX(1)}}
.hover-red{transition:color .25s}.hover-red:hover{color:var(--red)}

/* progress */
.progress__track{position:relative;height:2px;background:#c9c6c7}
.progress__bar{position:absolute;top:-1px;height:4px;background:var(--red);border-radius:2px;transition:left .55s var(--ease),width .55s var(--ease);box-shadow:0 2px 10px rgba(226,0,26,.35)}

/* hero */
.hero{position:relative;background:var(--herobg);overflow:hidden;width:100%}
.hero__viewport{overflow:hidden;width:100%}
.hero__track{display:flex;will-change:transform}
.hero__slide{min-width:100%;position:relative;height:min(82vh,720px)}
.hero__photo{position:absolute;right:0;top:0;height:100%;width:54%}
.hero__photo img{height:100%;width:100%;object-fit:cover;object-position:center top}
.hero__content{position:absolute;inset:0;z-index:2;display:flex;align-items:center}
.hero__content .wrap{width:100%}
.hero__content .inner{max-width:620px}
.hero h1{font-size:clamp(2rem,4.2vw,3.2rem);font-weight:400;color:var(--ink);margin:0 0 44px;letter-spacing:-.02em}
.hero .lnk{font-size:1.15rem;padding-right:170px;padding-bottom:14px}
.hero__progress{position:absolute;left:0;right:0;bottom:0;z-index:5}
.hero__progress .progress__track{background:transparent}
.hero__progress .progress__bar{height:5px;box-shadow:0 -1px 10px rgba(226,0,26,.4)}

/* sections */
section{padding:96px 0}
.sec-title{font-size:clamp(1.6rem,2.8vw,2.2rem);font-weight:400;position:relative;display:inline-block;padding-bottom:12px;margin-bottom:8px;letter-spacing:-.02em}
.sec-title::after{content:"";position:absolute;left:0;bottom:0;width:48px;height:2px;background:var(--ink)}

/* za vas izdvajamo */
.feat-promo{max-width:580px;margin:30px auto 60px;text-align:center;color:var(--ink-soft)}
.feat-promo b{display:block;color:var(--ink);font-weight:500;font-size:1.12rem;margin-bottom:8px}

.slider{position:relative}.slider__viewport{overflow:hidden}
.prod-track{display:flex;gap:34px;will-change:transform;user-select:none}
.prod{min-width:calc((100% - 68px)/3);display:flex;flex-direction:column;align-items:center;text-align:center;gap:20px}
.prod__title{font-weight:500;font-size:1.08rem;color:var(--ink)}
.prod__media{height:310px;display:flex;align-items:center;justify-content:center;width:100%}
.prod__media img{max-height:310px;width:auto;object-fit:contain;transition:transform .5s var(--ease)}
.prod:hover .prod__media img{transform:translateY(-6px) scale(1.03)}

/* collab */
.collab{background:var(--mist)}
.collab{padding:100px 0 60px;position:relative;overflow:visible}.collab .wrap{position:relative;display:block}
.collab p{color:var(--red);font-size:clamp(1.35rem,2.5vw,2.05rem);font-weight:300;line-height:1.4;max-width:600px}
.collab__img{position:absolute;right:0;bottom:-185px;width:47%;max-width:600px;z-index:6}.collab__img img{width:100%;height:auto;filter:drop-shadow(0 28px 55px rgba(0,0,0,.12))}

/* partners */

.partners{padding:150px 0 90px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.prow{display:flex;align-items:center;justify-content:space-between;gap:36px;flex-wrap:wrap;margin-top:34px}
.prow img{height:54px;width:auto;object-fit:contain;filter:grayscale(.15)}
.pword{font-weight:600;font-size:1.7rem;color:#8d8d8d;letter-spacing:.01em}
.pword.fill{font-style:italic;font-weight:600}

/* promo */
.promo .wrap{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.promo__img{border-radius:3px;overflow:hidden;aspect-ratio:4/3}
.promo__img img{width:100%;height:100%;object-fit:cover}
.promo h2{font-size:clamp(1.6rem,2.6vw,2.1rem);font-weight:400;margin-bottom:18px}
.promo p{color:var(--ink-soft);margin-bottom:26px;max-width:42ch}

/* novosti */
.news{background:var(--mist-2)}.news .sec-title{margin-bottom:26px}.ncard .lnk{margin-top:6px}
.news-track{display:flex;gap:42px;will-change:transform;user-select:none}
.ncard{min-width:calc((100% - 84px)/3);display:flex;flex-direction:column;gap:20px}
.ncard__media{aspect-ratio:4/3.2;overflow:hidden;border-radius:3px;background:var(--mist)}
.ncard__media img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.ncard:hover .ncard__media img{transform:scale(1.05)}
.ncard h3{font-size:1.7rem;font-weight:400;letter-spacing:-.02em}
.ncard p{font-size:.98rem;color:var(--ink-soft);line-height:1.65;max-width:34ch}

/* ===== FOOTER (po PDF-u) ===== */
footer.site{background:var(--mist);padding:80px 0 34px}
.fgrid{display:grid;grid-template-columns:1fr 1.1fr;gap:60px}
.fcol-left .company{max-width:40ch;font-size:1.02rem;color:var(--ink)}
.fcol-left .social{margin:30px 0;font-size:1rem;color:var(--ink)}
.fcol-left .addr{font-size:1rem;color:var(--ink);line-height:1.9}
.fcol-left .addr a{border-bottom:1px solid var(--ink-soft);transition:color .25s,border-color .25s}
.fcol-left .addr a:hover{color:var(--red);border-color:var(--red)}
.nl-prompt{font-size:1.05rem;color:var(--ink);max-width:34ch;margin-bottom:46px}
.nl{position:relative;max-width:560px;margin-bottom:42px}
.nl input{width:100%;border:0;border-bottom:1.5px solid var(--red);background:transparent;padding:8px 86px 12px 0;font-family:'Inter';font-size:.98rem;color:var(--ink);outline:none}
.nl input::placeholder{color:var(--ink-soft)}
.nl .send{position:absolute;right:0;bottom:12px;font-size:.98rem;color:var(--ink);transition:color .25s}
.nl .send:hover{color:var(--red)}
.nl .dot{position:absolute;right:6px;top:-54px;width:50px;height:50px;border-radius:50%;background:rgba(226,0,26,.16);border:0;display:flex;align-items:center;justify-content:center;transition:transform .3s}
.nl .dot::after{content:"";width:18px;height:18px;border-radius:50%;background:var(--red)}
.nl .dot:hover{transform:scale(1.08)}
.fmenu{display:grid;grid-template-columns:1fr 1fr;gap:40px;max-width:560px}
.fmenu ul{list-style:none;display:flex;flex-direction:column;gap:16px}
.fmenu a{font-size:1.02rem;color:var(--ink);transition:color .25s}
.fmenu a:hover{color:var(--red)}
.fmenu a.red{color:var(--red)}
.fbottom{display:grid;grid-template-columns:1fr 1.1fr;gap:60px;align-items:end;margin-top:70px}
.fbrand img{height:58px;width:auto}
.fbrand .credits{display:block;margin-top:18px;font-size:.7rem;letter-spacing:.12em;color:#8a8a8a;text-transform:uppercase}
.fbottom-right .redline{height:1.5px;background:var(--red);width:100%;margin-bottom:18px}
.flinks{display:flex;gap:14px;justify-content:flex-end;font-size:.95rem;color:var(--ink)}
.flinks a{transition:color .25s}.flinks a:hover{color:var(--red)}
.flinks span{color:var(--ink-soft)}

/* reveal / typewriter */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.tw span{opacity:0}.tw.in span{animation:tw .01s linear forwards}
@keyframes tw{to{opacity:1}}

@media(max-width:980px){
  .brandnav{display:none}.burger{display:flex}.logo{margin-right:auto}
  .prod,.ncard{min-width:calc((100% - 34px)/2)}
  .collab .wrap,.promo .wrap,.fgrid,.fbottom{grid-template-columns:1fr}
  .collab__img{position:static;width:72%;max-width:340px;margin-top:34px;bottom:auto}
  .hero__photo{width:78%;opacity:.55}.hero__content .inner{max-width:92%}
  .fbottom{gap:30px}
}
@media(max-width:620px){
  section{padding:64px 0}.prod,.ncard{min-width:86%}
  .hero__slide{height:70vh}.hero__photo{opacity:.4}
  .hero .lnk{padding-right:120px}
  .fmenu{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
  .reveal{opacity:1;transform:none}.tw span{opacity:1}
}

/* WordPress admin bar offset */
body.admin-bar .site.aksennt-header,body.admin-bar header.site{top:32px}
@media(max-width:782px){body.admin-bar .site.aksennt-header,body.admin-bar header.site{top:46px}}
/* =====================================================================
   SITE / UNUTRAŠNJE STRANICE (blog, stranice, WooCommerce) — samostalna tema
   ===================================================================== */
.container{max-width:var(--maxw);margin:0 auto;padding:0 40px}

/* Solidan header (sve sem početne) */
header.site.is-solid{position:sticky;background:#fff;border-bottom:1px solid var(--line)}
header.site.is-solid .topbar{border-bottom:1px solid var(--red)}
body.admin-bar header.site.is-solid{top:32px}
@media(max-width:782px){body.admin-bar header.site.is-solid{top:46px}}

/* Generički sadržaj stranica/postova */
.site-main{padding:70px 0 90px}
.page-head{margin-bottom:40px}
.page-head h1{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;letter-spacing:-.02em}
.entry{max-width:780px;margin:0 auto}
.entry-content{font-size:1.02rem;color:#2c2c2c;line-height:1.75}
.entry-content h2{font-size:1.6rem;font-weight:500;margin:1.6em 0 .5em}
.entry-content h3{font-size:1.3rem;font-weight:500;margin:1.4em 0 .5em}
.entry-content p{margin:0 0 1.1em}
.entry-content a{color:var(--red);text-decoration:underline}
.entry-content img{border-radius:4px;margin:1.2em 0}
.entry-content blockquote{border-left:3px solid var(--red);margin:1.4em 0;padding:.4em 0 .4em 22px;color:#555;font-style:italic}
.entry-meta{font-size:.85rem;color:var(--ink-soft);margin-bottom:18px;letter-spacing:.02em}
.entry-thumb{margin-bottom:30px;border-radius:4px;overflow:hidden}
.entry-thumb img{width:100%;height:auto}

/* Blog/arhiva grid (koristi .ncard izgled) */
.posts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:42px}
@media(max-width:980px){.posts-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.posts-grid{grid-template-columns:1fr}}

/* Paginacija */
.aksennt-pagination{display:flex;gap:8px;justify-content:center;margin-top:50px;flex-wrap:wrap}
.aksennt-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 12px;border:1px solid var(--line);border-radius:2px;color:var(--ink);transition:.25s}
.aksennt-pagination .page-numbers.current,.aksennt-pagination .page-numbers:hover{background:var(--red);border-color:var(--red);color:#fff}

/* Pretraga */
.search-form{display:flex;border:1px solid var(--line);border-radius:2px;overflow:hidden;max-width:420px}
.search-form input[type=search]{flex:1;border:0;padding:13px 14px;font-family:'Inter';font-size:.95rem;outline:none}
.search-form button{border:0;background:var(--ink);color:#fff;padding:0 20px;cursor:pointer;transition:background .3s}
.search-form button:hover{background:var(--red)}

/* Sidebar */
.content-sidebar{display:grid;grid-template-columns:1fr 300px;gap:50px;align-items:start}
@media(max-width:900px){.content-sidebar{grid-template-columns:1fr}}
.widget{margin-bottom:34px}
.widget-title{font-size:.85rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:14px;font-weight:600}
.widget ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.widget a{color:var(--ink-soft);transition:color .25s}
.widget a:hover{color:var(--red)}

/* 404 */
.error-404{text-align:center;padding:120px 0}
.error-404 .big{font-size:clamp(4rem,12vw,9rem);font-weight:300;color:var(--red);line-height:1}

/* Komentari */
.comments-area{max-width:780px;margin:50px auto 0;border-top:1px solid var(--line);padding-top:34px}
.comment-list{list-style:none}
.comment-list li{margin-bottom:22px}
.comment-meta{font-size:.85rem;color:var(--ink-soft)}

/* ===== WooCommerce ===== */
.wc-wrap{padding:70px 0 90px}
.woocommerce ul.products{display:grid !important;grid-template-columns:repeat(4,1fr);gap:30px;margin:0 !important}
.woocommerce ul.products::before,.woocommerce ul.products::after{display:none !important}
.woocommerce ul.products li.product{width:auto !important;margin:0 !important;float:none !important;text-align:center}
@media(max-width:980px){.woocommerce ul.products{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.woocommerce ul.products{grid-template-columns:1fr}}
.woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:1.05rem;font-weight:500;padding:.6em 0 .3em}
.woocommerce span.price,.woocommerce div.product p.price{color:var(--ink) !important;font-weight:600}
.woocommerce .button,.woocommerce a.button,.woocommerce button.button,.woocommerce #respond input#submit,.woocommerce input.button{
  background:var(--ink) !important;color:#fff !important;border-radius:2px !important;font-family:'Inter' !important;
  font-size:.8rem !important;letter-spacing:.08em;text-transform:uppercase;padding:12px 22px !important;transition:background .3s !important;
}
.woocommerce .button:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background:var(--red) !important}
.woocommerce .button.alt,.woocommerce a.button.alt{background:var(--red) !important}
.woocommerce .button.alt:hover{background:var(--red-dark) !important}
.woocommerce .onsale{background:var(--red) !important;border-radius:50% !important}
.woocommerce-breadcrumb{font-size:.85rem;color:var(--ink-soft);margin-bottom:24px}
.woocommerce div.product .product_title{font-weight:400;letter-spacing:-.01em}
.woocommerce-message,.woocommerce-info,.woocommerce-error{border-top-color:var(--red) !important}
