*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --crvena: #c41e2a;
  --crvena-tamna: #9b1520;
  --zlatna: #d4a017;
  --zlatna-svijetla: #f0c850;
  --bijela: #fffdf7;
  --papir: #f8f2e7;
  --tekst-tamni: #2b1810;
  --tekst-meki: #5c3d2e;
  --linija: rgba(196, 30, 42, 0.16);
  --sjena: 0 16px 42px rgba(43, 24, 16, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", Arial, sans-serif;
  background: var(--bijela);
  color: var(--tekst-tamni);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--crvena);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(196, 30, 42, 0.2);
}

.nav-logo-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--crvena);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--tekst-tamni);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zlatna);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--crvena);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--linija);
  border-radius: 6px;
  background: transparent;
  color: var(--crvena);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(196, 30, 42, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.03) 0%, rgba(212, 160, 23, 0.05) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.ornament-top {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--crvena) 0,
    var(--crvena) 12px,
    var(--zlatna) 12px,
    var(--zlatna) 16px,
    var(--crvena) 16px,
    var(--crvena) 28px,
    transparent 28px,
    transparent 36px
  );
  opacity: 0.5;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 590px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--zlatna), var(--zlatna-svijetla));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.24);
}

.hero-badge svg,
.eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero-title,
.page-title,
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--tekst-tamni);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.hero-title span,
.section-title span {
  color: var(--crvena);
  position: relative;
}

.hero-title span::after,
.section-title span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 160, 23, 0.2);
  z-index: -1;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--zlatna);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-desc,
.lead,
.section-copy,
.card p,
.contact-line,
.footer p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--tekst-meki);
  font-weight: 300;
}

.hero-desc {
  max-width: 510px;
  margin-bottom: 34px;
}

.quick-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 38px;
}

.qbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1.5px solid rgba(196, 30, 42, 0.2);
  border-radius: 6px;
  background: rgba(196, 30, 42, 0.03);
  text-decoration: none;
  color: var(--crvena-tamna);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.qbtn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.qbtn:hover {
  background: var(--crvena);
  color: #fff;
  border-color: var(--crvena);
  transform: translateY(-2px);
}

.qbtn:hover svg {
  color: #fff;
}

.hero-cta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta {
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 0;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--crvena);
  color: #fff;
  box-shadow: 0 6px 24px rgba(196, 30, 42, 0.28);
}

.btn-primary:hover {
  background: var(--crvena-tamna);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 30, 42, 0.34);
}

.btn-secondary {
  background: transparent;
  color: var(--tekst-tamni);
  border: 2px solid var(--zlatna);
}

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

.tradition {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
}

.tradition-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(196, 30, 42, 0.08));
}

.tradition-icon svg {
  width: 22px;
  height: 22px;
  color: var(--zlatna);
}

.tradition p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--tekst-meki);
  line-height: 1.5;
}

.hero-visual img {
  width: 112%;
  max-width: none;
  margin-left: -6%;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.10));
}

.page-hero {
  padding: 150px 48px 72px;
  background:
    linear-gradient(135deg, rgba(196, 30, 42, 0.04), rgba(212, 160, 23, 0.08)),
    var(--bijela);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--crvena) 0 12px, var(--zlatna) 12px 16px, transparent 16px 28px);
  opacity: 0.5;
}

.page-hero-inner,
.section-inner,
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.lead {
  max-width: 720px;
}

.section {
  padding: 82px 48px;
}

.section.alt {
  background: var(--papir);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sjena);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.card, a.card.step {
  cursor: pointer;
}

a.card:hover, a.card.step:hover,
button.card:hover, button.card.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(43, 24, 16, 0.14);
  border-color: var(--crvena);
}

a.card.step:hover .step-number,
button.card.step:hover .step-number {
  background: var(--zlatna);
}

a.card.step:hover h3::after,
button.card.step:hover h3::after {
  content: " →";
  color: var(--crvena);
}

.card-body {
  padding: 24px;
}

.card h2,
.card h3,
.step-number,
.contact-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--crvena);
}

.card h2,
.card h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.price {
  display: inline-block;
  margin-top: 18px;
  color: var(--tekst-tamni);
  font-weight: 600;
}

.feature-list,
.plain-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li,
.plain-list li {
  padding-left: 24px;
  position: relative;
  color: var(--tekst-meki);
  line-height: 1.65;
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--zlatna);
  border-radius: 50%;
}

.steps {
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 18px;
  padding: 24px;
}

