/* ═══════════════════════════════════════════════════════════
   KAZANDŽIJSKA RADNJA GRUBIŠIĆ — v6
   Header iz v2, hero stil iz v5 (tekst v2)
   ═══════════════════════════════════════════════════════════ */

/* Fontovi se učitavaju preko <link> u includes/head.php (paralelno, bez render-blocking @import lanca). */

/* ── Tokens ── */
:root {
  --gold:        #8B7355;
  --gold-light:  #A09070;
  --gold-dark:   #7A6040;
  --copper:      #c8a97e;

  --dark:        #1a1a1a;
  --dark-warm:   #14110d;
  --dark-soft:   #221d17;

  --cream:       #faf7f2;
  --cream-warm:  #f4ede0;
  --cream-deep:  #ebe3d3;

  --gray:        #666666;
  --gray-light:  #e8e4dc;
  --border:      #d9d4c8;

  --shadow-sm:   0 4px 14px rgba(0,0,0,.08);
  --shadow-md:   0 12px 30px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 60px rgba(0,0,0,.18);
  --shadow-dark: 0 24px 60px rgba(0,0,0,.5);

  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease:        cubic-bezier(.16,1,.3,1);
  --transition:  all .35s var(--ease-out);

  /* v5 hero aliases */
  --night:        #14110d;
  --night-soft:   #221d17;
  --copper-light: #c9a274;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-wrap: break-word; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

::selection { background: var(--gold); color: #fff; }

/* ── Layout primitives ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}
.section { padding: clamp(60px, 7vw, 100px) 0; position: relative; }
.section--dark { background: var(--dark-warm); color: var(--cream-warm); overflow: hidden; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }

/* Tekstura za dark sekcije (kao products) */
.section--dark.section--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(200,169,126,.16) 0%, transparent 65%),
    repeating-linear-gradient(45deg,
      transparent 0, transparent 11px,
      rgba(200,169,126,.025) 11px, rgba(200,169,126,.025) 12px);
}
.section--dark .container { position: relative; z-index: 1; }

/* ── Eyebrow / labels / lines ── */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section--dark .section-label { color: var(--copper); }

/* Eyebrow varijanta sa horizontalnom linijom (kao v5) */
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 28px; height: 1px;
  background: var(--gold);
}
.section--dark .eyebrow { color: var(--copper-light); }
.section--dark .eyebrow::before { background: var(--copper-light); }

.gold-line {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 22px;
}
.gold-line--center { margin: 12px auto 22px; }
.section--dark .gold-line { background: var(--copper); }

/* ── Headings ── */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream-warm); }

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }

em { font-style: italic; font-weight: 400; color: var(--gold); }
.section--dark em { color: var(--copper); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease-out);
}
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(139,115,85,.3); }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-warm); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* Underlined editorial CTA */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(139,115,85,.4);
  transition: color .3s, border-color .3s, gap .35s;
}
.link-cta svg {
  width: 18px; height: 18px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease-out);
}
.link-cta:hover { color: var(--gold-dark); border-color: var(--gold); gap: 16px; }
.link-cta:hover svg { transform: translateX(4px); }
.section--dark .link-cta { color: var(--copper); border-color: rgba(200,169,126,.4); }
.section--dark .link-cta:hover { color: var(--cream-warm); border-color: var(--copper); }

/* ── Frame offset (potpis dizajna) ── */
.frame-offset {
  position: relative;
  isolation: isolate;
}
.frame-offset::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  transition: top .55s var(--ease-out), left .55s var(--ease-out),
              right .55s var(--ease-out), bottom .55s var(--ease-out);
}
.frame-offset > img,
.frame-offset > .frame-offset-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.frame-offset:hover::before {
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
}
.section--dark .frame-offset::before { border-color: rgba(200,169,126,.55); }

@media (max-width: 600px) {
  .frame-offset::before { top: 8px; left: 8px; right: 0; bottom: -8px; }
  .frame-offset:hover::before { top: 6px; left: 6px; right: 0; bottom: -6px; }
}

/* ═══════════════════════════════════════════════════════════
   HEADER (topbar + nav + mobile menu)
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.site-header.scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  animation: slide-down .35s var(--ease-out);
}
@keyframes slide-down { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.scrolled .topbar { display: none; }
.topbar-inner {
  max-width: 1640px; margin: 0 auto;
  padding: 10px clamp(20px, 3vw, 36px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold); stroke-width: 2;
  fill: none; flex-shrink: 0;
}
.topbar-item a { transition: color .3s; }
.topbar-item a:hover { color: var(--gold-light); }
.topbar-socials { display: inline-flex; gap: 14px; }
.topbar-socials a { color: rgba(255,255,255,.6); transition: color .3s; }
.topbar-socials a:hover { color: var(--gold-light); }
.topbar-socials svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 1080px) {
  .topbar-inner { gap: 14px; }
  .topbar-left, .topbar-right { gap: 16px; }
  .topbar { font-size: 12px; }
}
@media (max-width: 768px) {
  /* Tablet/mobile: skrivamo radno vreme + adresu da topbar ostane u jednom redu */
  .topbar-right .topbar-item:first-child { display: none; }
  .topbar-left .topbar-item:first-child { display: none; }
  .topbar-inner { padding: 8px 16px; justify-content: space-between; flex-wrap: nowrap; }
  .topbar { font-size: 11.5px; }
}

.nav {
  background: transparent;
  transition: background .3s;
}
.nav-inner {
  max-width: 1640px; margin: 0 auto;
  padding: 14px clamp(20px, 3vw, 36px);
  display: flex; align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: clamp(35px, calc(4vw + 35px), 115px);
}
.nav-logo img { width: auto; }
/* Svetli logo (na vrhu): kompaktniji aspect (1.8:1), pa veća height da po širini bude isto kao tamni */
.nav-logo img.nav-logo-light {
  height: clamp(84px, 6.3vw, 105px);
}
/* Tamni logo (scrolled): izduženi aspect (3.39:1), manji height */
.nav-logo img.nav-logo-dark {
  height: clamp(50.4px, 3.675vw, 63px);
  display: none;
}
.site-header.scrolled .nav-logo img.nav-logo-light { display: none; }
.site-header.scrolled .nav-logo img.nav-logo-dark { display: block; }

.nav-links {
  display: flex; align-items: center; gap: clamp(16px, 1.9vw, 30px);
  margin-left: clamp(16px, 2vw, 40px);
}
.nav-links li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
  position: relative;
  transition: color .3s;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }
.site-header.scrolled .nav-links > li > a { color: var(--dark); }
.nav-caret {
  width: 11px; height: 11px;
  stroke: currentColor; stroke-width: 2; fill: none;
  transition: transform .4s var(--ease-out);
}
.has-dropdown:hover > a > .nav-caret { transform: rotate(180deg); }

/* ── Beli dropdown sa premium animacijama (stagger reveal + line draw) ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 280px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 14px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s, transform .45s var(--ease-out);
  border-top: 2px solid var(--gold);
}
/* Hover bridge */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.has-dropdown:hover > .nav-dropdown,
.nav-links li:hover > .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-transform: none;
  position: relative;
  /* Stagger entry — items "uleću" sleva sa malim kašnjenjem */
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out),
              background .3s, color .3s, padding-left .35s var(--ease-out);
}
/* Stagger reveal kad se dropdown otvori */
.has-dropdown:hover > .nav-dropdown a,
.nav-links li:hover > .nav-dropdown a {
  opacity: 1;
  transform: translateX(0);
}
.nav-dropdown a:nth-child(1) { transition-delay: .08s; }
.nav-dropdown a:nth-child(2) { transition-delay: .14s; }
.nav-dropdown a:nth-child(3) { transition-delay: .2s; }
.nav-dropdown a:nth-child(4) { transition-delay: .26s; }
.nav-dropdown a:nth-child(5) { transition-delay: .32s; }
/* Hover — zlatna linija iscrtava se ispod teksta */
.nav-dropdown a::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 26px; right: 26px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease-out);
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--gold-dark);
  padding-left: 34px;
}
.nav-dropdown a:hover::after { transform: scaleX(1); }

/* ── Sub-dropdown (kaskadni 3. nivo: Standard kazani → veličine) ── */
.dropdown-item-has-sub {
  position: relative;
  /* Fade-in inherit za stagger reveal */
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  transition-delay: .08s;
}
.has-dropdown:hover > .nav-dropdown .dropdown-item-has-sub,
.nav-links li:hover > .nav-dropdown .dropdown-item-has-sub {
  opacity: 1;
  transform: translateX(0);
}
/* Disable individual stagger for the wrapped link (parent handles it) */
.dropdown-item-has-sub > a {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}
.dropdown-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  opacity: 0.5;
  transition: opacity .3s, transform .35s var(--ease-out);
}
.dropdown-item-has-sub:hover .dropdown-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.nav-subdropdown {
  position: absolute;
  top: -14px;
  left: calc(100% - 1px);
  min-width: 480px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 14px 0;
  opacity: 0; visibility: hidden;
  transform: translateX(-8px);
  transition: opacity .4s var(--ease-out), visibility .4s, transform .4s var(--ease-out);
  border-top: 2px solid var(--gold);
  /* 2-kolone grid za 14 stavki */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
/* Hover bridge između parent itemа i sub-dropdown-a (sprečava zatvaranje) */
.nav-subdropdown::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -16px; width: 16px;
}
.dropdown-item-has-sub:hover > .nav-subdropdown {
  opacity: 1; visibility: visible;
  transform: translateX(0);
}
.nav-subdropdown a {
  /* Reset stagger animation za sub-items (ne treba im) */
  opacity: 1;
  transform: none;
  transition: background .3s, color .3s, padding-left .35s var(--ease-out);
  transition-delay: 0s;
  padding: 11px 24px;
  font-size: 12px;
}
.nav-subdropdown a::after {
  bottom: 6px;
  left: 24px;
  right: 24px;
}
.nav-subdropdown a:hover {
  background: var(--cream);
  color: var(--gold-dark);
  padding-left: 32px;
}

/* ── Mega dropdown (Rezervni delovi: 3 kolone) ───────────────────── */
.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(820px, 92vw);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 22px 28px 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s, transform .45s var(--ease-out);
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: 28px;
  z-index: 100;
}
.nav-mega-dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.has-mega:hover > .nav-mega-dropdown,
.nav-links li.has-mega:hover > .nav-mega-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-col {
  min-width: 0;
}
.nav-mega-col + .nav-mega-col {
  border-left: 1px solid rgba(0,0,0,0.06);
  padding-left: 22px;
}
.nav-mega-col-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--gold);
}
.nav-mega-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mega-col-list li {
  margin: 0;
}
.nav-mega-col-list a {
  display: block;
  padding: 8px 0 8px 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
  position: relative;
  text-decoration: none;
  transition: color .25s, padding-left .3s var(--ease-out), background .25s;
  border-radius: 2px;
}
.nav-mega-col-list a:hover {
  color: var(--gold-dark);
  padding-left: 10px;
  background: var(--cream);
}
.nav-mega-col-list a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 4px; right: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease-out);
}
.nav-mega-col-list a:hover::after {
  transform: scaleX(0.6);
}

@media (max-width: 980px) {
  /* Hide desktop mega-dropdown on mobile — mobile menu handles it */
  .nav-mega-dropdown { display: none; }
}

/* Mobile sub-submenu (3. nivo: Standard kazani → veličine) */
.mobile-subsubmenu {
  border-bottom: 0;
  padding-left: 18px;
  margin-left: 4px;
  border-left: 1px solid rgba(200,169,126,.25);
}
.mobile-subsubmenu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  border-bottom: 0;
  transition: color .3s, padding-left .3s;
}
.mobile-subsubmenu summary::-webkit-details-marker { display: none; }
.mobile-subsubmenu summary:hover { color: var(--gold); }
.mobile-subsubmenu summary svg {
  width: 14px; height: 14px;
  stroke: var(--gold); stroke-width: 2; fill: none;
  transition: transform .35s var(--ease-out);
}
.mobile-subsubmenu[open] summary svg { transform: rotate(180deg); }
.mobile-subsubmenu a {
  display: block;
  width: 100%;
  padding: 8px 0 8px 14px;
  font-size: 0.95rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  border-left: 0;
  margin-left: 0;
  border-bottom: 0;
}
.mobile-subsubmenu a:hover {
  color: var(--gold);
  padding-left: 20px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }
.nav-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--dark); }

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU — premium overlay sa logom, watermark-om i animacijama
   ═══════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--dark-warm);
  display: flex; flex-direction: column;
  padding: 30px 28px 28px;
  transform: translateX(100%);
  transition: transform .55s var(--ease-out);
  overflow-y: auto;
  overflow-x: hidden;
}
/* Suptilna teksturna pozadina (gold radial glow) */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 12%, rgba(200, 169, 126, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(139, 115, 85, 0.10) 0, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu.open { transform: translateX(0); }

/* Veliki "G" watermark u pozadini — luksuzni editorial moment */
.mobile-menu-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20rem, 70vw, 32rem);
  font-weight: 200;
  line-height: 0.8;
  color: rgba(200, 169, 126, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 50%;
  transition: border-color .3s, color .3s, transform .35s var(--ease-out);
  z-index: 2;
}
.mobile-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}
.mobile-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ── Header sa logom + brendingom ── */
.mobile-menu-head {
  text-align: center;
  padding: 20px 0 24px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.18);
  /* Stagger entry */
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .55s var(--ease-out) .12s, transform .55s var(--ease-out) .12s;
}
.mobile-menu.open .mobile-menu-head {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  margin: 0 auto 14px;
  opacity: .95;
  filter: drop-shadow(0 4px 14px rgba(200, 169, 126, 0.18));
}
.mobile-menu-brand {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-warm);
  margin-bottom: 10px;
}
.mobile-menu-est {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.75);
}
.mobile-menu-est-line {
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Nav items kontejner ── */
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0 8px;
}
.mobile-menu-nav > a,
.mobile-menu-nav > details {
  /* Stagger entry — items uleću sleva */
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.mobile-menu.open .mobile-menu-nav > *:nth-child(1) { transition-delay: .22s; }
.mobile-menu.open .mobile-menu-nav > *:nth-child(2) { transition-delay: .29s; }
.mobile-menu.open .mobile-menu-nav > *:nth-child(3) { transition-delay: .36s; }
.mobile-menu.open .mobile-menu-nav > *:nth-child(4) { transition-delay: .43s; }
.mobile-menu.open .mobile-menu-nav > *:nth-child(5) { transition-delay: .50s; }
.mobile-menu.open .mobile-menu-nav > * {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-nav > a {
  display: block;
  padding: 16px 0 16px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(200, 169, 126, 0.12);
  position: relative;
  transition: color .3s, padding-left .35s var(--ease-out), background .3s;
}
.mobile-menu-nav > details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 16px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(200, 169, 126, 0.12);
  position: relative;
  cursor: pointer;
  list-style: none;
  transition: color .3s, padding-left .35s var(--ease-out), background .3s;
}
.mobile-menu-nav > details > summary::-webkit-details-marker { display: none; }
/* Suptilna gold linija na levoj strani na hover */
.mobile-menu-nav > a::before,
.mobile-menu-nav > details > summary::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width .35s var(--ease-out);
}
.mobile-menu-nav > a:hover,
.mobile-menu-nav > details > summary:hover {
  color: var(--gold);
  padding-left: 28px;
}
.mobile-menu-nav > a:hover::before,
.mobile-menu-nav > details > summary:hover::before {
  width: 14px;
}

/* Mobile submenu (details/summary native HTML) */
.mobile-submenu {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-submenu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  transition: color .3s, padding-left .3s;
}
.mobile-submenu summary::-webkit-details-marker { display: none; }
.mobile-submenu summary:hover { color: var(--gold); padding-left: 8px; }
.mobile-submenu summary svg {
  width: 18px; height: 18px;
  stroke: var(--gold); stroke-width: 2; fill: none;
  transition: transform .35s var(--ease-out);
}
.mobile-submenu[open] summary svg { transform: rotate(180deg); }
.mobile-submenu a {
  display: block;
  width: 100%;
  padding: 10px 0 10px 18px;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  border-bottom: 0;
  border-left: 1px solid rgba(200,169,126,.25);
  margin-left: 4px;
}
.mobile-submenu a:hover { color: var(--gold); padding-left: 24px; border-left-color: var(--gold); }

/* ── Mobile grupisani submenu (Rezervni delovi: flat list sa section header-ima) ── */
.mobile-submenu--grouped > a,
.mobile-submenu--grouped > a.mobile-submenu-overview {
  display: block;
  width: 100%;
  border-left: 0;
  margin-left: 0;
  padding: 9px 0 9px 4px;
  font-size: 0.98rem;
}
.mobile-submenu--grouped > a.mobile-submenu-overview {
  display: block;
  margin: 6px 0 4px;
  padding: 8px 12px;
  background: rgba(200,169,126,0.08);
  border-left: 2px solid var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.92);
}
.mobile-submenu--grouped > a.mobile-submenu-overview:hover {
  background: rgba(200,169,126,0.15);
  padding-left: 16px;
}
.mobile-submenu-section {
  display: block;
  margin: 16px 0 4px;
  padding: 0 0 6px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,126,.25);
}
.mobile-submenu-section:first-of-type {
  margin-top: 14px;
}
/* ── Footer mobile menu: phone CTA + social + adresa ── */
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 169, 126, 0.18);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease-out) .55s, transform .55s var(--ease-out) .55s;
}
.mobile-menu.open .mobile-menu-foot {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 0;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.35);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.mobile-menu-phone:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(139, 115, 85, 0.5);
  padding-left: 28px;
}
.mobile-menu-phone svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
}
.mobile-menu-foot p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.mobile-menu-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.mobile-menu-socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 50%;
  color: rgba(244, 237, 224, 0.8);
  padding: 0;
  border-bottom-width: 1px;
  font-size: inherit;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}
.mobile-menu-socials a:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  padding-left: 0;
}
.mobile-menu-socials svg {
  width: 16px; height: 16px;
  fill: currentColor;
}
.mobile-menu-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(244, 237, 224, 0.55);
  letter-spacing: 0.04em;
}
.mobile-menu-address svg {
  width: 12px; height: 12px;
  stroke: var(--gold); stroke-width: 2; fill: none;
}

