/* ============================================================
   font-zoom-patch.css — v2 (2026-04)
   Font corrections + zoom stilovi
   ============================================================ */

html { font-size: 17.5px; }

/* ── NAV — glavni meni ────────────────────────────────────── */
.main-nav-link,
.navbar-nav .nav-link {
  font-size: 0.95rem;   /* ~16.6px */
  font-weight: 600;
  letter-spacing: 0.01em;
}
.submenu-nav-link,
.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
}
/* Dropdown menu povećan padding za čitljivost */
.submenu-nav,
.dropdown-menu {
  padding: 8px 0;
}
.submenu-nav-link,
.dropdown-item {
  padding: 8px 20px;
}

/* ── BODY TEXT — opšti ───────────────────────────────────── */
body { font-size: 1rem; }

.about-content p,
.news-detail-body p,
.news-detail-body li,
section p {
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ── KARTICE / OPISI ─────────────────────────────────────── */
.module-card-desc,
.module-card-desc p,
.pkg-desc,
.benefit-desc,
.news-home-card-desc,
.news-home-card-desc p,
.news-content p,
.news-content div {
  font-size: 0.9rem;
  line-height: 1.65;
}
.module-card-title,
.news-content h5 { font-size: 1.25rem; }

/* ── PRODUCT STRANICE ────────────────────────────────────── */
.product-item-title a {
  font-size: 1.05rem;
  font-weight: 600;
}
.product-item-price   { font-size: 1.05rem; }
.product-box h2       { font-size: 1.5rem; }
.product-box p        { font-size: 0.92rem; }
.product-detail-body  { font-size: 0.95rem; }

/* ── FILTER SIDEBAR ─────────────────────────────────────── */
.filter-box label,
.filter-box h2,
.label-select,
.label-check { font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-area { font-size: 0.88rem; }
.footer-area li a { font-size: 0.88rem; }
.footer-copy { font-size: 0.82rem; }

/* ── NAVLINKS sidebar ────────────────────────────────────── */
.navlink-item a { font-size: 0.93rem; }
.cts .left_all_edit { font-size: 0.92rem; }

/* ── KONTAKT FORMA ───────────────────────────────────────── */
.cf-field input,
.cf-field textarea { font-size: 0.92rem; }
.cf-field label     { font-size: 0.85rem; }

/* ── PAGINACIJA ──────────────────────────────────────────── */
.pag-btn { font-size: 0.9rem; }

/* ── SEARCH ──────────────────────────────────────────────── */
.search-result-link       { font-size: 0.95rem; }
.search-result-group-title { font-size: 1.05rem; }

/* ── RESPONSIVE FONT SCALE ───────────────────────────────── */
@media only screen and (max-width: 1199px) { html { font-size: 17px; } }
@media only screen and (max-width: 767px)  { html { font-size: 16.5px; } }
@media only screen and (max-width: 575px)  { html { font-size: 16px; } }


/* ──────────────────────────────────────────────────────────
   ZOOM STILOVI ZA SLIKE U SADRŽAJU
   ─────────────────────────────────────────────────────────── */
.zoom-wrap {
  display: inline-block;
  position: relative;
  cursor: zoom-in;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.zoom-wrap::after {
  content: '\f00e';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: rgba(12, 30, 69, 0.30);
  opacity: 0;
  transition: opacity .22s;
  border-radius: var(--radius-md);
}
.zoom-wrap:hover::after { opacity: 1; }
.zoom-wrap img {
  display: block;
  transition: transform .3s ease;
  border-radius: 0;
}
.zoom-wrap:hover img { transform: scale(1.025); }
.example-image-link { cursor: zoom-in; }

/* Lightbox override */
.lb-data .lb-caption {
  font-family: var(--font);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.lb-data .lb-number { font-family: var(--font); font-size: 0.78rem; }