.step-number {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--crvena);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  transition: background 0.22s ease;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery figure {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sjena);
  border: 1px solid rgba(212, 160, 23, 0.22);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  padding: 16px 18px;
  color: var(--tekst-meki);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--sjena);
}

.contact-card h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.contact-line {
  margin: 12px 0;
}

.contact-line strong {
  color: var(--tekst-tamni);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--tekst-tamni);
  font-weight: 500;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(196, 30, 42, 0.24);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf7;
  color: var(--tekst-tamni);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  padding: 36px 48px;
  background: var(--tekst-tamni);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.text-link {
  color: var(--crvena);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--zlatna);
}

/* ── Ček lista ── */
.checklist-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  max-width: 1100px;
}

.checklist-progress {
  grid-column: 1 / -1;
}

.checklist-group {
  margin-bottom: 10px;
}

.checklist-group-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  color: var(--crvena);
  margin-bottom: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(196, 30, 42, 0.15);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s ease;
  position: relative;
}

.checklist-item:hover {
  background: rgba(196, 30, 42, 0.04);
}

.checklist-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(196, 30, 42, 0.3);
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.checkmark::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.checklist-item input:checked ~ .checkmark {
  background: var(--crvena);
  border-color: var(--crvena);
}

.checklist-item input:checked ~ .checkmark::after {
  opacity: 1;
}

.checklist-item input:checked ~ span:not(.checkmark) {
  text-decoration: line-through;
  color: #aaa;
}

.checklist-item > span:not(.checkmark) {
  font-size: 0.87rem;
  color: var(--tekst-tamni);
  flex: 1;
  transition: color 0.18s, text-decoration 0.18s;
}

.checklist-link {
  font-size: 0.78rem;
  color: var(--zlatna);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.18s;
}

.checklist-item:hover .checklist-link {
  opacity: 1;
}

.checklist-progress {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.checklist-bar {
  flex: 1;
  min-width: 160px;
  height: 8px;
  background: rgba(196, 30, 42, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.checklist-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--crvena), var(--zlatna));
  border-radius: 99px;
  transition: width 0.35s ease;
}

#checklist-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tekst-meki);
  white-space: nowrap;
}

.checklist-reset {
  background: none;
  border: 1px solid rgba(196, 30, 42, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--tekst-meki);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}

.checklist-reset:hover {
  border-color: var(--crvena);
  color: var(--crvena);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 24, 16, 0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bijela);
  border-radius: 12px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(43, 24, 16, 0.22);
  border-top: 4px solid var(--crvena);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--tekst-meki);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--crvena);
}

.order-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--crvena);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(196, 30, 42, 0.28);
}

.viber-float {
  position: fixed;
  right: 20px;
  bottom: 76px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7360f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(115, 96, 242, 0.40);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.viber-float svg {
  width: 28px;
  height: 28px;
}

.viber-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 30px rgba(115, 96, 242, 0.50);
}

/* ── Veliki PC (1400px+) ── */
@media (min-width: 1400px) {
  .hero {
    padding: 130px 80px 80px;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  }

  .section {
    padding: 96px 80px;
  }

  .page-hero {
    padding: 160px 80px 88px;
  }
}

/* ── Laptop / Tablet (do 1024px) ── */
@media (max-width: 1024px) {
  .nav {
    padding: 12px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fffdf7;
    border: 1px solid rgba(196, 30, 42, 0.18);
    border-radius: 8px;
    box-shadow: var(--sjena);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 13px 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 118px 28px 52px;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .quick-btns {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-cta,
  .button-row {
    justify-content: center;
  }

  .tradition {
    text-align: left;
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  /* grid-3 → 2 kolone na laptopu/tabletu */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* grid-2 ostaje 2 kolone do 768px */
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Tablet portret / veliki mobilni (do 768px) ── */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .checklist-wrap {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 28px;
  }

  .page-hero {
    padding: 130px 28px 56px;
  }
}

/* ── Mobilni (do 640px) ── */
@media (max-width: 640px) {
  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-logo img {
    width: 46px;
    height: 46px;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .quick-btns {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta,
  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-box {
    padding: 28px 20px;
  }

  .checklist-wrap {
    gap: 0;
  }
}

/* ── Lightbox ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lb-overlay.open {
  display: flex;
}

.lb-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  user-select: none;
}

.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  z-index: 9001;
}

.lb-close:hover { opacity: 1; }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 72px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.lb-nav:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-caption {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  pointer-events: none;
}

/* Kursor pointer na svim klikabilnim slikama */
.gallery img,
.card img,
.hero-visual img {
  cursor: zoom-in;
}