@media (max-width: 1080px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-inner { padding: 12px clamp(16px, 3vw, 28px); }
  .nav-logo img.nav-logo-light { height: clamp(67.2px, 9.45vw, 88.2px); }
  .nav-logo img.nav-logo-dark  { height: clamp(42px, 5.775vw, 54.6px); }
}
@media (max-width: 540px) {
  .nav-logo img.nav-logo-light { height: 63px; }
  .nav-logo img.nav-logo-dark  { height: 39.9px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
/* HERO — v2 */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 980px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: hero-kenburns 8s ease-out forwards;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(170px, 20vh, 240px);
  padding-bottom: clamp(160px, 18vh, 200px);
  color: #fff;
}
.hero-bignum {
  position: absolute;
  top: clamp(140px, 22vh, 240px);
  right: clamp(20px, 4vw, 40px);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 200;
  line-height: 0.85;
  color: rgba(200,169,126,.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 2;
}
.hero-est {
  position: absolute;
  top: 50%; left: clamp(16px, 2.4vw, 30px);
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  z-index: 2;
}
.hero-est::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-fade .8s ease-out 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 30px;
  max-width: 16ch;
  opacity: 0;
  animation: hero-fade .9s ease-out 0.35s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--copper);
}
.hero h1.fading { opacity: 0; transition: opacity .55s ease; }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin-bottom: 23px;
  opacity: 0;
  animation: hero-fade .9s ease-out 0.5s forwards;
  transition: opacity .55s ease;
}
.hero-sub.fading { opacity: 0; }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade .9s ease-out 0.65s forwards;
}
@keyframes hero-fade { to { opacity: 1; transform: translateY(0); } }

.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(20, 17, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,169,126,.22);
}
.hero-trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 32px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(244,237,224,.85);
}
.hero-trust-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}
.hero-trust-num sup { font-size: 0.5em; vertical-align: super; }
.hero-trust-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 880px) {
  .hero-bignum { display: none; }
  .hero-est { display: none; }

  /* Pristup: hero auto-visina (sadržaj raste po potrebi). Slika fills hero.
     Trust bar je normalan blok ispod, ne preklapa se. */
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }
  /* Slika i overlay popunjavaju ceo hero (= visinu sadržaja) */
  .hero-bg, .hero::after {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    max-height: none;
  }
  /* Sadržaj — auto visina, padding-top dovoljan da ostane ispod headera */
  .hero-content {
    position: relative;
    height: auto;
    padding-top: clamp(160px, 20vh, 220px);
    padding-bottom: clamp(50px, 6vh, 80px);
    justify-content: flex-start;
  }
  /* Trust bar — normalan blok ispod hero-a (i dalje unutar hero elementa) */
  .hero-trust {
    position: relative;
    inset: auto;
    bottom: auto;
    background: var(--dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid rgba(200,169,126,.22);
  }
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    padding: 22px clamp(20px, 4vw, 32px);
  }
  .hero-trust-grid .hero-trust-item:nth-child(3) {
    grid-column: 1 / -1;
  }
  .hero-trust-item { flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .hero-trust-num { font-size: 1.6rem; }
  .hero-trust-label br { display: none; }
}
@media (max-width: 540px) {
  .hero-content { padding-top: 150px; padding-bottom: 50px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 16px; }
  .hero-eyebrow::before { width: 24px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust-grid { padding: 18px; gap: 14px 18px; }
  .hero-trust-num { font-size: 1.4rem; }
  .hero-trust-label { font-size: 10px; letter-spacing: 0.14em; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION (iz v8)
   ═══════════════════════════════════════════════════════════ */
.lead {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1.6;
  margin-bottom: 18px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat-num sup { font-size: 0.5em; vertical-align: super; }
.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image img { height: 420px; }
  .about-stats { gap: 16px; }
}
@media (max-width: 540px) {
  .about-grid { gap: 40px; }
  .about-image img { height: 320px; }
  .about-stats { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; text-align: center; }
  .about-stats > div { align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   FADE-UP (intersection observer)
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .12s; }
.fade-up-delay-2 { transition-delay: .24s; }
.fade-up-delay-3 { transition-delay: .36s; }

/* ═══════════════════════════════════════════════════════════
   STAMP PRESS — kao da pečat udara podlogu (za sertifikat sliku)
   ═══════════════════════════════════════════════════════════ */
.stamp-press {
  opacity: 0;
  transform: scale(2.4) rotate(-16deg);
  transform-origin: center center;
  filter: blur(2px);
}
.stamp-press.visible {
  animation: stamp-press 1s cubic-bezier(0.22, 0.85, 0.3, 1) forwards;
}
@keyframes stamp-press {
  0% {
    opacity: 0;
    transform: scale(2.4) rotate(-16deg);
    filter: blur(2px);
  }
  20% {
    opacity: 0.4;
    filter: blur(1.5px);
  }
  45% {
    opacity: 1;
    transform: scale(1.12) rotate(2.5deg);
    filter: blur(0);
  }
  /* Udar — pečat preteruje malo manje od konačne veličine, sa lakim wobble */
  60% {
    transform: scale(0.92) rotate(-1.5deg);
  }
  74% {
    transform: scale(1.04) rotate(0.8deg);
  }
  86% {
    transform: scale(0.99) rotate(-0.3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

/* Bonus: subtle "ink shake" kao da je pečat tek otisnut */
@keyframes stamp-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(1px); }
  75% { transform: translateX(-1px); }
}

/* ═══════════════════════════════════════════════════════════
   PROIZVODI I USLUGE (offer cards)
   ═══════════════════════════════════════════════════════════ */
.section-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.section-head h2 { margin-top: 8px; }
.section-head .gold-line { margin-left: auto; margin-right: auto; }

@media (max-width: 600px) {
  .section-head { margin-bottom: 40px; }
}

.lead--center {
  text-align: center;
  max-width: 72ch;
  margin: 24px auto 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: transform .55s var(--ease-out), border-color .35s, box-shadow .55s;
  overflow: hidden;
}
.offer-card:hover {
  box-shadow: var(--shadow-md);
}
.offer-card.fade-up.visible:hover {
  transform: translateY(-6px);
}
.offer-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .5s;
}
.offer-card:hover .offer-card-img img {
  transform: scale(1.06);
}
.offer-card-body {
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.offer-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: color .3s;
}
.offer-card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.offer-card-body .link-cta {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 8px 0;
}

/* Dark variant — overrides za .section--dark */
.section--dark .offer-card {
  background: rgba(255,255,255,.02);
  border-color: rgba(200,169,126,.18);
}
.section--dark .offer-card:hover {
  border-color: var(--copper);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.section--dark .offer-card-img img {
  filter: saturate(1.05) brightness(0.85);
}
.section--dark .offer-card:hover .offer-card-img img {
  filter: saturate(1.1) brightness(0.92);
}
.section--dark .offer-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.section--dark .offer-card-body h3 {
  color: #fff;
}
.section--dark .offer-card:hover .offer-card-body h3 {
  color: var(--copper);
}
.section--dark .offer-card-body p {
  color: rgba(244,237,224,.85);
}
.section--dark .offer-card .link-cta {
  align-self: stretch;
  padding-top: 18px;
  border-top: 1px solid rgba(200,169,126,.22);
  border-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.22em;
}
.section--dark .offer-card:hover .link-cta {
  color: #fff;
  border-color: rgba(200,169,126,.4);
}
.section--dark .offer-card:hover .link-cta svg {
  transform: translateX(4px);
}

@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SERTIFIKAT CALLOUT — moderan editorial layout (kompaktno, bez kartice)
   ═══════════════════════════════════════════════════════════ */
.sertifikat-callout {
  background: var(--cream);
  padding: clamp(50px, 6vw, 80px) 0;
  position: relative;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
.sertifikat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.sertifikat-image-wrap {
  position: relative;
  isolation: isolate;
  grid-column: 2;
  grid-row: 1;
}
.sertifikat-image-wrap::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 32px; height: 32px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.sertifikat-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 32px; height: 32px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.sertifikat-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(139, 115, 85, 0.22));
}

.sertifikat-content {
  position: relative;
  isolation: isolate;
  grid-column: 1;
  grid-row: 1;
}
.sertifikat-year-mark {
  position: absolute;
  top: -20px;
  right: -10px;
  left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 200;
  line-height: 0.85;
  color: rgba(139, 115, 85, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sertifikat-content > *:not(.sertifikat-year-mark) {
  position: relative;
  z-index: 1;
}
.sertifikat-content .section-label { margin-bottom: 10px; }
.sertifikat-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--dark);
}
.sertifikat-content h3 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.sertifikat-content .gold-line { margin-bottom: 18px; }
.sertifikat-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 18px;
  color: var(--gray);
}
.sertifikat-content p strong {
  color: var(--gold-dark);
  font-weight: 600;
}
.sertifikat-content .link-cta {
  margin-top: 4px;
}

@media (max-width: 880px) {
  .sertifikat-callout { padding: clamp(40px, 7vw, 64px) 0; }
  .sertifikat-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .sertifikat-image-wrap { grid-column: 1; grid-row: 1; max-width: 240px; margin: 0 auto; }
  .sertifikat-content { grid-column: 1; grid-row: 2; }
  .sertifikat-content .gold-line { margin-left: auto; margin-right: auto; }
  .sertifikat-year-mark { top: -10px; right: 50%; transform: translateX(50%); font-size: clamp(6rem, 18vw, 10rem); }
}
@media (max-width: 540px) {
  .sertifikat-image-wrap { max-width: 200px; }
  .sertifikat-image-wrap::before, .sertifikat-image-wrap::after {
    width: 24px; height: 24px;
  }
  .sertifikat-year-mark { font-size: 7rem; top: -6px; }
}

/* ═══════════════════════════════════════════════════════════
   ZAŠTO MI (why-us — 3 kolone, light)
   ═══════════════════════════════════════════════════════════ */
.why-section { background: #fff; }
.why-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.why-header h2 em { color: var(--gold); }
.why-header .gold-line { margin-left: auto; margin-right: auto; }
.why-header p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin-top: 10px;
}

.why-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 0;
  position: relative;
}
.why-col {
  position: relative;
  padding: 8px 40px 12px;
  text-align: left;
  transition: transform .5s var(--ease-out);
}
.why-col + .why-col::before {
  content: '';
  position: absolute;
  left: 0; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(139,115,85,.35) 12%, rgba(139,115,85,.5) 50%, rgba(139,115,85,.35) 88%, transparent 100%);
}
/* Hide separator at start of each row (3-col grid) */
.why-col:nth-child(3n+1)::before { display: none; }
.why-col:nth-child(3n+1) { padding-left: 0; }
.why-col:nth-child(3n) { padding-right: 0; }
.why-col:hover { transform: translateY(-4px); }

.why-col-stat {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.4rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.why-col-stat sup {
  font-size: 0.42em;
  font-weight: 600;
  vertical-align: top;
  margin-left: 2px;
  color: var(--gold-light);
}

.why-col-tag {
  display: inline-block;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 22px;
  margin-bottom: 24px;
}
.why-col-tag::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: width .45s var(--ease-out);
}
.why-col:hover .why-col-tag::after { width: 64px; }

.why-col h4 { font-size: 1.3rem; margin-bottom: 12px; }
.why-col p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .why-columns { grid-template-columns: repeat(2, 1fr); gap: 44px 36px; }
  /* Reset 3-col separator pravila */
  .why-col:nth-child(3n+1)::before { display: revert; }
  .why-col:nth-child(3n+1) { padding-left: 40px; }
  .why-col:nth-child(3n) { padding-right: 40px; }
  /* Primeni 2-col separator pravila */
  .why-col:nth-child(2n+1)::before { display: none; }
  .why-col:nth-child(2n+1) { padding-left: 0; }
  .why-col:nth-child(2n) { padding-right: 0; }
}
@media (max-width: 600px) {
  .why-columns { grid-template-columns: 1fr; gap: 44px 0; }
  .why-col { padding: 0 0 36px; }
  .why-col:not(:last-child) { border-bottom: 1px solid rgba(139,115,85,.18); }
  .why-col + .why-col::before { display: none; }
  .why-col:nth-child(2n+1) { padding-left: 0; }
  .why-col:nth-child(2n) { padding-right: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MEDIJI O NAMA (TV reportaže — dark)
   ═══════════════════════════════════════════════════════════ */
.media-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 7vw, 90px);
}
.media-header h2 em { color: var(--copper); }
.media-header .gold-line { margin-left: auto; margin-right: auto; }
.media-header p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244,237,224,.72);
  margin-top: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 72px);
}
.media-tile { position: relative; }
.media-tile-thumb {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 36px;
  isolation: isolate;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.media-tile-frame {
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid rgba(200,169,126,.55);
  pointer-events: none;
  z-index: 0;
  transition: top .55s var(--ease-out), left .55s var(--ease-out),
              right .55s var(--ease-out), bottom .55s var(--ease-out),
              border-color .4s;
}
.media-tile-thumb:hover .media-tile-frame {
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  border-color: rgba(200,169,126,.95);
}
.media-tile-img-wrap {
  position: relative;
  display: block;
  z-index: 1;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transition: box-shadow .5s;
}
.media-tile-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .5s;
}
.media-tile-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity .4s;
}
.media-tile-thumb:hover .media-tile-img-wrap { box-shadow: 0 32px 80px rgba(0,0,0,.65); }
.media-tile-thumb:hover .media-tile-img-wrap img { transform: scale(1.05); }
.media-tile-thumb:hover .media-tile-img-wrap::after { opacity: .85; }

.media-tile-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(70px, 7vw, 90px);
  height: clamp(70px, 7vw, 90px);
  z-index: 2;
  pointer-events: none;
}
.media-tile-ring {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
}
.media-tile-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64%; height: 64%;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(139,115,85,.45), inset 0 1px 0 rgba(255,255,255,.25);
  transition: background .35s, transform .45s var(--ease-out);
}
.media-tile-core svg {
  width: 38%; height: 38%;
  fill: #fff;
  margin-left: 6%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}
.media-tile-thumb:hover .media-tile-core { background: var(--gold-dark); transform: translate(-50%, -50%) scale(1.08); }

.media-tile-play--archive .media-tile-ring { display: none; }
.media-tile-play--archive .media-tile-core {
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.media-tile-play--archive .media-tile-core svg {
  fill: none; stroke: var(--gold);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  margin-left: 0; width: 42%; height: 42%;
}

.media-tile-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: rgba(20, 17, 13, 0.7);
  border: 1px solid rgba(200,169,126,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,126,.95);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .7; }
  60% { opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.media-tile-body { display: flex; flex-direction: column; }
.media-tile-row {
  display: flex; align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.media-tile-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(200,169,126,.95);
}
.media-tile-num::after {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: rgba(200,169,126,.7);
  vertical-align: middle;
  margin-left: 14px;
  margin-top: -3px;
}
.media-tile-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,237,224,.55);
}
.media-tile-body h3 {
  color: var(--cream-warm);
  margin-bottom: 16px;
  transition: color .3s;
}
.media-tile:hover .media-tile-body h3 { color: rgba(200,169,126,.95); }
.media-tile-body > p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(244,237,224,.72);
  margin-bottom: 24px;
  max-width: 48ch;
}
.media-tile-foot {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(200,169,126,.22);
  flex-wrap: wrap;
}
.media-tile-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,126,.85);
}
.media-tile-cta {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-warm);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .3s, gap .35s;
}
.media-tile-cta svg {
  width: 18px; height: 18px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease-out);
}
.media-tile-cta:hover { color: var(--copper); gap: 16px; }
.media-tile-cta:hover svg { transform: translateX(4px); }

@media (max-width: 880px) {
  .media-grid { grid-template-columns: 1fr; gap: 60px; }
  .media-tile-thumb { margin-bottom: 30px; }
  .media-tile-frame { top: 14px; left: 14px; right: -14px; bottom: -14px; }
}
@media (max-width: 540px) {
  .media-tile-frame { top: 8px; left: 8px; right: 0; bottom: -8px; }
  .media-tile-thumb:hover .media-tile-frame { top: 6px; left: 6px; right: 0; bottom: -6px; }
}
@media (max-width: 480px) {
  .media-tile-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   MEDIA MODAL (YouTube embed)
   ═══════════════════════════════════════════════════════════ */
.media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center; justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.media-modal.is-open { opacity: 1; visibility: visible; }
.media-modal-stage {
  width: 100%; max-width: 1080px;
  display: flex; flex-direction: column; gap: 18px;
  transform: translateY(20px) scale(.98);
  transition: transform .45s var(--ease-out);
}
.media-modal.is-open .media-modal-stage { transform: translateY(0) scale(1); }
.media-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--copper);
  margin: 0;
  text-align: center;
}
.media-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border: 1px solid rgba(200,169,126,.5);
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 6px rgba(200,169,126,.1);
  overflow: hidden;
}
.media-modal-iframe-wrap { position: absolute; inset: 0; }
.media-modal-iframe-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.media-modal-message {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 30px;
  color: rgba(244,237,224,.85);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}
.media-modal-message svg {
  width: 42px; height: 42px;
  stroke: var(--copper); stroke-width: 1.4;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.media-modal-message strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.media-modal-message span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(244,237,224,.65);
  max-width: 42ch;
}
.media-modal-close {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,169,126,.45);
  color: var(--copper);
  cursor: pointer;
  transition: var(--transition);
}
.media-modal-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.media-modal-close:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: rotate(90deg);
}
body.media-modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   NAŠI PARTNERI (light, grayscale logo strip)
   ═══════════════════════════════════════════════════════════ */
.partners-section { background: #fff; }
.partners-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.partners-header h2 em { color: var(--gold); }
.partners-header .gold-line { margin-left: auto; margin-right: auto; }

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
}
.partners-row img {
  height: clamp(60px, 7vw, 90px);
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity .35s, filter .35s;
}
.partners-row img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -160px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,115,85,.08), transparent 65%);
  pointer-events: none;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
  position: relative;
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside h2 em { color: var(--gold); }
.faq-lede {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 32px;
}
.faq-aside-image { position: relative; isolation: isolate; margin-bottom: 36px; }
.faq-aside-frame {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}
.faq-aside-image img {
  position: relative;
  z-index: 1;
  width: 100%; height: 320px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 50px rgba(26, 26, 26, 0.18);
}
.faq-aside-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(139,115,85,.25);
  color: var(--dark);
  transition: var(--transition);
}
.faq-aside-cta span {
  display: flex; flex-direction: column;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.faq-aside-cta small {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.faq-aside-cta svg {
  width: 22px; height: 22px;
  stroke: var(--gold); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease-out);
}
.faq-aside-cta:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(139,115,85,.18);
}
.faq-aside-cta:hover svg { transform: translateX(4px); }

.faq-list { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid rgba(139,115,85,.22);
  overflow: hidden;
  transition: background .35s;
}
.faq-item:first-child { border-top: 1px solid rgba(139,115,85,.22); }
.faq-item.open { background: #fff; }
.faq-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 24px 24px 0;
  cursor: pointer;
  transition: padding .35s;
}
.faq-item.open .faq-question { padding: 28px 24px; }
.faq-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-right: 22px;
  border-right: 1px solid rgba(139,115,85,.3);
  transition: var(--transition);
}
.faq-question:hover .faq-num,
.faq-item.open .faq-num { color: var(--gold-dark); border-color: var(--gold); }
.faq-question h4 {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  transition: color .3s;
}
.faq-question:hover h4, .faq-item.open h4 { color: var(--gold-dark); }
.faq-icon {
  position: relative;
  width: 36px; height: 36px;
  border: 1px solid rgba(139,115,85,.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transition: transform .4s var(--ease-out), background .35s;
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-question:hover .faq-icon { border-color: var(--gold); background: rgba(139,115,85,.08); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(135deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-answer {
  display: none;
  padding: 0 24px 28px calc(24px + 22px + 22px + 1px);
}
.faq-answer p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
  max-width: 60ch;
}
.faq-item.open .faq-answer { display: block; }

@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; gap: 56px; }
  .faq-aside { position: static; }
  .faq-aside-image img { height: 260px; }
}
@media (max-width: 560px) {
  .faq-aside-frame { top: 8px; left: 8px; right: 0; bottom: -8px; }
  .faq-aside-image img { height: 220px; }
  .faq-question {
    grid-template-columns: auto 1fr;
    grid-template-areas: "num icon" "title title";
    gap: 14px;
    padding: 22px 20px 22px 0;
  }
  .faq-num { grid-area: num; padding-right: 0; border-right: 0; }
  .faq-icon { grid-area: icon; }
  .faq-question h4 { grid-area: title; }
  .faq-answer { padding: 0 20px 22px 0; }
  .faq-item.open .faq-question { padding: 22px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   KONTAKT (dark sekcija + forma)
   ═══════════════════════════════════════════════════════════ */
/* Foto pozadina radionice — razlikuje kontakt od footera */
.section--contact-photo {
  background: var(--dark-warm) url('../images/o-nama/kazandzija-grubisic-ruma.webp') center / cover no-repeat;
}
.section--contact-photo.section--textured::before {
  background-image: linear-gradient(to bottom,
    rgba(20,17,13,.94) 0%,
    rgba(20,17,13,.86) 50%,
    rgba(20,17,13,.97) 100%);
}
.section--contact-photo .contact-form-wrap {
  background: rgba(20,17,13,.7);
  backdrop-filter: blur(5px);
  border-color: rgba(200,169,126,.3);
}

/* Kompaktnija kontakt sekcija: manji vertikalni padding + info lista u 2 kolone
   (umesto 4 reda) — uravnotežuje levu kolonu sa formom i skraćuje sekciju ~22%. */
.section--contact-photo.section { padding: clamp(56px, 5vw, 72px) 0; }
.section--contact-photo .contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
  row-gap: 0;
}
.section--contact-photo .ci-pair dd { margin: 0 0 18px; padding: 0 0 18px; }
.section--contact-photo .ci-pair:nth-last-child(-n+2) dd {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* Na uskim ekranima info lista nazad u 1 kolonu (duga email adresa krivi 2-kol grid).
   nth-last-child override iz 2-kol režima ovde se vraća na pun razmak između stavki. */
@media (max-width: 680px) {
  .section--contact-photo .contact-info-list { grid-template-columns: 1fr; }
  .section--contact-photo .ci-pair:nth-last-child(-n+2) dd { margin-bottom: 18px; padding-bottom: 0; }
  .section--contact-photo .ci-pair:last-child dd { margin-bottom: 0; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}
.contact-info h2 { color: var(--cream); }
.contact-info h2 em { color: var(--copper-light); }
.contact-info > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(250, 246, 236, .82);
  margin: 22px 0 36px;
  max-width: 50ch;
}

.contact-info-list dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 6px;
}
.contact-info-list dd {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(250, 246, 236, .08);
}
.contact-info-list dd:last-child { border-bottom: 0; }
.contact-info-list a, .contact-info-list strong {
  font-weight: 400;
  font-style: normal;
  color: var(--cream);
  display: block;
  transition: color .3s;
}
.contact-info-list a:hover { color: var(--copper-light); }

.contact-form-wrap {
  background: rgba(250, 246, 236, .04);
  border: 1px solid rgba(176, 136, 86, .22);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form-wrap h3 {
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: rgba(250, 246, 236, .65);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact-form { display: grid; gap: 22px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 8px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(250, 246, 236, .18);
  background: transparent;
  color: var(--cream);
  font-size: 0.96rem;
  transition: border-color .3s;
  font-family: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(250, 246, 236, .32); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 0; border-color: var(--copper); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 10px; }
.contact-form-status { font-size: 0.92rem; margin: 4px 0 0; color: var(--copper-light); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* iOS Safari ne zoomira input ako je font-size >= 16px */
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION OPENER (decorative copper double-line at top)
   ═══════════════════════════════════════════════════════════ */
.section-opener {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(176,136,86,.6) 25%,
    rgba(176,136,86,.6) 75%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER (najtamnija varijanta + textured)
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-warm);
  color: rgba(250, 246, 236, .65);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
/* Footer je namerno ravan (bez teksture) — kontakt sekcija iznad
   ima foto pozadinu, pa ravan footer daje jasnu vizuelnu granicu */
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 22px;
  opacity: .92;
}
@media (max-width: 880px) {
  .footer-brand img { max-width: 220px; }
}
@media (max-width: 540px) {
  .footer-brand img { max-width: 200px; margin-bottom: 18px; }
}
.footer-brand p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250, 246, 236, .68);
  max-width: 34ch;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 22px;
}
/* Suptilna zlatna linija ispod opisa — razdvaja od pravnih info */
.footer-brand p::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

/* Corp info kao definition list — labels left, values right (business card stil) */
.footer-corp {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin: 0;
  align-items: center;
}
.footer-corp dt {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.footer-corp dd {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(250, 246, 236, .65);
  font-variant-numeric: tabular-nums;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(250, 246, 236, .6);
  transition: color .3s, padding-left .3s;
}
.footer-col ul a:hover { color: var(--copper-light); padding-left: 6px; }

.footer-contact-line {
  display: flex; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(250, 246, 236, .06);
  font-size: 0.92rem;
}
.footer-contact-line:last-child { border-bottom: 0; }
.footer-contact-line svg {
  width: 14px; height: 14px;
  stroke: var(--copper-light); stroke-width: 2;
  fill: none; flex-shrink: 0;
  margin-top: 6px;
}
.footer-contact-line a, .footer-contact-line span { color: rgba(250, 246, 236, .7); }
.footer-contact-line a:hover { color: var(--copper-light); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250, 246, 236, .1);
  color: rgba(250, 246, 236, .6);
  transition: all .3s;
}
.footer-socials a:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(250, 246, 236, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(250, 246, 236, .45);
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(250, 246, 236, .55); transition: color .3s; }
.footer-bottom a:hover { color: var(--copper-light); }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom-links { gap: 14px 22px; }
}


/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION (Kako naručiti — 3 koraka)
   ═══════════════════════════════════════════════════════════ */
.process-section { position: relative; }
.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.process-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.process-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-dark); }
.process-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-top: 22px;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 38px 32px 36px;
  border-radius: 4px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 14, 8, 0.08);
  border-color: var(--gold);
}
.process-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.6rem;
  font-weight: 200;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  display: block;
}
.process-step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--dark);
}
.process-step-body p {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 18px;
}
.process-step-body p strong { color: var(--gold-dark); font-weight: 600; }
.process-step-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.process-step-cta:hover { background: var(--gold); color: var(--white); }
.process-step-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.process-step-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 1080px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step { padding: 32px 28px 30px; }
}
@media (max-width: 720px) {
  .process-steps { grid-template-columns: 1fr; gap: 18px; }
  .process-header { margin-bottom: 44px; }
  .process-step { padding: 30px 24px 28px; }
  .process-step-num { font-size: 3rem; margin-bottom: 14px; }
}


/* ═══════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.reviews-section { position: relative; }
.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.reviews-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.reviews-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-dark); }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: 'Barlow', sans-serif;
  font-size: .98rem;
  color: var(--gray);
}
.reviews-rating strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
}
.reviews-rating a { color: var(--gold-dark); text-decoration: none; border-bottom: 1px solid currentColor; }
.reviews-stars {
  display: inline-flex;
  gap: 4px;
}
.reviews-stars svg {
  width: 22px;
  height: 22px;
  fill: #f5b300;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 34px 30px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,14,8,0.06); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 18px; height: 18px; fill: #f5b300; }
.review-card blockquote {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  flex: 1;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.review-foot strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.review-foot small {
  display: block;
  font-size: .82rem;
  color: var(--gray);
  margin-top: 2px;
}
.reviews-cta { text-align: center; }
.reviews-cta .btn svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }

@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .reviews-grid .review-card:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - 11px); justify-self: center; }
  .review-card { padding: 30px 26px 24px; }
}
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .reviews-grid .review-card:nth-child(3) { max-width: none; justify-self: stretch; }
  .reviews-header { margin-bottom: 44px; }
  .reviews-rating { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .reviews-rating strong { font-size: 1.4rem; }
}
@media (max-width: 420px) {
  .reviews-stars svg { width: 18px; height: 18px; }
  .review-card { padding: 26px 22px 22px; }
}


/* ═══════════════════════════════════════════════════════════
   BLOG / VODIČ SECTION
   ═══════════════════════════════════════════════════════════ */
.blog-section { position: relative; }
.blog-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.blog-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.blog-header h2 em { font-style: italic; font-weight: 300; color: var(--gold-dark); }
.blog-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-top: 22px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 14, 8, 0.08);
  border-color: var(--gold);
}
a.blog-card { text-decoration: none; color: inherit; }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
a.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}
.blog-card-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .35s ease;
}
a.blog-card:hover .blog-card-link svg { transform: translateX(4px); }
.blog-card-body h3 .blog-card-subtitle,
.blog-card-body h3 em { font-style: italic; font-weight: 300; color: var(--gold-dark); }
.blog-card-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.08), rgba(139, 115, 85, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,115,85,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,115,85,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.blog-card-placeholder svg {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0.6;
}
.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.blog-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.2;
}
.blog-card-body p {
  font-size: .94rem;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}
.blog-cta { text-align: center; }

@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .blog-grid .blog-card:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - 11px); justify-self: center; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-grid .blog-card:nth-child(3) { max-width: none; justify-self: stretch; }
  .blog-header { margin-bottom: 44px; }
}


/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (za podstrane: breadcrumb + H1 + intro)
   ═══════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  padding: clamp(160px, 20vh, 240px) 0 clamp(80px, 10vw, 120px);
  background: var(--dark);
  overflow: hidden;
  color: #fff;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  /* Fade na ivicama — slika postepeno nestaje u tamno gore i dole */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Lakši overlay — samo da text bude čitljiv, ne da zatamnio sliku */
  background:
    linear-gradient(180deg, rgba(20,14,8,0.55) 0%, rgba(20,14,8,0.20) 35%, rgba(20,14,8,0.20) 65%, rgba(20,14,8,0.85) 100%);
  z-index: 1;
}

/* Tamnija varijanta za usluga strane — gušći overlay i prigušena slika */
.page-header.usluga-page-header .page-header-bg img {
  opacity: 0.55;
}
.page-header.usluga-page-header::after {
  background:
    linear-gradient(180deg, rgba(20,14,8,0.75) 0%, rgba(20,14,8,0.55) 35%, rgba(20,14,8,0.55) 65%, rgba(20,14,8,0.9) 100%);
}
.page-header-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 8px 0 14px;
  color: #fff;
}
.page-header h1 em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.page-header .gold-line { margin: 0 auto 22px; }
.page-header-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.85);
  max-width: 720px;
  margin: 0 auto;
}

/* ── Breadcrumbs (minimal, editorial) ── */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.45);
  transition: color .3s;
}
.breadcrumbs a:hover {
  color: var(--copper);
}
.breadcrumbs-sep {
  color: rgba(200, 169, 126, 0.35);
  font-size: 12px;
  font-weight: 300;
  user-select: none;
}
.breadcrumbs [aria-current="page"] {
  color: var(--copper);
}


/* ═══════════════════════════════════════════════════════════
   KATEGORIJE (4 velike kartice na /kazani-za-rakiju/)
   ═══════════════════════════════════════════════════════════ */
.kategorije-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.kategorija-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.kategorija-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20, 14, 8, 0.10);
  border-color: var(--gold);
}
.kategorija-card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.kategorija-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.kategorija-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.kategorija-card:hover .kategorija-card-img img {
  transform: scale(1.05);
}
.kategorija-card-body {
  padding: 28px 30px 30px;
  position: relative;
}
.kategorija-card-num {
  position: absolute;
  top: 28px; right: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.kategorija-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  color: var(--dark);
  padding-right: 40px;
}
.kategorija-card-body p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}
.kategorija-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.kategorija-card-sizes li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.08);
  padding: 5px 11px;
  border-radius: 999px;
}
.kategorija-card .link-cta {
  font-size: 12px;
}

@media (max-width: 880px) {
  .kategorije-grid { grid-template-columns: 1fr; gap: 22px; }
}


/* ═══════════════════════════════════════════════════════════
   PRETRAGA PO VELIČINI (size chips)
   ═══════════════════════════════════════════════════════════ */
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.size-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  background: var(--cream);
  border: 1px solid transparent;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s var(--ease-out), box-shadow .35s;
}
.size-chip:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 14, 8, 0.08);
}
.size-chip-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color .3s;
}
.size-chip:hover .size-chip-num { color: var(--gold-dark); }
.size-chip-label {
  display: block;
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.size-chip--soon {
  opacity: .6;
  cursor: help;
  background: var(--cream);
}
.size-chip--soon:hover {
  background: var(--cream);
  border-color: transparent;
  transform: none;
  box-shadow: none;
}
.size-chip--soon .size-chip-num { color: var(--gray); }
.size-chip--soon:hover .size-chip-num { color: var(--gray); }
.size-chip--soon .size-chip-label { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════
   GUIDE (Kako odabrati pravi kazan)
   ═══════════════════════════════════════════════════════════ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-step {
  background: var(--white);
  padding: 36px 30px 32px;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease;
}
.guide-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 14, 8, 0.07);
}
.guide-step-num {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 200;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.guide-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--dark);
}
.guide-step p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 18px;
}
.guide-step p strong { color: var(--gold-dark); }

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.guide-table th {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}
.guide-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  color: var(--dark);
}
.guide-step small {
  font-size: 11px;
  color: var(--gray);
  font-style: italic;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.guide-list li:last-child { border-bottom: 0; }
.guide-list strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.guide-list span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
}

@media (max-width: 980px) {
  .guide-grid { grid-template-columns: 1fr; gap: 22px; }
}


/* ═══════════════════════════════════════════════════════════
   TRUST GRID (na podstranama — 6 statistika)
   ═══════════════════════════════════════════════════════════ */
.trust-header {
  text-align: center;
  margin-bottom: 50px;
}
.trust-header h2 em { color: var(--copper); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-stat {
  text-align: center;
  padding: 22px 12px;
  border: 1px solid rgba(200, 169, 126, 0.18);
  transition: border-color .35s, background .35s;
}
.trust-stat:hover {
  border-color: var(--copper);
  background: rgba(200, 169, 126, 0.04);
}
.trust-stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.trust-stat-num sup { font-size: 0.5em; vertical-align: top; margin-left: 2px; }
.trust-stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT CTA (final CTA na podstranama)
   ═══════════════════════════════════════════════════════════ */
.product-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.product-cta-inner h2 em { color: var(--copper); }
.product-cta-inner .gold-line { margin: 0 auto 22px; }
.product-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.78);
  margin-bottom: 32px;
}
.product-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .product-cta-actions { flex-direction: column; }
  .product-cta-actions .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   KATEGORIJE STRANICA — V2 (editorial zigzag)
   ═══════════════════════════════════════════════════════════ */

/* ── Compact hero ── */
.kategorije-hero {
  position: relative;
  padding: clamp(170px, 22vh, 250px) 0 clamp(70px, 9vw, 110px);
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.kategorije-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kategorije-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.04);
  animation: hero-kenburns 14s ease-out forwards;
}
.kategorije-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,8,0.6) 0%, rgba(20,14,8,0.85) 100%),
    radial-gradient(circle at 80% 20%, rgba(200,169,126,0.15) 0%, transparent 50%);
  z-index: 1;
}
.kategorije-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.kategorije-hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.kategorije-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: #fff;
}
.kategorije-hero-title em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.kategorije-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.82);
  max-width: 680px;
  margin: 0 0 38px;
}
.kategorije-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(200, 169, 126, 0.22);
}
.kategorije-hero-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.78);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 999px;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}
.kategorije-hero-nav a:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 540px) {
  .kategorije-hero-nav { gap: 8px; }
  .kategorije-hero-nav a { padding: 8px 14px; font-size: 10.5px; }
}


/* ── Kategorija feature sekcija (editorial zigzag) ── */
.kategorija-feature {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.kategorija-feature--cream {
  background: var(--cream);
}
.kategorija-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.kategorija-feature-grid--reverse .kategorija-feature-image {
  grid-column: 2;
  grid-row: 1;
}
.kategorija-feature-grid--reverse .kategorija-feature-content {
  grid-column: 1;
  grid-row: 1;
}

/* Image side */
.kategorija-feature-image {
  position: relative;
}
.kategorija-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.kategorija-feature-bignum {
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 200;
  line-height: 0.85;
  color: rgba(139, 115, 85, 0.10);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.kategorija-feature--cream .kategorija-feature-bignum {
  color: rgba(139, 115, 85, 0.08);
}
.kategorija-feature-grid--reverse .kategorija-feature-bignum {
  right: auto;
  left: -10px;
}

/* Content side */
.kategorija-feature-content {
  position: relative;
}
.kategorija-feature-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 12px 0 18px;
  color: var(--dark);
}
.kategorija-feature-content h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.kategorija-feature-content .gold-line {
  margin-bottom: 22px;
}
.kategorija-feature-content .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 500;
}
.kategorija-feature-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
}
.kategorija-feature-content p strong {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Specs row (3 mali specs) */
.kategorija-feature-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0;
  margin-bottom: 26px;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.kategorija-feature-specs > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kategorija-spec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.kategorija-spec-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.005em;
}

/* Sizes chips */
.kategorija-feature-sizes-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.kategorija-feature-sizes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kategorija-feature-sizes-chips a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: var(--white);
  border: 1px solid rgba(139, 115, 85, 0.22);
  border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s, transform .25s;
}
.kategorija-feature-sizes-chips a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.kategorija-feature--cream .kategorija-feature-sizes-chips a {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 980px) {
  .kategorija-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kategorija-feature-grid--reverse .kategorija-feature-image,
  .kategorija-feature-grid--reverse .kategorija-feature-content {
    grid-column: 1;
  }
  .kategorija-feature-grid--reverse .kategorija-feature-image { grid-row: 1; }
  .kategorija-feature-grid--reverse .kategorija-feature-content { grid-row: 2; }
  .kategorija-feature-bignum {
    top: -20px;
    font-size: clamp(6rem, 18vw, 10rem);
  }
}
@media (max-width: 600px) {
  .kategorija-feature-specs { grid-template-columns: 1fr; gap: 14px; }
}


/* ═══════════════════════════════════════════════════════════
   KATEGORIJE V3 — Product catalog grid (Apple/Lego inspirisano)
   ═══════════════════════════════════════════════════════════ */

/* Compact hero */
.catalog-hero {
  background: var(--cream);
  padding: clamp(160px, 20vh, 220px) 0 clamp(50px, 7vw, 80px);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.catalog-hero .breadcrumbs a { color: rgba(20, 14, 8, 0.45); }
.catalog-hero .breadcrumbs a:hover { color: var(--gold-dark); }
.catalog-hero .breadcrumbs-sep { color: rgba(139, 115, 85, 0.4); }
.catalog-hero .breadcrumbs [aria-current="page"] { color: var(--gold-dark); }

.catalog-hero-flex {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}
.catalog-hero-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 8px 0 18px;
  color: var(--dark);
}
.catalog-hero-text h1 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.catalog-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 520px;
  margin: 0;
}
.catalog-hero-text p strong { color: var(--gold-dark); font-weight: 600; }

.catalog-hero-stats {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}
.catalog-hero-stats > div {
  text-align: right;
}
.catalog-hero-stats strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}
.catalog-hero-stats span {
  display: block;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 880px) {
  .catalog-hero-flex { grid-template-columns: 1fr; gap: 32px; }
  .catalog-hero-stats { justify-content: flex-start; gap: 24px; }
  .catalog-hero-stats > div { text-align: left; }
}


/* ── Filter tabs (sticky pri skrolu) ── */
.catalog-filter {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  box-shadow: 0 4px 18px rgba(20, 14, 8, 0.04);
}
.catalog-filter-inner {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catalog-filter-inner::-webkit-scrollbar { display: none; }
.catalog-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.catalog-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.catalog-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.catalog-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(139, 115, 85, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.catalog-tab.active .catalog-tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}


/* ── Catalog section ── */
.catalog-section {
  padding: clamp(50px, 7vw, 80px) 0 clamp(80px, 10vw, 120px);
  background: var(--white);
}
.catalog-group {
  margin-bottom: 70px;
}
.catalog-group:last-child { margin-bottom: 0; }

.catalog-group-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold);
}
.catalog-group-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.catalog-group-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--dark);
}
.catalog-group-head p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
}
.catalog-group-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}


/* ── Product grid ── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.catalog-product {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.catalog-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 14, 8, 0.10);
  border-color: var(--gold);
}
.catalog-product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.catalog-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.catalog-product:hover .catalog-product-img img {
  transform: scale(1.05);
}
.catalog-product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 14, 8, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.catalog-product-body {
  padding: 18px 20px;
  position: relative;
}
.catalog-product-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.catalog-product-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 12px;
}
.catalog-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s;
}
.catalog-product:hover .catalog-product-cta {
  gap: 10px;
}
.catalog-product-cta svg {
  width: 12px; height: 12px;
  stroke: currentColor; stroke-width: 2; fill: none;
}

@media (max-width: 1080px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .catalog-group-head {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }
  .catalog-group-count { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 420px) {
  .catalog-product-body { padding: 14px 16px; }
  .catalog-product-num { font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════
   KATEGORIJE V4 — Magazine / editorial article style
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── Magazine cover hero ── */
.mag-hero {
  position: relative;
  padding: clamp(180px, 24vh, 280px) 0 clamp(80px, 11vw, 130px);
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.mag-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mag-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.mag-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,8,0.5) 0%, rgba(20,14,8,0.92) 100%);
  z-index: 1;
}
.mag-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}
.mag-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}
.mag-hero-issue { color: var(--copper); }
.mag-hero-divider { color: rgba(200, 169, 126, 0.5); }
.mag-hero-title {
  font-family: 'Playfair Display', 'Barlow Condensed', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: #fff;
}
.mag-hero-title em {
  color: var(--copper);
  font-style: italic;
  font-weight: 400;
}
.mag-hero-deck {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
}
.mag-hero-inner .breadcrumbs {
  margin-bottom: 0;
  justify-content: center;
}


/* ── Article container ── */
.mag-article {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}

/* Prose width — optimal reading column */
.mag-prose {
  max-width: 680px;
  margin: 0 auto;
}
.mag-prose p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 1.6em;
}
.mag-prose p em {
  font-style: italic;
  color: var(--gold-dark);
}

/* Lead paragraph (intro) */
.mag-lead {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  line-height: 1.65 !important;
  font-weight: 400;
}

/* Drop cap (prvo slovo paragrafa veliko) */
.mag-dropcap {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.5em;
  line-height: 0.85;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0.06em 0.12em -0.05em 0;
  padding: 0.06em 0 0;
}

/* Lead paragraph drop cap je veći */
.mag-lead .mag-dropcap {
  font-size: 4em;
}


/* ── Intro section ── */
.mag-intro {
  padding-bottom: clamp(40px, 6vw, 70px);
}


/* ── Section divider (gold ornament) ── */
.mag-divider {
  border: 0;
  height: 1px;
  background: rgba(139, 115, 85, 0.18);
  max-width: 200px;
  margin: clamp(50px, 7vw, 90px) auto;
  position: relative;
}
.mag-divider::after {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 16px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.1em;
}


/* ── Section header (01 / Naziv) ── */
.mag-section {
  padding: clamp(20px, 3vw, 40px) 0;
}
.mag-section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.mag-section-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  position: relative;
  padding: 0 18px;
}
.mag-section-num::before,
.mag-section-num::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.mag-section-num::before { right: 100%; }
.mag-section-num::after  { left: 100%; }
.mag-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 0 0 12px;
}
.mag-section-tag {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.005em;
}


/* ── Figure (image + caption) ── */
.mag-figure {
  margin: 0 auto clamp(40px, 5vw, 60px);
  max-width: 1100px;
}
.mag-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(20, 14, 8, 0.12);
}
.mag-figure figcaption {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-style: italic;
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mag-figure--right {
  max-width: 760px;
}
.mag-figure--full {
  max-width: 1280px;
}


/* ── Pull quote ── */
.mag-pullquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gold-dark);
  text-align: center;
  margin: 2em auto;
  padding: 1.2em 0;
  max-width: 580px;
  position: relative;
  border-top: 1px solid rgba(139, 115, 85, 0.25);
  border-bottom: 1px solid rgba(139, 115, 85, 0.25);
}


/* ── Sizes (chips) na kraju svake sekcije ── */
.mag-sizes {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 30px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.mag-sizes-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.mag-sizes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mag-sizes-chips a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: var(--white);
  border: 1px solid rgba(139, 115, 85, 0.22);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.mag-sizes-chips a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}


/* ── Epilog / CTA ── */
.mag-epilog {
  text-align: center;
  padding-top: clamp(40px, 5vw, 60px);
}
.mag-epilog-lead {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem) !important;
  font-style: italic;
  line-height: 1.55 !important;
  color: var(--dark);
  margin-bottom: 0 !important;
}
.mag-epilog-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: clamp(30px, 4vw, 44px) 0 clamp(40px, 5vw, 56px);
}
.mag-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-dark);
  line-height: 1.5;
}
.mag-signature span {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 0.5;
  letter-spacing: 0.1em;
}
.mag-signature small {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}


/* Responsive */
@media (max-width: 720px) {
  .mag-prose { padding: 0 4px; }
  .mag-prose p { font-size: 1rem; }
  .mag-lead { font-size: 1.15rem !important; }
  .mag-dropcap { font-size: 3.6em; }
  .mag-pullquote { font-size: 1.3rem; padding: 1em 0; margin: 1.5em auto; }
  .mag-figure img { aspect-ratio: 4 / 3; }
}
@media (max-width: 540px) {
  .mag-hero-meta { flex-direction: column; gap: 6px; }
  .mag-hero-divider { display: none; }
  .mag-epilog-cta { flex-direction: column; }
  .mag-epilog-cta .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   KATEGORIJE V5 — Horizontal scroll rails (Netflix-style)
   ═══════════════════════════════════════════════════════════ */

/* Compact hero */
.rail-hero {
  background: var(--cream);
  padding: clamp(160px, 20vh, 220px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--border);
}
.rail-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 12px 0 16px;
  color: var(--dark);
}
.rail-hero h1 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.rail-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 580px;
  margin: 0;
}


/* ── Rail row (one per kategorija) ── */
.rail-row {
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}
.rail-row:nth-child(odd of .rail-row) {
  background: var(--white);
}
.rail-row:nth-child(even of .rail-row) {
  background: var(--cream);
}

.rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.rail-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.rail-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--dark);
}
.rail-head p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
}
.rail-count {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.1);
  border-radius: 999px;
  vertical-align: middle;
}

/* Arrow controls */
.rail-controls {
  display: flex;
  gap: 8px;
}
.rail-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s, opacity .3s;
}
.rail-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.rail-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.rail-btn.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}


/* ── Rail track (horizontal scroll container) ── */
.rail-track-wrap {
  position: relative;
  /* Allow track to scroll past container max-width — full bleed */
}
.rail-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px clamp(20px, 4vw, 40px) 22px;
  scroll-padding-left: clamp(20px, 4vw, 40px);
  /* Hide scrollbar */
  scrollbar-width: none;
}
.rail-track::-webkit-scrollbar { display: none; }


/* ── Rail card ── */
.rail-card {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 280px);
  scroll-snap-align: start;
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.rail-row:nth-child(odd of .rail-row) .rail-card {
  background: var(--cream);
}
.rail-row:nth-child(even of .rail-row) .rail-card {
  background: var(--white);
}
.rail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(20, 14, 8, 0.12);
  border-color: var(--gold);
}
.rail-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.rail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.rail-card:hover .rail-card-img img {
  transform: scale(1.06);
}
.rail-card-body {
  padding: 18px 20px 22px;
  position: relative;
}
.rail-card-size {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -0.01em;
}
.rail-card-name {
  display: block;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.rail-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(20, 14, 8, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s, transform .35s, background .3s;
}
.rail-card:hover .rail-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--gold);
}
.rail-card-arrow svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Responsive */
@media (max-width: 768px) {
  .rail-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .rail-controls { justify-content: flex-end; }
  .rail-card { width: 60vw; max-width: 240px; }
}
@media (max-width: 540px) {
  .rail-card { width: 70vw; }
  .rail-controls .rail-btn { width: 40px; height: 40px; }
}


/* ═══════════════════════════════════════════════════════════
   COMPARISON TABELA — side-by-side poređenje 4 tipa kazana
   ═══════════════════════════════════════════════════════════ */
.compare-section { background: #fff; }
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 30px;
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Barlow', sans-serif;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--dark);
}
.compare-table thead th {
  padding: 22px 18px 22px;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.compare-th-feature {
  text-align: left !important;
}
.compare-th-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.compare-th-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--dark);
  line-height: 1.2;
}
.compare-th-highlight {
  background: var(--dark) !important;
  color: var(--cream-warm) !important;
  position: relative;
}
.compare-th-highlight .compare-th-num { color: var(--copper); }
.compare-th-highlight .compare-th-name { color: #fff; }
.compare-th-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(even) td {
  background: rgba(139, 115, 85, 0.025);
}
.compare-td-feature {
  text-align: left !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.compare-yes {
  display: inline-flex;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.compare-no {
  color: var(--gray);
  opacity: 0.4;
  font-size: 1.2rem;
}
.compare-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}
.compare-tr-cta td {
  padding-top: 18px;
  border-bottom: 0;
}
.compare-tr-cta .link-cta {
  font-size: 11.5px;
}

@media (max-width: 768px) {
  .compare-table-wrap {
    margin: 30px -20px 0;
    padding: 0 20px;
  }
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 0.88rem; }
}


/* ═══════════════════════════════════════════════════════════
   KAZANI GALERIJA — "Kazani u akciji"
   ═══════════════════════════════════════════════════════════ */
.kazani-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.kazani-gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--dark);
  transition: transform .35s var(--ease-out);
}
.kazani-gallery-item:hover {
  transform: translateY(-4px);
}
.kazani-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), opacity .35s;
}
.kazani-gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}
.kazani-gallery-meta {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0);
  background: linear-gradient(180deg, transparent 0%, rgba(20, 14, 8, 0.85) 100%);
  padding: 24px 14px 14px;
  margin: 0 -14px -14px;
  transform: translateY(8px);
  transition: color .35s, transform .35s;
}
.kazani-gallery-item:hover .kazani-gallery-meta {
  color: rgba(244, 237, 224, 0.95);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .kazani-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kazani-gallery-meta { color: rgba(244, 237, 224, 0.95); transform: translateY(0); }
}
@media (max-width: 480px) {
  .kazani-gallery-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   KAZANI FAQ — pitanja specifična za izbor kazana
   ═══════════════════════════════════════════════════════════ */
.kazani-faq-section { background: var(--white); }
.kazani-faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.kazani-faq-aside {
  position: sticky;
  top: 110px;
}
.kazani-faq-aside h2 em { color: var(--gold-dark); }
.kazani-faq-aside p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 22px 0 28px;
}
.kazani-faq-aside .link-cta {
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  text-transform: none;
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .kazani-faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .kazani-faq-aside { position: static; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE — pojedinačna kazan strana
   ═══════════════════════════════════════════════════════════ */

/* Page header za product strane (manji od listing strana) */
.product-page-header {
  padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 90px);
}
.product-page-header h1 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  letter-spacing: -0.005em;
}


/* ── Product Hero (slika levo, info desno) ── */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.product-hero-image {
  position: relative;
}
.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-hero-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 14px;
  color: var(--dark);
}
.product-hero-content h2 em { color: var(--gold-dark); font-style: italic; font-weight: 300; }
.product-hero-content .gold-line { margin-bottom: 22px; }
.product-hero-content > p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
}

/* Quick specs (4 stavke u 2x2 grid) */
.product-quick-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
  padding: 22px 0;
}
.product-quick-specs > li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-spec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.quick-spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.005em;
}

.product-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-hero-cta .btn { flex: 1; justify-content: center; }
}


/* ── Product description (long-form intro) ── */
.product-description {
  background: var(--white);
}
.product-description-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.product-description-inner p {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.8;
  color: var(--gray);
}


/* ── Specs table (proizvod) ── */
.specs-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  overflow-x: auto;
}
.specs-table-product {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}
.specs-table-product th,
.specs-table-product td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--dark);
}
.specs-table-product thead th {
  background: var(--dark);
  color: var(--cream-warm);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.specs-table-product thead th:first-child {
  color: var(--copper);
}
.specs-table-product tbody tr:nth-child(even) td {
  background: var(--cream);
}
.specs-table-product tbody tr:hover td {
  background: rgba(139, 115, 85, 0.06);
}
.specs-table-product td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dark);
}
.specs-table-product td:nth-child(2) {
  color: var(--gold-dark);
}
.specs-table-product td strong {
  color: var(--gold-dark);
  font-weight: 600;
}


/* ── Product features (4 kartice — konstrukcija) ── */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.product-feature-card {
  background: var(--cream);
  padding: 32px 28px 28px;
  border-left: 3px solid var(--gold);
  transition: transform .35s var(--ease-out), background .35s;
}
.product-feature-card:hover {
  transform: translateY(-4px);
  background: var(--white);
}
.product-feature-num {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.product-feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  color: var(--dark);
}
.product-feature-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}
.product-features-foot {
  text-align: center;
  max-width: 760px;
  margin: 30px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.product-features-foot p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gold-dark);
  margin: 0;
}

@media (max-width: 880px) {
  .product-features-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ── Product gallery (3 slike) ── */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--white);
}
.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .product-gallery-grid { grid-template-columns: 1fr; gap: 14px; }
}


/* ── Related products (drugi modeli) ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 14, 8, 0.08);
  border-color: var(--gold);
}
.related-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream);
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.related-card:hover .related-card-img img {
  transform: scale(1.05);
}
.related-card-body {
  padding: 22px 24px 24px;
}
.related-card-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(139, 115, 85, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.related-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 10px;
  color: var(--dark);
}
.related-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; gap: 14px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE V2 — sticky gallery levo + scrollable info desno
   ═══════════════════════════════════════════════════════════ */

/* Compact top — samo breadcrumb + spacing */
.product-page-top {
  padding: clamp(140px, 18vh, 200px) 0 clamp(20px, 3vw, 32px);
  background: var(--white);
}
.product-page-top .breadcrumbs a { color: rgba(20, 14, 8, 0.45); }
.product-page-top .breadcrumbs a:hover { color: var(--gold-dark); }
.product-page-top .breadcrumbs-sep { color: rgba(139, 115, 85, 0.4); }
.product-page-top .breadcrumbs [aria-current="page"] { color: var(--gold-dark); }
.product-page-top .breadcrumbs { margin: 0; }


/* Detail section */
.product-detail {
  padding: clamp(60px, 9vw, 110px) 0 clamp(20px, 3vw, 36px);
  background: var(--white);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}


/* ── Left: Premium gallery ── */
.product-gallery-col {
  position: relative;
  min-width: 0;
}
.product-gallery-sticky {
  position: sticky;
  top: 30px;
}

/* Glavna slika — fixed container ratio, slika UVEK cela vidljiva (contain), bez prevelikog praznog prostora */
.product-gallery-main {
  margin: 0;
  background: var(--cream);
  border: 1px solid rgba(139, 115, 85, 0.12);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: zoom-in;
  transition: border-color .25s;
}
.product-gallery-main:hover {
  border-color: rgba(139, 115, 85, 0.3);
}
/* Suptilna ikonica zoom-in u uglu da naznači da je klikabilno */
.product-gallery-main::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 18, 14, 0.65) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") no-repeat center / 18px 18px;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.product-gallery-main:hover::after {
  opacity: 1;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: opacity .35s ease;
}

/* Thumbnail-ovi — flex sa horizontalnim scroll-om kad se ne uklope */
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 115, 85, 0.35) transparent;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.product-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}
.product-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(139, 115, 85, 0.35);
  border-radius: 4px;
}

.product-thumb {
  flex: 0 0 auto;
  width: clamp(72px, 14vw, 110px);
  aspect-ratio: 1 / 1;
  display: block;
  padding: 6px;
  background: var(--cream);
  border: 2px solid rgba(139, 115, 85, 0.14);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  transition: transform .25s;
}
.product-thumb:hover {
  border-color: rgba(139, 115, 85, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(139, 115, 85, 0.12);
}
.product-thumb:hover img {
  transform: scale(1.05);
}
.product-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 6px 14px rgba(139, 115, 85, 0.2);
}
.product-thumb.is-active img {
  transform: none;
}

@media (max-width: 540px) {
  .product-gallery-main { aspect-ratio: 1 / 1; }
}


/* ── Right: Info column ── */
.product-info-col {
  min-width: 0;
}
.product-info-cat {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(139, 115, 85, 0.08);
  color: var(--gold-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.product-info-col h1,
.product-info-col h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 12px 0 18px;
  color: var(--dark);
}
.product-info-col h1 em,
.product-info-col h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.product-info-head .gold-line { margin-bottom: 24px; }

.product-info-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--dark);
  margin: 0 0 18px;
  font-weight: 500;
}
.product-info-secondary {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 32px;
}


/* Quick specs */
.product-info-quickspecs {
  list-style: none;
  padding: 24px 26px;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.product-info-quickspecs > li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Reuse .quick-spec-label and .quick-spec-val from product-hero */


/* Trust statements (zamena za quick-specs) — 4 checkmark stavki */
.product-info-trust {
  list-style: none;
  padding: 22px 26px;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.product-info-trust > li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--dark);
}
.product-info-trust > li > svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.product-info-trust > li > span {
  font-weight: 500;
  letter-spacing: 0.005em;
}


/* Actions */
.product-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.product-info-actions .btn { flex: 1 1 auto; min-width: 180px; justify-content: center; }


/* Detailed sections */
.product-info-sections {
  margin-bottom: 50px;
}
.product-info-section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
.product-info-section:last-child { border-bottom: 0; padding-bottom: 0; }
.product-info-section h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  color: var(--dark);
}
.product-info-section h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.product-info-section p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
  padding-left: 48px;
}


/* Specs table within info column */
.product-info-specs {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.product-info-specs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--dark);
  margin: 0 0 20px;
}
.product-specs-table-wrap {
  overflow-x: auto;
}
.product-specs-table {
  width: 100%;
  min-width: 460px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}
.product-specs-table th,
.product-specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--dark);
}
.product-specs-table thead th {
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
}
.product-specs-table tbody tr:nth-child(even) td {
  background: rgba(139, 115, 85, 0.025);
}
.product-specs-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.product-specs-table td:nth-child(2) {
  color: var(--gold-dark);
  font-weight: 500;
}
.product-specs-table td strong {
  color: var(--gold-dark);
  font-weight: 600;
}


/* Responsive */
@media (max-width: 980px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery-sticky { position: static; }
  .product-info-quickspecs { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 540px) {
  .product-info-actions .btn { width: 100%; min-width: 0; }
  .product-info-section h3 { font-size: 1.1rem; gap: 12px; }
  .product-info-section h3 span { width: 28px; height: 28px; font-size: 11px; }
  .product-info-section p { padding-left: 0; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT TABS — Konstrukcija / Specifikacije (kompaktna verzija)
   ═══════════════════════════════════════════════════════════ */

.product-tabs {
  margin-top: 8px;
}

/* Tab nav */
.product-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: color .3s, border-color .3s;
}
.product-tab:hover {
  color: var(--gold-dark);
}
.product-tab.is-active {
  color: var(--dark);
  border-bottom-color: var(--gold);
}
.product-tab-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}


/* Tab panels (default hidden, show on .is-active) */
.product-tab-panel {
  display: none;
  animation: prod-tab-fade .35s var(--ease-out);
}
.product-tab-panel.is-active {
  display: block;
}
@keyframes prod-tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Konstrukcija — 2x2 grid feature kartice (kompaktno) */
.product-tab-panel .product-tab-feature {
  padding: 14px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.product-tab-panel .product-tab-feature:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.product-tab-feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
  color: var(--gold-dark);
}
.product-tab-feature p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}


/* Specifikacije — kompaktna tabela u tab-u, dark stil iz V3 */
.product-tab-table-wrap {
  overflow-x: auto;
  background: var(--dark);
  margin: 0 -2px;
}
.product-tab-table {
  width: 100%;
  min-width: 460px;
  border-collapse: separate;
  border-spacing: 0;
}
.product-tab-table th,
.product-tab-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 169, 126, 0.14);
  font-size: 0.9rem;
}
.product-tab-table thead th {
  background: rgba(200, 169, 126, 0.06);
  border-bottom: 2px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 14px 18px;
}
.product-tab-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream-warm);
}
.product-tab-table tbody td:nth-child(2) {
  color: rgba(244, 237, 224, 0.65);
}
.product-tab-table tbody td:nth-child(3) {
  color: rgba(244, 237, 224, 0.5);
  font-size: 0.85rem;
}
.product-tab-table tbody td strong {
  color: var(--copper);
  font-weight: 600;
}
.product-tab-table tbody tr:hover td {
  background: rgba(200, 169, 126, 0.04);
}

@media (max-width: 540px) {
  .product-tab { padding: 12px 14px; font-size: 0.85rem; }
  .product-tab-num { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE V7 — Bez sticky galerije, više whitespace-a
   ═══════════════════════════════════════════════════════════ */

/* ── Intro block (text levo + key info card desno) ── */
.prod-intro-block {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--white);
}
.prod-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text strana */
.prod-intro-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 12px 0 22px;
  color: var(--dark);
}
.prod-intro-text h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.prod-intro-text .gold-line { margin-bottom: 32px; }
.prod-intro-text .prod-intro-lead {
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 28px;
  font-weight: 500;
}
.prod-intro-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray);
  margin: 0;
}

/* Key info card desno */
.prod-intro-card {
  background: var(--cream);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  position: sticky;
  top: 30px;
}
.prod-intro-card-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-intro-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prod-intro-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prod-intro-specs span {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.prod-intro-specs strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.005em;
}

.prod-intro-card-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-intro-card-cta .btn { width: 100%; justify-content: center; }
.prod-intro-card-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.005em;
  transition: color .3s;
}
.prod-intro-card-phone:hover { color: var(--dark); }
.prod-intro-card-phone svg {
  width: 16px; height: 16px;
  stroke: var(--gold); stroke-width: 2; fill: none;
}

@media (max-width: 980px) {
  .prod-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .prod-intro-card { position: static; }
}


/* ── Featured image (full-width breakout) ── */
.prod-image-feature {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--cream);
}
.prod-image-feature-frame {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}
.prod-image-feature-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}


/* ── Konstrukcija — 2x2 grid feature cards (sa puno space-a) ── */
.prod-construction {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--white);
}
.prod-construction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 4vw, 60px);
  max-width: 1080px;
  margin: 0 auto;
}
.prod-construction-card {
  padding: 12px 0;
}
.prod-construction-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
}
.prod-construction-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.prod-construction-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 768px) {
  .prod-construction-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ── Galerija (3 slike, sa space-om) ── */
.prod-gallery {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--cream);
}
.prod-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.prod-gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--white);
}
.prod-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.prod-gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .prod-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* Container --wide override (za prod-image-feature) */
.container.container--wide {
  max-width: 1400px;
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — DVE KARTICE: Konstrukcija + Specifikacije (side-by-side)
   ═══════════════════════════════════════════════════════════ */
.prod-cards-row {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}
.prod-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

/* Bazna kartica */
.prod-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
}
.prod-card--dark {
  background: var(--dark);
  color: var(--cream-warm);
}

.prod-card-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-card--dark .prod-card-head {
  border-bottom-color: rgba(200, 169, 126, 0.18);
}
.prod-card-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-card--dark .prod-card-eyebrow {
  color: var(--copper);
}
.prod-card-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--dark);
}
.prod-card--dark .prod-card-head h2 {
  color: #fff;
}
.prod-card-head h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.prod-card--dark .prod-card-head h2 em {
  color: var(--copper);
}

.prod-card-body {
  flex: 1;
}


/* Konstrukcija — feature lista (broj + tekst) */
.prod-card-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.prod-card-feature:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.prod-card-feature:first-child {
  padding-top: 0;
}
.prod-card-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-card-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
  color: var(--dark);
  line-height: 1.25;
}
.prod-card-feature p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}


/* Specifikacije tabela — dark stil */
.prod-card-table-wrap {
  overflow-x: auto;
}
.prod-card-table {
  width: 100%;
  min-width: 360px;
  border-collapse: separate;
  border-spacing: 0;
}
.prod-card-table th,
.prod-card-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 169, 126, 0.14);
  font-size: 0.9rem;
}
.prod-card-table thead th {
  background: rgba(200, 169, 126, 0.05);
  border-bottom: 2px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 12px 14px;
}
.prod-card-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-warm);
}
.prod-card-table tbody td:nth-child(2) {
  color: rgba(244, 237, 224, 0.65);
}
.prod-card-table tbody td:nth-child(3) {
  color: rgba(244, 237, 224, 0.45);
  font-size: 0.85rem;
}
.prod-card-table tbody td strong {
  color: var(--copper);
  font-weight: 600;
}


/* Responsive */
@media (max-width: 980px) {
  .prod-cards-grid { grid-template-columns: 1fr; gap: 22px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE V3 — Apple-style full bleed + alternating sections
   ═══════════════════════════════════════════════════════════ */

/* ── Full-bleed hero ── */
.prod-hero {
  position: relative;
  min-height: 720px;
  height: 92vh;
  max-height: 880px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
}
.prod-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prod-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.prod-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,0.4) 0%, rgba(20,14,8,0.4) 40%, rgba(20,14,8,0.92) 100%);
  z-index: 1;
}
.prod-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.prod-hero-inner .breadcrumbs { margin-bottom: 28px; }
.prod-hero-inner .breadcrumbs a { color: rgba(255, 255, 255, 0.5); }
.prod-hero-inner .breadcrumbs a:hover { color: var(--copper); }
.prod-hero-inner .breadcrumbs-sep { color: rgba(200, 169, 126, 0.4); }
.prod-hero-inner .breadcrumbs [aria-current="page"] { color: var(--copper); }
.prod-hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.prod-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: #fff;
}
.prod-hero h1 em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.prod-hero-deck {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.85);
  max-width: 560px;
  margin: 0 0 36px;
}
.prod-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 540px) {
  .prod-hero { min-height: 600px; height: auto; padding: 140px 0 60px; }
  .prod-hero-actions { flex-direction: column; width: 100%; }
  .prod-hero-actions .btn { width: 100%; justify-content: center; }
}


/* ── Intro story ── */
.prod-intro {
  background: var(--white);
  padding: clamp(70px, 9vw, 110px) 0;
}
.prod-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.prod-intro-lead {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.prod-intro-inner p:not(.prod-intro-lead) {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray);
  margin: 0 0 20px;
}


/* ── Feature alternating sections ── */
.prod-feature {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--white);
}
.prod-feature--cream {
  background: var(--cream);
}
.prod-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.prod-feature-grid--reverse .prod-feature-image {
  grid-column: 2;
  grid-row: 1;
}
.prod-feature-grid--reverse .prod-feature-text {
  grid-column: 1;
  grid-row: 1;
}

.prod-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.prod-feature--cream .prod-feature-image img {
  background: var(--white);
}

.prod-feature-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.prod-feature-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: var(--dark);
}
.prod-feature-text h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.prod-feature-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 18px;
}
.prod-feature-text p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .prod-feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .prod-feature-grid--reverse .prod-feature-image,
  .prod-feature-grid--reverse .prod-feature-text {
    grid-column: 1;
  }
  .prod-feature-grid--reverse .prod-feature-image { grid-row: 1; }
  .prod-feature-grid--reverse .prod-feature-text { grid-row: 2; }
}


/* ── Specs (dark) ── */
.prod-specs {
  background: var(--dark);
  color: var(--cream-warm);
  padding: clamp(70px, 9vw, 120px) 0;
}
.prod-specs-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.prod-specs-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.prod-specs-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff;
}
.prod-specs-head h2 em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}

.prod-specs-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  overflow-x: auto;
}
.prod-specs-table {
  width: 100%;
  min-width: 540px;
  border-collapse: separate;
  border-spacing: 0;
}
.prod-specs-table th,
.prod-specs-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 169, 126, 0.14);
  font-size: 0.96rem;
}
.prod-specs-table thead th {
  background: rgba(200, 169, 126, 0.05);
  border-bottom: 2px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.prod-specs-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-warm);
}
.prod-specs-table tbody td:nth-child(2) {
  color: rgba(244, 237, 224, 0.65);
}
.prod-specs-table tbody td:nth-child(3) {
  color: rgba(244, 237, 224, 0.5);
  font-size: 0.92rem;
}
.prod-specs-table tbody td strong {
  color: var(--copper);
  font-weight: 600;
}
.prod-specs-table tbody tr:hover td {
  background: rgba(200, 169, 126, 0.04);
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE V4 — Side nav (sticky) + scrollable content
   ═══════════════════════════════════════════════════════════ */

/* ── Compact top (just breadcrumb) ── */
.prod4-top {
  padding: clamp(140px, 18vh, 200px) 0 clamp(20px, 3vw, 32px);
  background: var(--white);
}
.prod4-top .breadcrumbs { margin: 0; }
.prod4-top .breadcrumbs a { color: rgba(20, 14, 8, 0.45); }
.prod4-top .breadcrumbs a:hover { color: var(--gold-dark); }
.prod4-top .breadcrumbs-sep { color: rgba(139, 115, 85, 0.4); }
.prod4-top .breadcrumbs [aria-current="page"] { color: var(--gold-dark); }


/* ── Featured big image (full bleed) ── */
.prod4-feature-image {
  background: var(--cream);
  overflow: hidden;
}
.prod4-feature-image img {
  width: 100%;
  height: clamp(400px, 60vh, 720px);
  object-fit: cover;
  display: block;
}


/* ── Title block (centered, white, after image) ── */
.prod4-title-block {
  padding: clamp(50px, 7vw, 80px) 0 clamp(40px, 5vw, 60px);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.prod4-title-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.prod4-cat {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.prod4-title-meta h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--dark);
}
.prod4-title-meta h1 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}

.prod4-title-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
}
.prod4-quick-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.prod4-quick-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.prod4-quick-meta span {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.prod4-quick-meta strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.005em;
}

@media (max-width: 880px) {
  .prod4-title-grid { grid-template-columns: 1fr; gap: 28px; }
  .prod4-title-side { align-items: flex-start; }
  .prod4-quick-meta { justify-content: flex-start; }
  .prod4-quick-meta li { text-align: left; }
}


/* ── Body grid (sticky nav left + content right) ── */
.prod4-body {
  background: var(--white);
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
}
.prod4-body-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}


/* Left sticky nav */
.prod4-nav-col {
  /* container for sticky */
}
.prod4-nav-sticky {
  position: sticky;
  top: 30px;
}
.prod4-nav-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.prod4-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.prod4-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  color: var(--gray);
  position: relative;
  transition: color .3s, padding-left .35s var(--ease-out);
}
.prod4-nav-link:last-child { border-bottom: 0; }
.prod4-nav-link::before {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width .35s var(--ease-out);
}
.prod4-nav-link:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}
.prod4-nav-link:hover::before { width: 12px; }
.prod4-nav-link.is-active {
  color: var(--gold-dark);
  padding-left: 16px;
  font-weight: 600;
}
.prod4-nav-link.is-active::before {
  width: 12px;
  left: 0;
}
.prod4-nav-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  min-width: 22px;
}
.prod4-nav-title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
}

/* Mini CTA u nav-u */
.prod4-nav-cta {
  padding: 18px 18px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.prod4-nav-cta-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.prod4-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.005em;
  transition: color .3s;
}
.prod4-nav-phone:hover { color: var(--gold-dark); }
.prod4-nav-phone svg {
  width: 14px; height: 14px;
  stroke: var(--gold); stroke-width: 2; fill: none;
}


/* Right scrollable content */
.prod4-content-col {
  max-width: 760px;
}
.prod4-section {
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
.prod4-section:first-child { padding-top: 0; }
.prod4-section:last-child { border-bottom: 0; padding-bottom: 0; }
.prod4-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
}
.prod4-section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  flex-shrink: 0;
}
.prod4-section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--dark);
}
.prod4-section p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 18px;
}
.prod4-section p:last-child { margin-bottom: 0; }
.prod4-lead {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.12rem, 1.4vw, 1.25rem) !important;
  line-height: 1.65 !important;
  color: var(--dark) !important;
  font-weight: 500;
}


/* Specs table — slično kao V3 (light verzija) */
.prod4-specs-table-wrap {
  margin-top: 8px;
  overflow-x: auto;
  background: var(--cream);
}
.prod4-specs-table {
  width: 100%;
  min-width: 540px;
  border-collapse: separate;
  border-spacing: 0;
}
.prod4-specs-table th,
.prod4-specs-table td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--dark);
}
.prod4-specs-table thead th {
  background: var(--dark);
  color: var(--copper);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 0;
}
.prod4-specs-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.5);
}
.prod4-specs-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.85);
}
.prod4-specs-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.prod4-specs-table td:nth-child(2) {
  color: var(--gold-dark);
  font-weight: 500;
}
.prod4-specs-table td strong {
  color: var(--gold-dark);
  font-weight: 600;
}


/* Responsive */
@media (max-width: 980px) {
  .prod4-body-grid { grid-template-columns: 1fr; gap: 30px; }
  .prod4-nav-sticky {
    position: static;
    background: var(--cream);
    padding: 22px 22px 18px;
    border: 1px solid var(--border);
  }
  .prod4-nav-cta { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABOVI: Konstrukcija + Specifikacije
   (full-width klik za switch)
   ═══════════════════════════════════════════════════════════ */
.prod-tabs-section {
  background: var(--white);
  padding: clamp(20px, 3vw, 36px) 0 clamp(60px, 8vw, 100px);
}

/* ── Tab nav ── */
.prod-tabs2-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-tabs2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 22px 24px 24px;
  cursor: pointer;
  position: relative;
  color: var(--gray);
  transition: color .25s ease;
  font-family: inherit;
  text-align: center;
}
.prod-tabs2-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.prod-tabs2-btn:hover {
  color: var(--dark);
}
.prod-tabs2-btn.is-active {
  color: var(--dark);
}
.prod-tabs2-btn.is-active::after {
  transform: scaleX(1);
}
.prod-tabs2-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.prod-tabs2-btn.is-active .prod-tabs2-num {
  color: var(--gold-dark);
}
.prod-tabs2-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Tab panels ── */
.prod-tabs2-panel {
  display: none;
  padding-top: clamp(40px, 5vw, 64px);
  animation: prodTabsFade .4s ease;
}
.prod-tabs2-panel.is-active {
  display: block;
}
@keyframes prodTabsFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Konstrukcija — feature lista (broj + tekst) ── */
.prod-tabs2-konstrukcija {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.prod-tabs2-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 6px 0;
}
.prod-tabs2-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-tabs2-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 4px 0 8px;
  color: var(--dark);
  line-height: 1.25;
}
.prod-tabs2-feature p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* ── Specifikacije — DARK tabela ── */
.prod-tabs2-specs {
  background: var(--dark);
  padding: clamp(32px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.prod-tabs2-table-wrap {
  overflow-x: auto;
}
.prod-tabs2-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
}
.prod-tabs2-table th,
.prod-tabs2-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 169, 126, 0.14);
  font-size: 0.94rem;
}
.prod-tabs2-table thead th {
  background: rgba(200, 169, 126, 0.05);
  border-bottom: 2px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 14px 16px;
}
.prod-tabs2-table tbody tr:last-child td {
  border-bottom: 0;
}
.prod-tabs2-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-warm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.prod-tabs2-table tbody td:nth-child(2) {
  color: rgba(244, 237, 224, 0.7);
}
.prod-tabs2-table tbody td:nth-child(3) {
  color: rgba(244, 237, 224, 0.5);
  font-size: 0.88rem;
}
.prod-tabs2-table tbody td strong {
  color: var(--copper);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .prod-tabs2-konstrukcija { grid-template-columns: 1fr; gap: 24px; max-width: 640px; }
}
@media (max-width: 600px) {
  .prod-tabs2-btn { padding: 16px 14px 18px; gap: 10px; }
  .prod-tabs2-num { font-size: 10px; letter-spacing: 0.18em; }
  .prod-tabs2-label { font-size: 1.02rem; }
  .prod-tabs2-feature-num { width: 32px; height: 32px; font-size: 11.5px; }
  .prod-tabs2-feature h3 { font-size: 1.05rem; }
  .prod-tabs2-specs { padding: 24px 18px; }
  .prod-tabs2-table th,
  .prod-tabs2-table td { padding: 11px 12px; font-size: 0.88rem; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — admin-toggleable feature komponente
   (PDF dugme, Live status banner, YouTube embed)
   ═══════════════════════════════════════════════════════════ */

/* PDF dugme — varijanta postojećeg btn-outline-gold */
.btn-pdf svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Live status banner */
.product-live-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 18px;
  background: rgba(139, 115, 85, 0.06);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--gold-dark);
  max-width: 100%;
}
.product-live-status-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2d8659;
  position: relative;
}
.product-live-status-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(45, 134, 89, 0.35);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.product-live-status-text {
  font-weight: 500;
  letter-spacing: 0.005em;
}

/* YouTube video sekcija */
.product-video {
  padding: clamp(60px, 8vw, 100px) 0;
}
.product-video-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.product-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .product-live-status {
    font-size: 0.82rem;
    padding: 10px 14px;
    gap: 10px;
  }
}


/* ═══════════════════════════════════════════════════════════
   INQUIRY MODAL — "Zatražite ponudu" forma
   ═══════════════════════════════════════════════════════════ */

.inquiry-modal {
  width: min(580px, 92vw);
  max-width: min(580px, 92vw);
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: transparent;
  margin: auto;
  inset: 0;
  position: fixed;
}
.inquiry-modal::backdrop {
  background: rgba(20, 18, 14, 0.65);
  backdrop-filter: blur(3px);
}

.inquiry-form {
  position: relative;
  background: #fff;
  padding: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
  max-height: 90vh;
  overflow-y: auto;
}

.inquiry-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.inquiry-close:hover {
  background: var(--cream);
  color: var(--dark);
}

.inquiry-head {
  margin-bottom: 16px;
}
.inquiry-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.inquiry-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--dark);
  line-height: 1.1;
}
.inquiry-head p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--gray);
}

.inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.inquiry-row--single {
  grid-template-columns: 1fr;
}
.inquiry-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}
.inquiry-row input,
.inquiry-row textarea,
.inquiry-row select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  margin-top: 6px;
  transition: border-color .2s, box-shadow .2s;
  text-transform: none;
  letter-spacing: normal;
}
.inquiry-row textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  line-height: 1.5;
}
.inquiry-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  padding-right: 36px;
  cursor: pointer;
}
.inquiry-row input:focus,
.inquiry-row textarea:focus,
.inquiry-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
}

.inquiry-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.inquiry-actions .btn {
  font-size: 0.95rem;
}

.inquiry-tos {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.5;
  margin: 16px 0 0;
}
.inquiry-tos strong { color: var(--dark); }
.inquiry-tos a { color: var(--gold-dark); }

/* GDPR consent checkboxes */
.inquiry-consents {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid rgba(139, 115, 85, 0.18);
}
.inquiry-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.inquiry-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.inquiry-consent-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid rgba(139, 115, 85, 0.35);
  border-radius: 4px;
  margin-top: 1px;
  transition: background .2s, border-color .2s, transform .15s;
}
.inquiry-consent-mark svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .2s, transform .25s var(--ease-out);
}
.inquiry-consent input[type="checkbox"]:checked + .inquiry-consent-mark {
  background: var(--gold);
  border-color: var(--gold);
}
.inquiry-consent input[type="checkbox"]:checked + .inquiry-consent-mark svg {
  opacity: 1;
  transform: scale(1);
}
.inquiry-consent input[type="checkbox"]:focus-visible + .inquiry-consent-mark {
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.25);
}
.inquiry-consent:hover .inquiry-consent-mark {
  border-color: var(--gold);
}
.inquiry-consent-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--dark);
}
.inquiry-consent-text a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(139, 115, 85, 0.4);
}
.inquiry-consent-text a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.inquiry-required {
  color: #c53030;
  font-weight: 700;
  margin-left: 2px;
}

.inquiry-alert {
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  border-left: 3px solid;
}
.inquiry-alert-error {
  background: #fdecec;
  color: #c53030;
  border-color: #c53030;
}

@media (max-width: 540px) {
  .inquiry-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .inquiry-form {
    padding: 24px 20px;
  }
}


/* ═══════════════════════════════════════════════════════════
   THANK-YOU STRANICA (/upit-poslat/)
   ═══════════════════════════════════════════════════════════ */
.thank-you-card {
  background: #fff;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  text-align: center;
}
.thank-you-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--dark);
  line-height: 1.1;
}
.thank-you-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 520px;
}
.thank-you-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — KONSTRUKCIJA (asimetrični grid sa numerisanim featurima)
   ═══════════════════════════════════════════════════════════ */
.prod-construction { padding-bottom: clamp(60px, 8vw, 100px); }

.prod-construction .section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.prod-construction .section-lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray);
}
.prod-construction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.prod-construction-item {
  position: relative;
  padding-top: 14px;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-construction-num {
  position: absolute;
  top: -14px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 28px;
  background: var(--cream);
  color: var(--gold-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.prod-construction-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 14px 0 10px;
  color: var(--dark);
  line-height: 1.2;
}
.prod-construction-item p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 768px) {
  .prod-construction-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — SPECIFIKACIJE (full-bleed dark, kompaktne stavke u 2 kolone)
   ═══════════════════════════════════════════════════════════ */
.prod-specs {
  padding: clamp(60px, 8vw, 100px) 0;
}
.prod-specs .section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }
.prod-specs .section-head h2 { color: #fff; }
.prod-specs .section-head h2 em { color: var(--copper); }
.prod-specs .section-label { color: var(--copper); }

.prod-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(200, 169, 126, 0.18);
}
.prod-specs-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.18);
  transition: background .2s;
}
.prod-specs-row:nth-child(odd) {
  border-right: 1px solid rgba(200, 169, 126, 0.18);
}
.prod-specs-row:hover {
  background: rgba(200, 169, 126, 0.05);
}
.prod-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.08em;
}
.prod-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream-warm);
}
.prod-specs-mat {
  font-size: 0.88rem;
  color: rgba(244, 237, 224, 0.7);
}
.prod-specs-val {
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.55);
  text-align: right;
}
.prod-specs-val strong {
  color: var(--copper);
  font-weight: 600;
}

@media (max-width: 880px) {
  .prod-specs-grid { grid-template-columns: 1fr; }
  .prod-specs-row:nth-child(odd) { border-right: 0; }
}
@media (max-width: 480px) {
  .prod-specs-row {
    grid-template-columns: 32px 1fr;
    gap: 4px 12px;
    padding: 14px 18px;
  }
  .prod-specs-mat,
  .prod-specs-val {
    grid-column: 2;
    text-align: left;
  }
  .prod-specs-num { grid-row: 1 / span 3; align-self: start; padding-top: 4px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — REVIEWS
   ═══════════════════════════════════════════════════════════ */
.prod-reviews { padding: clamp(60px, 8vw, 100px) 0; background: var(--white); }
.prod-reviews .section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }

.prod-reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
}
.prod-reviews-stars {
  display: inline-flex;
  gap: 2px;
}
.prod-reviews-stars svg,
.prod-review-stars svg {
  width: 18px; height: 18px;
  fill: rgba(139, 115, 85, 0.18);
}
.prod-reviews-stars svg.is-filled,
.prod-review-stars svg.is-filled {
  fill: var(--gold);
}
.prod-reviews-stat strong {
  font-size: 1.1rem;
  color: var(--dark);
}

.prod-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.prod-review-card {
  background: var(--cream);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--gold);
  position: relative;
}
.prod-review-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(139, 115, 85, 0.15);
  font-weight: 700;
}
.prod-review-stars {
  display: flex;
  gap: 2px;
}
.prod-review-card blockquote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}
.prod-review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--gray);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(139, 115, 85, 0.14);
}
.prod-review-author strong {
  color: var(--dark);
  font-weight: 600;
}
.prod-review-author span::before { content: "·"; margin-right: 6px; color: var(--gold); }

@media (max-width: 980px) {
  .prod-reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .prod-reviews-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — FAQ (accordion)
   ═══════════════════════════════════════════════════════════ */
.prod-faq { padding: clamp(60px, 8vw, 100px) 0; }
.prod-faq .section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }

.container--narrow { max-width: 880px; }

.prod-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-faq-item {
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  transition: color .2s;
}
.prod-faq-item summary::-webkit-details-marker { display: none; }
.prod-faq-item summary:hover { color: var(--gold-dark); }
.prod-faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease-out), background .2s;
}
.prod-faq-icon svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.prod-faq-item[open] .prod-faq-icon {
  transform: rotate(180deg);
  background: var(--gold-dark);
}
.prod-faq-answer {
  padding: 0 4px 24px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray);
  animation: faqFadeIn .3s ease-out;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — SERVIS I ODRŽAVANJE
   ═══════════════════════════════════════════════════════════ */
.prod-service { padding: clamp(60px, 8vw, 100px) 0; background: var(--white); }
.prod-service-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.prod-service-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 12px 0 14px;
  color: var(--dark);
  line-height: 1.1;
}
.prod-service-content h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}
.prod-service-content > p {
  margin: 22px 0 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
}

.prod-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.prod-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.55;
}
.prod-service-list svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.prod-service-list strong {
  color: var(--dark);
  font-weight: 600;
}

.prod-service-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-link-gold {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gold-dark);
  text-decoration: none;
}
.btn-link-gold:hover { color: var(--gold); text-decoration: underline; }

.prod-service-image {
  position: relative;
  overflow: hidden;
}
.prod-service-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

@media (max-width: 880px) {
  .prod-service-grid { grid-template-columns: 1fr; gap: 28px; }
  .prod-service-image { order: -1; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS3 (card-style tabs sa klikom za switch)
   Konstrukcija + Specifikacije
   ═══════════════════════════════════════════════════════════ */
.prod-tabs3 {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ── Card-style tab nav ── */
.prod-tabs3-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.prod-tabs3-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  transition: background .25s, border-color .25s, transform .25s;
}
.prod-tabs3-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease-out);
}
.prod-tabs3-card:hover {
  border-color: rgba(139, 115, 85, 0.4);
  background: #fff;
}
.prod-tabs3-card.is-active {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 14px 32px rgba(139, 115, 85, 0.12);
  transform: translateY(-2px);
}
.prod-tabs3-card.is-active::before {
  transform: scaleY(1);
}
.prod-tabs3-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(139, 115, 85, 0.55);
  transition: color .25s;
}
.prod-tabs3-card.is-active .prod-tabs3-card-num {
  color: var(--gold);
}
.prod-tabs3-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.prod-tabs3-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1.1;
}
.prod-tabs3-card-desc {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.4;
}
.prod-tabs3-card-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.prod-tabs3-card-icon svg {
  width: 14px; height: 14px;
  stroke: var(--gold-dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prod-tabs3-card.is-active .prod-tabs3-card-icon {
  background: var(--gold);
}
.prod-tabs3-card.is-active .prod-tabs3-card-icon svg {
  stroke: #fff;
  transform: rotate(90deg);
  transition: transform .35s var(--ease-out);
}

/* ── Tab panels ── */
.prod-tabs3-panel {
  display: none;
  animation: tabs3FadeIn .4s var(--ease-out);
}
.prod-tabs3-panel.is-active { display: block; }
@keyframes tabs3FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Konstrukcija — features (kao na prethodnoj verziji ali bolja distance) ── */
.prod-tabs3-konstrukcija {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.prod-tabs3-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
}
.prod-tabs3-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-tabs3-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 4px 0 8px;
  color: var(--dark);
  line-height: 1.25;
}
.prod-tabs3-feature p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* ── Specifikacije — dark "list" stil unutar light tabs sekcije ── */
.prod-tabs3-specs {
  background: var(--dark);
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--gold);
}
.prod-tabs3-specs-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.16);
}
.prod-tabs3-specs-row:nth-child(odd) {
  border-right: 1px solid rgba(200, 169, 126, 0.16);
  padding-right: 22px;
}
.prod-tabs3-specs-row:nth-child(even) {
  padding-left: 22px;
}
.prod-tabs3-specs-row:hover { background: rgba(200, 169, 126, 0.05); }
.prod-tabs3-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.06em;
}
.prod-tabs3-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream-warm);
}
.prod-tabs3-specs-mat {
  font-size: 0.86rem;
  color: rgba(244, 237, 224, 0.7);
}
.prod-tabs3-specs-val {
  font-size: 0.84rem;
  color: rgba(244, 237, 224, 0.5);
  text-align: right;
}
.prod-tabs3-specs-val strong {
  color: var(--copper);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .prod-tabs3-nav { grid-template-columns: 1fr; gap: 12px; }
  .prod-tabs3-konstrukcija { grid-template-columns: 1fr; gap: 28px; max-width: 640px; }
  .prod-tabs3-specs { grid-template-columns: 1fr; }
  .prod-tabs3-specs-row:nth-child(odd) { border-right: 0; padding-right: 12px; }
  .prod-tabs3-specs-row:nth-child(even) { padding-left: 12px; }
}
@media (max-width: 540px) {
  .prod-tabs3-card { padding: 16px 18px; gap: 12px; }
  .prod-tabs3-card-label { font-size: 1.05rem; }
  .prod-tabs3-card-desc { font-size: 11.5px; }
  .prod-tabs3-card-icon { width: 28px; height: 28px; }
  .prod-tabs3-feature-num { width: 32px; height: 32px; font-size: 12px; }
  .prod-tabs3-feature h3 { font-size: 1.05rem; }
  .prod-tabs3-specs-row {
    grid-template-columns: 30px 1fr;
    gap: 4px 12px;
    padding: 12px;
  }
  .prod-tabs3-specs-mat,
  .prod-tabs3-specs-val { grid-column: 2; text-align: left; }
  .prod-tabs3-specs-num { grid-row: 1 / span 3; align-self: start; padding-top: 4px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS A (vertical sidebar)
   ═══════════════════════════════════════════════════════════ */
.prod-tabsA { padding: clamp(60px, 8vw, 100px) 0; }
.prod-tabsA .section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }

.prod-tabsA-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 4vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

/* Sidebar */
.prod-tabsA-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-tabsA-btn {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(139, 115, 85, 0.14);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  position: relative;
  transition: background .25s, border-color .25s;
}
.prod-tabsA-btn:last-child { border-bottom: 0; }
.prod-tabsA-btn:hover { background: var(--cream); }
.prod-tabsA-btn.is-active {
  background: var(--cream);
  border-left-color: var(--gold);
}
.prod-tabsA-btn-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(139, 115, 85, 0.5);
  transition: color .25s;
}
.prod-tabsA-btn.is-active .prod-tabsA-btn-num { color: var(--gold-dark); }

.prod-tabsA-btn-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.prod-tabsA-btn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1.1;
}
.prod-tabsA-btn-meta {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* Content */
.prod-tabsA-content {
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
  padding: clamp(28px, 4vw, 48px);
  min-height: 360px;
}
.prod-tabsA-panel {
  display: none;
  animation: tabsAFadeIn .35s var(--ease-out);
}
.prod-tabsA-panel.is-active { display: block; }
@keyframes tabsAFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prod-tabsA-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--dark);
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Konstrukcija features */
.prod-tabsA-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.prod-tabsA-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
.prod-tabsA-feature:last-child { border-bottom: 0; padding-bottom: 0; }
.prod-tabsA-feature:first-child { padding-top: 0; }
.prod-tabsA-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-tabsA-feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 4px 0 8px;
  color: var(--dark);
  line-height: 1.25;
}
.prod-tabsA-feature p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* Specifikacije */
.prod-tabsA-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(139, 115, 85, 0.16);
}
.prod-tabsA-specs-row {
  display: grid;
  grid-template-columns: 36px 1fr 1.1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  transition: background .15s;
}
.prod-tabsA-specs-row:hover { background: var(--cream); }
.prod-tabsA-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.prod-tabsA-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.prod-tabsA-specs-mat {
  font-size: 0.9rem;
  color: var(--gray);
}
.prod-tabsA-specs-val {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: right;
}
.prod-tabsA-specs-val strong { color: var(--gold-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 880px) {
  .prod-tabsA-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-tabsA-sidebar {
    flex-direction: row;
    position: static;
    overflow-x: auto;
  }
  .prod-tabsA-btn {
    border-left: 0;
    border-bottom: 3px solid transparent;
    flex: 1;
    min-width: 180px;
  }
  .prod-tabsA-btn:last-child { border-bottom: 3px solid transparent; }
  .prod-tabsA-btn.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
  }
}
@media (max-width: 540px) {
  .prod-tabsA-btn { padding: 16px 18px; gap: 12px; }
  .prod-tabsA-btn-label { font-size: 1rem; }
  .prod-tabsA-content { padding: 22px 18px; }
  .prod-tabsA-specs-row { grid-template-columns: 30px 1fr; gap: 4px 12px; padding: 12px 2px; }
  .prod-tabsA-specs-mat,
  .prod-tabsA-specs-val { grid-column: 2; text-align: left; }
  .prod-tabsA-specs-num { grid-row: 1 / span 3; align-self: start; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS B (minimal text + animirana zlatna linija)
   ═══════════════════════════════════════════════════════════ */
.prod-tabsB { padding: clamp(60px, 8vw, 100px) 0; }

/* ── Tab nav: centrirani text labeli + sliding underline ── */
.prod-tabsB-nav {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  margin: 0 auto clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
  padding: 0;
}
.prod-tabsB nav,
.prod-tabsB > .container {
  text-align: center;
}
.prod-tabsB > .container > .prod-tabsB-nav {
  display: inline-flex;
}

.prod-tabsB-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 32px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray);
  position: relative;
  transition: color .25s;
}
.prod-tabsB-btn:hover { color: var(--dark); }
.prod-tabsB-btn.is-active { color: var(--dark); }

.prod-tabsB-btn-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(139, 115, 85, 0.4);
  transition: color .25s;
}
.prod-tabsB-btn.is-active .prod-tabsB-btn-num {
  color: var(--gold);
}
.prod-tabsB-btn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Sliding indicator */
.prod-tabsB-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transition: transform .4s var(--ease-out), width .4s var(--ease-out);
  pointer-events: none;
}

/* ── Panels ── */
.prod-tabsB-panel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  animation: tabsBFadeIn .4s var(--ease-out);
}
.prod-tabsB-panel.is-active { display: block; }
@keyframes tabsBFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Konstrukcija — vertikalna lista */
.prod-tabsB-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
}
.prod-tabsB-feature {
  position: relative;
  padding-left: 56px;
}
.prod-tabsB-feature-num {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.prod-tabsB-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--dark);
  line-height: 1.2;
}
.prod-tabsB-feature p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* Specifikacije — clean two-column list */
.prod-tabsB-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-tabsB-specs-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.14);
  transition: background .15s;
}
.prod-tabsB-specs-row:nth-child(odd) {
  border-right: 1px solid rgba(139, 115, 85, 0.14);
}
.prod-tabsB-specs-row:hover {
  background: rgba(139, 115, 85, 0.04);
}
.prod-tabsB-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.prod-tabsB-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.prod-tabsB-specs-mat {
  font-size: 0.9rem;
  color: var(--gray);
}
.prod-tabsB-specs-val {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: right;
}
.prod-tabsB-specs-val strong { color: var(--gold-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 880px) {
  .prod-tabsB-features { grid-template-columns: 1fr; gap: 32px; }
  .prod-tabsB-specs { grid-template-columns: 1fr; }
  .prod-tabsB-specs-row:nth-child(odd) { border-right: 0; }
  .prod-tabsB-btn { padding: 14px 20px 18px; }
  .prod-tabsB-btn-label { font-size: 1.05rem; }
}
@media (max-width: 540px) {
  .prod-tabsB-feature { padding-left: 44px; }
  .prod-tabsB-feature-num { font-size: 1.8rem; }
  .prod-tabsB-specs-row {
    grid-template-columns: 30px 1fr;
    gap: 4px 12px;
    padding: 12px 14px;
  }
  .prod-tabsB-specs-mat,
  .prod-tabsB-specs-val { grid-column: 2; text-align: left; }
  .prod-tabsB-specs-num { grid-row: 1 / span 3; align-self: start; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS C (pill segmented control)
   ═══════════════════════════════════════════════════════════ */
.prod-tabsC { padding: clamp(60px, 8vw, 100px) 0; }

.prod-tabsC-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.prod-tabsC-nav {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: rgba(139, 115, 85, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.prod-tabsC-pill {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  background: var(--gold);
  border-radius: 999px;
  transition: transform .4s var(--ease-out), width .4s var(--ease-out);
  box-shadow: 0 4px 14px rgba(139, 115, 85, 0.35);
  z-index: 0;
}
.prod-tabsC-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  transition: color .25s;
  white-space: nowrap;
}
.prod-tabsC-btn:hover { color: var(--dark); }
.prod-tabsC-btn.is-active { color: #fff; }

/* Panels */
.prod-tabsC-panel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  animation: tabsCFadeIn .4s var(--ease-out);
}
.prod-tabsC-panel.is-active { display: block; }
@keyframes tabsCFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Konstrukcija — alternating left-right grid (asimetrija) */
.prod-tabsC-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.prod-tabsC-feature {
  position: relative;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.14);
  border-top: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}
.prod-tabsC-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(139, 115, 85, 0.12);
}
.prod-tabsC-feature-num {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.prod-tabsC-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--dark);
  line-height: 1.2;
}
.prod-tabsC-feature p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* Specifikacije — numbered list u 2 kolone, čisto */
.prod-tabsC-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-tabsC-specs-row {
  display: grid;
  grid-template-columns: 36px 1fr 1.1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  transition: background .15s;
}
.prod-tabsC-specs-row:nth-child(odd) {
  border-right: 1px solid rgba(139, 115, 85, 0.12);
}
.prod-tabsC-specs-row:hover { background: var(--cream); }
.prod-tabsC-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.prod-tabsC-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.prod-tabsC-specs-mat {
  font-size: 0.9rem;
  color: var(--gray);
}
.prod-tabsC-specs-val {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: right;
}
.prod-tabsC-specs-val strong { color: var(--gold-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 880px) {
  .prod-tabsC-features { grid-template-columns: 1fr; gap: 24px; }
  .prod-tabsC-specs { grid-template-columns: 1fr; }
  .prod-tabsC-specs-row:nth-child(odd) { border-right: 0; }
  .prod-tabsC-btn { padding: 10px 22px; font-size: 0.95rem; }
}
@media (max-width: 540px) {
  .prod-tabsC-nav { width: 100%; }
  .prod-tabsC-btn { flex: 1; padding: 10px 14px; }
  .prod-tabsC-feature { padding: 22px 20px; }
  .prod-tabsC-specs-row {
    grid-template-columns: 30px 1fr;
    gap: 4px 12px;
    padding: 12px 14px;
  }
  .prod-tabsC-specs-mat,
  .prod-tabsC-specs-val { grid-column: 2; text-align: left; }
  .prod-tabsC-specs-num { grid-row: 1 / span 3; align-self: start; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS D (preview-card sa ikonicom)
   ═══════════════════════════════════════════════════════════ */
.prod-tabsD { padding: clamp(60px, 8vw, 100px) 0; }

/* ── Tab nav: 2 velike preview-card dugmadi ── */
.prod-tabsD-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.prod-tabsD-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.16);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.prod-tabsD-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.02), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.prod-tabsD-card:hover {
  border-color: rgba(139, 115, 85, 0.35);
  transform: translateY(-2px);
}
.prod-tabsD-card:hover::after { opacity: 1; }
.prod-tabsD-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.18);
}
.prod-tabsD-card.is-active::after { opacity: 1; }

/* Icon container */
.prod-tabsD-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: background .3s, color .3s, transform .3s;
}
.prod-tabsD-card-icon svg {
  width: 28px;
  height: 28px;
}
.prod-tabsD-card.is-active .prod-tabsD-card-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(8deg) scale(1.05);
}

/* Body text */
.prod-tabsD-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.prod-tabsD-card-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.prod-tabsD-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1.05;
  margin: 2px 0 4px;
}
.prod-tabsD-card-meta {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.4;
}

/* ── Panels ── */
.prod-tabsD-panel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  animation: tabsDFadeIn .4s var(--ease-out);
}
.prod-tabsD-panel.is-active { display: block; }
@keyframes tabsDFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Konstrukcija */
.prod-tabsD-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
}
.prod-tabsD-feature {
  position: relative;
  padding-left: 56px;
  padding-top: 4px;
}
.prod-tabsD-feature-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.prod-tabsD-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--dark);
  line-height: 1.2;
}
.prod-tabsD-feature p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* Specifikacije */
.prod-tabsD-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.16);
}
.prod-tabsD-specs-row {
  display: grid;
  grid-template-columns: 36px 1fr 1.1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  transition: background .15s;
}
.prod-tabsD-specs-row:nth-child(odd) {
  border-right: 1px solid rgba(139, 115, 85, 0.12);
}
.prod-tabsD-specs-row:hover { background: var(--cream); }
.prod-tabsD-specs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.prod-tabsD-specs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.prod-tabsD-specs-mat {
  font-size: 0.9rem;
  color: var(--gray);
}
.prod-tabsD-specs-val {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: right;
}
.prod-tabsD-specs-val strong { color: var(--gold-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 880px) {
  .prod-tabsD-nav { grid-template-columns: 1fr; }
  .prod-tabsD-features { grid-template-columns: 1fr; gap: 28px; }
  .prod-tabsD-specs { grid-template-columns: 1fr; }
  .prod-tabsD-specs-row:nth-child(odd) { border-right: 0; }
}
@media (max-width: 540px) {
  .prod-tabsD-card { padding: 18px 20px; gap: 16px; }
  .prod-tabsD-card-icon { width: 52px; height: 52px; }
  .prod-tabsD-card-icon svg { width: 24px; height: 24px; }
  .prod-tabsD-card-label { font-size: 1.15rem; }
  .prod-tabsD-feature { padding-left: 44px; }
  .prod-tabsD-feature-num { font-size: 1.9rem; }
  .prod-tabsD-specs-row {
    grid-template-columns: 30px 1fr;
    gap: 4px 12px;
    padding: 12px 14px;
  }
  .prod-tabsD-specs-mat,
  .prod-tabsD-specs-val { grid-column: 2; text-align: left; }
  .prod-tabsD-specs-num { grid-row: 1 / span 3; align-self: start; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — TABS E (klasičan e-commerce stil:
   Opis paragrafima + Specifikacije čista 2-kolone tabela)
   ═══════════════════════════════════════════════════════════ */
.prod-tabsE { padding: clamp(60px, 8vw, 100px) 0; }

/* Inline varijanta — kad je tabsE deo product-detail sekcije */
.prod-tabsE--inline {
  padding: 0;
  margin-top: clamp(18px, 2.25vw, 29px);
}
.prod-tabsE--inline .prod-tabsE-nav {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.prod-tabsE--inline .prod-tabsE-panel {
  max-width: none;
  margin: 0;
}
.prod-tabsE--inline .prod-tabsE-description {
  max-width: 100%;
}

.prod-tabsE-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
  margin-bottom: clamp(28px, 3.5vw, 44px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.prod-tabsE-btn {
  background: transparent;
  border: 0;
  padding: 16px 28px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  position: relative;
  margin-bottom: -1px;
  transition: color .2s;
}
.prod-tabsE-btn::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease-out);
}
.prod-tabsE-btn:hover { color: var(--dark); }
.prod-tabsE-btn.is-active { color: var(--dark); }
.prod-tabsE-btn.is-active::after { transform: scaleX(1); }

/* ── Panels ── */
.prod-tabsE-panel {
  display: none;
  max-width: 980px;
  margin: 0 auto;
  animation: tabsEFadeIn .35s var(--ease-out);
}
.prod-tabsE-panel.is-active { display: block; }
@keyframes tabsEFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Opis — Wikipedia/article style */
.prod-tabsE-description {
  max-width: 820px;
}
.prod-tabsE-description h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--dark);
  margin: 0 0 18px;
  line-height: 1.15;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.prod-tabsE-description h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--gold-dark);
  margin: 28px 0 10px;
  line-height: 1.25;
}
.prod-tabsE-description p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 14px;
}
.prod-tabsE-description p:last-child { margin-bottom: 0; }

/* Prvi paragraf u prose blok-u — lead/intro veći i prigušeno bold */
.prod-tabsE-description > p:first-child {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark, #1a1a1a);
  font-weight: 500;
  margin-bottom: 22px;
}

/* Callout box-evi (⚠️ ℹ️ 💡 u full_desc-u) */
.prose-callout {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 8px;
  border-left: 3px solid;
  background: rgba(139, 115, 85, 0.04);
  align-items: flex-start;
}
.prose-callout-icon {
  font-size: 1.4rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.prose-callout-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}
.prose-callout-body:last-child { margin-bottom: 0; }
.prose-callout--warning {
  border-left-color: var(--gold, #8B7355);
  background: rgba(139, 115, 85, 0.06);
}
.prose-callout--info {
  border-left-color: #5b8db8;
  background: rgba(91, 141, 184, 0.05);
}
.prose-callout--tip {
  border-left-color: #6ba36b;
  background: rgba(107, 163, 107, 0.05);
}
.prose-callout--note {
  border-left-color: var(--gold-dark, #7A6040);
  background: rgba(122, 96, 64, 0.04);
}
.prose-callout-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark, #7A6040);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

/* ── Vodič / edukativna stranica — zigzag layout ─────────────────────── */
.vodic-page-header {
  min-height: 380px;
}

/* Brze činjenice — full-width band ispod hero-a */
.vodic-facts-band {
  background: var(--cream, #f7f3eb);
  padding: 32px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}
.vodic-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.vodic-fact {
  text-align: center;
  padding: 4px 16px;
  border-right: 1px solid rgba(139, 115, 85, 0.18);
}
.vodic-fact:last-child { border-right: 0; }
.vodic-fact strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark, #7A6040);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.vodic-fact span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .vodic-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .vodic-fact {
    padding: 12px 16px;
    border-right: 1px solid rgba(139, 115, 85, 0.18);
    border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  }
  .vodic-fact:nth-child(2n) { border-right: 0; }
  .vodic-fact:nth-last-child(-n+2) { border-bottom: 0; }
}

/* Zigzag sekcije */
.vodic-zigzag-section {
  padding: 80px 0;
  background: #fff;
}
.vodic-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 50px 0;
}
.vodic-zigzag-row + .vodic-zigzag-row {
  border-top: 1px solid rgba(139, 115, 85, 0.12);
}
.vodic-zigzag-row--reverse .vodic-zigzag-img { order: 2; }
.vodic-zigzag-row--reverse .vodic-zigzag-text { order: 1; }

.vodic-zigzag-img figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.vodic-zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out, ease-out);
  cursor: zoom-in;
}
.vodic-zigzag-img figure:hover img {
  transform: scale(1.04);
}

.vodic-zigzag-text {
  position: relative;
}
.vodic-zigzag-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(139, 115, 85, 0.5);
  margin-bottom: 8px;
}
.vodic-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: var(--dark, #1a1a1a);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 6px;
}
.vodic-h2 em {
  font-style: normal;
  color: var(--gold-dark, #7A6040);
  font-weight: 500;
}
.vodic-zigzag-text > .gold-line {
  margin: 14px 0 24px;
}
.vodic-prose {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.vodic-prose p {
  margin: 0 0 18px;
}
.vodic-prose p:last-child {
  margin-bottom: 0;
}
.vodic-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 600;
  color: var(--dark, #1a1a1a);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 48px 0 6px;
  padding-top: 12px;
}
.vodic-h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.vodic-h2 em {
  font-style: normal;
  color: var(--gold-dark, #7A6040);
  font-weight: 500;
}
.vodic-prose > .gold-line {
  margin-bottom: 22px;
}

/* Final CTA card grid (3 kartice — kazan/deo/usluga) */
.vodic-cta-grid { padding: 80px 0; }
.vodic-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vodic-cta-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  text-decoration: none;
  color: var(--text);
  transition: transform .35s var(--ease-out, ease-out), box-shadow .35s;
  border-top: 2px solid transparent;
}
.vodic-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-top-color: var(--gold, #8B7355);
}
.vodic-cta-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f4f4;
}
.vodic-cta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out, ease-out);
}
.vodic-cta-card:hover .vodic-cta-card-img img {
  transform: scale(1.05);
}
.vodic-cta-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vodic-cta-card-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark, #7A6040);
  margin-bottom: 10px;
}
.vodic-cta-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 12px;
}
.vodic-cta-card-body h3 em {
  font-style: normal;
  color: var(--gold-dark, #7A6040);
  font-weight: 500;
}
.vodic-cta-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
  flex: 1;
}
.vodic-cta-card .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-dark, #7A6040);
  text-transform: uppercase;
}
.vodic-cta-card .link-cta svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2; fill: none;
  transition: transform .35s var(--ease-out, ease-out);
}
.vodic-cta-card:hover .link-cta svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .vodic-cta-cards { grid-template-columns: 1fr; gap: 22px; }
  .vodic-zigzag-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }
  .vodic-zigzag-row--reverse .vodic-zigzag-img { order: 0; }
  .vodic-zigzag-row--reverse .vodic-zigzag-text { order: 1; }
  .vodic-zigzag-section { padding: 40px 0; }
}

/* ── Vodič listing — article cards (landing /vodic/) ─────────────────── */
.vodic-listing { padding: 80px 0; }
.vodic-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.vodic-article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform .4s var(--ease-out, ease-out), box-shadow .4s;
  border-top: 3px solid transparent;
}
.vodic-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  border-top-color: var(--gold, #8B7355);
}
.vodic-article-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f4f4f4;
}
.vodic-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out, ease-out);
}
.vodic-article-card:hover .vodic-article-card-img img {
  transform: scale(1.06);
}
.vodic-article-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.95);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark, #7A6040);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vodic-article-card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vodic-article-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark, #1a1a1a);
  margin: 0 0 12px;
}
.vodic-article-card-body h3 em {
  font-style: normal;
  color: var(--gold-dark, #7A6040);
  font-weight: 500;
}
.vodic-article-card-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(122, 96, 64, 0.7);
  margin-top: 4px;
  font-family: 'Barlow', sans-serif;
}
.vodic-article-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 22px;
  flex: 1;
}
.vodic-article-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-dark, #7A6040);
  text-transform: uppercase;
}
.vodic-article-card-cta svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2; fill: none;
  transition: transform .4s var(--ease-out, ease-out);
}
.vodic-article-card:hover .vodic-article-card-cta svg {
  transform: translateX(6px);
}

@media (max-width: 1080px) {
  .vodic-article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .vodic-article-grid { grid-template-columns: 1fr; gap: 24px; }
  .vodic-listing { padding: 48px 0; }
}

/* Specifikacije — clean 2-column table */
.prod-tabsE-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
}
.prod-tabsE-table tr {
  transition: background .15s;
}
.prod-tabsE-table tbody tr:nth-child(odd) {
  background: var(--cream);
}
.prod-tabsE-table tbody tr:hover {
  background: rgba(139, 115, 85, 0.08);
}
.prod-tabsE-table th {
  width: 40%;
  text-align: left;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  text-transform: none;
  border-right: 1px solid rgba(139, 115, 85, 0.12);
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  vertical-align: middle;
}
.prod-tabsE-table td {
  padding: 14px 22px;
  font-size: 0.96rem;
  color: var(--text);
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  vertical-align: middle;
}
.prod-tabsE-table tr:last-child th,
.prod-tabsE-table tr:last-child td {
  border-bottom: 0;
}

/* ── 3-column varijanta: Deo kazana | Materijal | Specifikacija ── */
.prod-tabsE-table--3col {
  table-layout: auto;
}
.prod-tabsE-table--3col thead th {
  width: auto;
  background: var(--gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid var(--gold-dark);
  vertical-align: middle;
  text-align: left;
}
.prod-tabsE-table--3col thead th:last-child {
  border-right: 0;
}
.prod-tabsE-table--3col tbody td {
  padding: 13px 22px;
  border-right: 1px solid rgba(139, 115, 85, 0.08);
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  vertical-align: middle;
}
.prod-tabsE-table--3col tbody td:last-child {
  border-right: 0;
}
.prod-tabsE-table--3col tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  width: 38%;
}
.prod-tabsE-table--3col tbody td:nth-child(2) {
  color: var(--gray);
  width: 38%;
}
.prod-tabsE-table--3col tbody td:nth-child(3) {
  color: var(--gold-dark);
  font-weight: 500;
  width: 24%;
}
.prod-tabsE-table--3col tbody td:nth-child(3):empty::before {
  content: "—";
  color: rgba(139, 115, 85, 0.25);
  font-weight: 400;
}
.prod-tabsE-table--3col tbody td strong {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(139, 115, 85, 0.12);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
}
.prod-tabsE-table--3col tbody tr:last-child td {
  border-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .prod-tabsE-nav { overflow-x: auto; }
  .prod-tabsE-btn { padding: 14px 20px; font-size: 1rem; white-space: nowrap; }
  .prod-tabsE-table th,
  .prod-tabsE-table td { padding: 12px 16px; }
  .prod-tabsE-table th { font-size: 0.82rem; }
  .prod-tabsE-table td { font-size: 0.92rem; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — VIDEO + FAQ (kombinovana 2-kolone sekcija)
   Levo: YouTube video (uzak za shorts 9:16, ili widescreen za 16:9)
   Desno: FAQ accordion
   ═══════════════════════════════════════════════════════════ */
.prod-video-faq { padding: clamp(60px, 8vw, 100px) 0; }

.prod-video-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.prod-video-faq-grid--single {
  grid-template-columns: 1fr;
  max-width: 880px;
}

/* Section heads inside video/FAQ columns */
.prod-video-faq-head {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.prod-video-faq-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 10px 0 14px;
  color: var(--dark);
  line-height: 1.1;
}
.prod-video-faq-head h2 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}

/* Viber/WhatsApp CTA — pored "Pozovite nas" */
.btn-viber {
  border-color: rgba(119, 95, 211, 0.5);
  color: #665caf;
}
.btn-viber:hover {
  background: rgba(119, 95, 211, 0.08);
  border-color: #665caf;
  color: #4a4187;
}
.btn-viber svg { color: currentColor; }

.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.5);
  color: #1ea854;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #1ea854;
  color: #157a3d;
}
.btn-whatsapp svg { color: currentColor; }

/* Maps link iz quickspec "Lično u Rumi" */
.quick-spec-link {
  color: var(--gold-dark, #7A6040);
  text-decoration: none;
  border-bottom: 1px dotted rgba(122, 96, 64, 0.4);
}
.quick-spec-link:hover {
  color: var(--gold, #8B7355);
  border-bottom-style: solid;
}

/* Sticky mobile CTA bar */
.product-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(139, 115, 85, 0.4);
  padding: 10px 14px;
  display: block;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.18);
}
.product-sticky-cta[hidden] { display: none !important; }
.product-sticky-cta-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.product-sticky-cta-inner .btn { flex: 1; padding: 12px 18px; font-size: 14px; }
.product-sticky-cta-tel {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(139, 115, 85, 0.15);
  color: var(--gold, #8B7355);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-sticky-cta-tel svg { width: 20px; height: 20px; }
.product-sticky-cta-tel:hover { background: rgba(139, 115, 85, 0.25); }
.product-sticky-cta-close {
  width: 32px; height: 32px;
  background: none; border: 0;
  color: rgba(255,255,255,0.5);
  font-size: 22px; cursor: pointer; line-height: 1;
  flex-shrink: 0;
}
.product-sticky-cta-close:hover { color: #fff; }

/* Only on mobile screens */
@media (min-width: 881px) {
  .product-sticky-cta { display: none !important; }
}

/* Product trust badge — sertifikat starog zanata */
.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-top: 18px;
  background: rgba(139, 115, 85, 0.06);
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 8px;
}
.product-trust-badge-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark, #7A6040);
}
.product-trust-badge-icon svg {
  width: 100%;
  height: 100%;
}
.product-trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
  min-width: 0;
}
.product-trust-badge-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
}
.product-trust-badge-text span {
  font-size: 13px;
  color: var(--gray);
}

/* Video column — visina kolone matchuje FAQ, video frame je prirodne 9:16 veličine i centriran vertikalno */
.prod-video-faq-video {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prod-video-faq-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  border-radius: 6px;
}
.prod-video-faq-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ column — uses existing .prod-faq-list / .prod-faq-item styles */
.prod-video-faq-faq { min-width: 0; }
.prod-video-faq-faq .prod-faq-list {
  border-top: 1px solid rgba(139, 115, 85, 0.18);
}

/* Responsive */
@media (max-width: 880px) {
  .prod-video-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .prod-video-faq-video {
    justify-content: flex-start;
  }
  .prod-video-faq-frame {
    max-width: 360px;
    margin: 0 auto;
  }
}


/* ═══════════════════════════════════════════════════════════
   LIGHTBOX (galerija proizvoda)
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  inset: 0;
  overflow: hidden;
}
.lightbox::backdrop {
  background: rgba(20, 18, 14, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px) clamp(64px, 10vw, 120px);
  animation: lightboxFadeIn .35s ease-out;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Dugmad */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .2s;
  z-index: 2;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.06);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-close {
  top: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  width: 44px;
  height: 44px;
}
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}
.lightbox-prev { left: clamp(12px, 2vw, 28px); }
.lightbox-next { right: clamp(12px, 2vw, 28px); }
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Responsive — manje dugmad na mobile */
@media (max-width: 600px) {
  .lightbox-figure { padding: 20px 18px 70px; }
  .lightbox-close { width: 38px; height: 38px; top: 14px; right: 14px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
  .lightbox-prev svg, .lightbox-next svg { width: 18px; height: 18px; }
  .lightbox-counter { font-size: 12px; padding: 6px 14px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT — FINAL CTA GLASSMORPHISM (Opcija B: image bg + blur card)
   ═══════════════════════════════════════════════════════════ */
.product-cta-glass {
  position: relative;
  padding: clamp(30px, 4.5vw, 60px) 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.product-cta-glass-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.product-cta-glass-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: brightness(0.55) saturate(1.1);
}
.product-cta-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(20, 18, 14, 0.55) 0%, rgba(20, 18, 14, 0.75) 100%),
    radial-gradient(circle at 30% 30%, rgba(139, 115, 85, 0.25), transparent 60%);
  pointer-events: none;
}

/* Glass card */
.product-cta-glass-card {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.product-cta-glass-card .section-label {
  color: var(--copper);
}
.product-cta-glass-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 12px 0 0;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.product-cta-glass-card h2 em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.product-cta-glass-card .gold-line {
  margin: 18px auto 22px;
}
.product-cta-glass-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}

.product-cta-glass-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 600px) {
  .product-cta-glass { padding: 28px 0; }
  .product-cta-glass-actions .btn { width: 100%; justify-content: center; }
}

/* Old SPLIT styles below — left for reference, no longer used */
.product-cta-split {
  padding: clamp(60px, 8vw, 100px) 0;
}
.product-cta-split-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.product-cta-split-head h2 {
  color: #fff;
}
.product-cta-split-head h2 em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.product-cta-split-head .section-label {
  color: var(--copper);
}
.product-cta-split-head p {
  color: rgba(244, 237, 224, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 560px;
}

/* Grid 2 kartice */
.product-cta-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

/* Bazna kartica */
.product-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-cta-card:hover {
  transform: translateY(-3px);
}

/* Levi (telefon): cream pozadina, sekundarna opcija */
.product-cta-card--phone {
  background: var(--cream);
  border: 1px solid rgba(139, 115, 85, 0.18);
  color: var(--dark);
}
.product-cta-card--phone:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Desni (forma): naglašen, primarni CTA — gold-ish gradient za vizuelnu pažnju */
.product-cta-card--form {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 1px solid var(--gold);
  color: #fff;
  position: relative;
}
.product-cta-card--form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.product-cta-card--form:hover {
  box-shadow: 0 18px 40px rgba(139, 115, 85, 0.45);
}

/* Ikona */
.product-cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.product-cta-card--phone .product-cta-card-icon {
  background: var(--gold);
  color: #fff;
}
.product-cta-card--form .product-cta-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(4px);
}
.product-cta-card-icon svg {
  width: 26px;
  height: 26px;
}

/* Eyebrow */
.product-cta-card-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-cta-card--form .product-cta-card-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

/* Naslov */
.product-cta-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  line-height: 1.1;
  color: inherit;
}

/* Telefon broj kao prominentni link */
.product-cta-card-phone {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}
.product-cta-card-phone:hover {
  color: var(--gold);
}

/* Meta info (radno vreme) */
.product-cta-card-meta {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 22px;
  line-height: 1.5;
}

/* Opis (form card) */
.product-cta-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 22px;
  flex: 1;
}

/* Block button (full-width inside card) */
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .product-cta-split-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (Politika privatnosti / Uslovi korišćenja)
   ═══════════════════════════════════════════════════════════ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.legal-page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--dark);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page p {
  margin: 0 0 14px;
  color: var(--gray);
  line-height: 1.75;
}
.legal-page ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--gray);
  line-height: 1.7;
}
.legal-page ul li { margin-bottom: 6px; }
.legal-page strong { color: var(--dark); }
.legal-page a { color: var(--gold-dark); text-decoration: underline; }
.legal-page a:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════
   MAPA SAJTA
   ═══════════════════════════════════════════════════════════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}
.sitemap-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sitemap-col ul li a {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.sitemap-col ul li a:hover {
  color: var(--gold-dark);
  border-bottom-color: rgba(139, 115, 85, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   NAPRAVI SVOJ KAZAN — konfigurator (Split atelje)
   ═══════════════════════════════════════════════════════════ */
.nsk-header { padding-bottom: 0; }
.nsk-header .eyebrow { color: var(--gold); }

.nsk-alert {
  background: #fbeaea; border: 1px solid #e3b4b4;
  color: #8a2b2b; padding: 14px 18px; margin: 0 0 28px; font-size: 14px; border-radius: 2px;
}
.nsk-disabled { text-align: center; padding: 40px 0; }
.nsk-disabled h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; }
.nsk-disabled a { color: var(--gold); font-weight: 600; }

.nsk-split {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

/* ── Koraci (levo) ── */
.nsk-step { margin-bottom: 42px; }
.nsk-step-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.nsk-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; letter-spacing: .12em;
  color: var(--copper); flex: none;
}
.nsk-step-head h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px); margin: 0; letter-spacing: -.005em; color: var(--dark);
}
.nsk-step-head h2 em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 400; }
.nsk-help { font-size: 13.5px; color: rgba(26,26,26,.6); margin: 0 0 16px; }
.nsk-help strong { color: var(--gold-dark); }

.nsk-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.nsk-opt { position: relative; display: block; cursor: pointer; }
.nsk-opt input { position: absolute; opacity: 0; pointer-events: none; }
.nsk-opt-inner {
  display: block; border: 1px solid rgba(26,26,26,.16); background: #fff;
  padding: 16px 18px; transition: .2s; height: 100%;
}
.nsk-opt:hover .nsk-opt-inner { border-color: var(--gold); }
.nsk-opt:has(input:checked) .nsk-opt-inner {
  border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); background: rgba(139,115,85,.05);
}
.nsk-opt-name { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; color: var(--dark); }
.nsk-opt-d { display: block; font-size: 12.5px; color: rgba(26,26,26,.5); margin-top: 3px; }

.nsk-volrow { display: flex; align-items: flex-end; gap: 14px; }
#nskVol {
  width: 150px; background: transparent; border: 0; border-bottom: 2px solid var(--gold);
  font-family: 'Barlow Condensed', sans-serif; font-size: 48px; color: var(--dark);
  text-align: center; outline: none; padding: 0 0 4px; -moz-appearance: textfield;
}
#nskVol::-webkit-outer-spin-button, #nskVol::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nsk-volunit { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; color: var(--gold); padding-bottom: 8px; }
.nsk-volerr { color: #b3261e; font-size: 13px; margin: 8px 0 0; }

.nsk-pills { display: flex; gap: 9px; flex-wrap: wrap; }
.nsk-pill { position: relative; cursor: pointer; }
.nsk-pill input { position: absolute; opacity: 0; pointer-events: none; }
.nsk-pill { border: 1px solid rgba(26,26,26,.18); background: #fff; padding: 11px 22px; border-radius: 40px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; transition: .2s; }
.nsk-pill:hover { border-color: var(--gold); }
.nsk-pill:has(input:checked) { background: var(--dark-warm); color: var(--cream-warm); border-color: var(--dark-warm); }
.nsk-locked {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(139,115,85,.07); border: 1px dashed rgba(139,115,85,.4); color: rgba(26,26,26,.7); font-size: 14.5px;
}
.nsk-locked svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.6; flex: none; }
.nsk-locked strong { color: var(--gold-dark); }
/* Defanzivno: hidden atribut mora da pobedi display iz klase */
.nsk-pills[hidden], .nsk-locked[hidden] { display: none; }

/* Debljina dna — dinamičke pločice-dugmad */
.nsk-pill-btn {
  border: 1px solid rgba(26,26,26,.18); background: #fff; padding: 11px 24px; border-radius: 40px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; color: var(--dark); cursor: pointer; transition: .2s;
}
.nsk-pill-btn:hover { border-color: var(--gold); }
.nsk-pill-btn.is-on { background: var(--dark-warm); color: var(--cream-warm); border-color: var(--dark-warm); }
/* Fiksna debljina (>100 L) — istaknuta zlatna, jasno da je određena prema veličini */
.nsk-pill-btn--fixed { cursor: default; }
.nsk-pill-btn--fixed:hover { border-color: rgba(26,26,26,.18); }
.nsk-pill-btn--fixed.is-on { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── Živa specifikacija (desno, sticky) ── */
.nsk-summary {
  background: var(--dark-warm); color: var(--cream-warm); padding: 34px 32px;
  position: sticky; top: 96px; box-shadow: 0 30px 70px rgba(20,16,10,.22); overflow: hidden;
}
.nsk-summary-mark { display: block; width: 42px; height: 2px; background: var(--copper); margin-bottom: 18px; }
.nsk-summary h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 500; font-size: 23px; margin: 0 0 20px; color: var(--cream); letter-spacing: .02em; }
.nsk-spec { margin: 0; }
.nsk-spec > div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid rgba(250,246,236,.08); }
.nsk-spec dt { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--copper-light); align-self: center; margin: 0; flex: 0 0 auto; }
.nsk-spec dd { font-family: 'Playfair Display', serif; color: var(--cream); text-align: right; margin: 0; font-size: .98rem; max-width: 60%; }
.nsk-spec-group {
  font-family: 'DM Sans', sans-serif; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper); padding: 16px 0 5px; border-bottom: 1px solid rgba(200,169,126,.25);
}
.nsk-spec-group:first-child { padding-top: 0; }
.nsk-spec-empty { color: rgba(250,246,236,.5); font-size: 14px; padding: 10px 0; }
.nsk-summary-note { font-size: 11.5px; color: rgba(250,246,236,.45); margin: 18px 0 0; line-height: 1.5; }
.nsk-summary-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px;
  padding: 14px; border: 1px solid rgba(200,169,126,.5); color: var(--copper-light);
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: .25s;
}
.nsk-summary-cta:hover { background: var(--copper); color: var(--dark-warm); border-color: var(--copper); }
.nsk-summary-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── Kontakt / slanje ── */
.nsk-contact { margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(26,26,26,.12); }
.nsk-contact-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; max-width: 760px; }
.nsk-contact-head h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: clamp(22px,2.6vw,30px); margin: 0 0 6px; color: var(--dark); }
.nsk-contact-head h2 em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 400; }
.nsk-contact-head p { font-size: 14px; color: rgba(26,26,26,.62); margin: 0; line-height: 1.6; }
.nsk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; }
.nsk-fields label { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); }
.nsk-fields .nsk-field-wide { grid-column: 1 / -1; }
.nsk-fields input, .nsk-fields textarea {
  width: 100%; margin-top: 7px; padding: 12px 14px; border: 1px solid rgba(139,115,85,.28);
  background: #fff; font-family: 'Barlow', sans-serif; font-size: 16px; color: var(--dark);
  text-transform: none; letter-spacing: normal; transition: border-color .2s, box-shadow .2s;
}
.nsk-fields input:focus, .nsk-fields textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(139,115,85,.12); }
.nsk-fields textarea { resize: vertical; line-height: 1.55; }
.nsk-consent { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0 0; max-width: 820px; cursor: pointer; font-size: 13.5px; color: rgba(26,26,26,.75); line-height: 1.55; }
.nsk-consent input { position: absolute; opacity: 0; }
.nsk-consent-mark { flex: none; width: 22px; height: 22px; border: 1.5px solid rgba(139,115,85,.5); background: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; margin-top: 1px; }
.nsk-consent-mark svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 3; opacity: 0; }
.nsk-consent input:checked + .nsk-consent-mark { background: var(--gold); border-color: var(--gold); }
.nsk-consent input:checked + .nsk-consent-mark svg { opacity: 1; }
.nsk-consent a { color: var(--gold); }
.nsk-req { color: #b3261e; }
.nsk-submit { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.nsk-tel { color: var(--gold-dark); font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: .04em; text-decoration: none; }
.nsk-tel:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .nsk-split { grid-template-columns: 1fr; }
  .nsk-summary { position: static; order: -1; }
  .nsk-opts { grid-template-columns: 1fr; }
  .nsk-fields { grid-template-columns: 1fr; }
}

/* CTA band na listingu kazana */
.nsk-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.nsk-band-inner > div { flex: 1 1 460px; }
.nsk-band-inner h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: clamp(26px,3.4vw,40px); margin: 8px 0 12px; color: var(--cream); letter-spacing: -.01em; }
.nsk-band-inner h2 em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--copper); font-weight: 400; }
.nsk-band-inner p { color: rgba(250,246,236,.72); font-size: 15px; line-height: 1.65; margin: 0; max-width: 60ch; }
.nsk-band-inner .btn { flex: none; }

/* Istaknut „Napravi svoj kazan" u kazani dropdown-u */
.nav-dropdown-feature {
  display: flex; align-items: center; gap: 9px; padding: 12px 16px; margin-bottom: 6px;
  background: linear-gradient(100deg, rgba(200,169,126,.16), rgba(200,169,126,.04));
  border: 1px solid rgba(200,169,126,.4); color: var(--copper-light) !important;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: .01em; text-decoration: none; transition: .2s;
}
.nav-dropdown-feature svg { width: 16px; height: 16px; fill: var(--copper); flex: none; }
.nav-dropdown-feature:hover { background: var(--copper); color: var(--dark-warm) !important; border-color: var(--copper); }
.nav-dropdown-feature:hover svg { fill: var(--dark-warm); }

