/* === HEADER BASE (koristi tvoj postojeÄ‡i vibe) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.site-header .navbar {
  min-height: 80px;
  align-items: center;
  padding-inline: 20px;
}
.site-header,
.site-header .navbar,
.site-header .container-fluid {
  overflow: visible;
}

/* Brand + separator */
.navbar-brand {
  position: relative;
  margin-right: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 40px;
  width: auto;
  display: block;
}
.navbar-brand .d-lg-none {
  height: 32px;
}
.brand-sep {
  display: inline-block;
  width: 1px;
  height: 30px;
  background: #e5e7eb;
  margin-left: 0.75rem;
}

/* Nav linkovi / CTA */
.navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  text-transform: none;
  text-decoration: none !important;
  padding: 0 0.6rem;
}
.navbar .nav-link:hover {
  color: #2f55ff;
}
.nav-link.nav-strong {
  font-weight: 600 !important;
}
.navbar .auth-links {
  display: flex;
  gap: 0.5rem;
}
.navbar .btn-dark {
  background: #1f3cff;
  color: #fff;
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 1rem;
  transition: background 0.3s;
}
.navbar .btn-dark:hover {
  background: #111;
}
.badge-pass {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  background: #0a0a23;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.2;
  vertical-align: middle;
}

/* Mobile auth stack */
@media (max-width: 991.98px) {
  .navbar .auth-links {
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem 0 0;
    gap: 0.75rem;
  }
  .navbar .btn-dark {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

/* === KATEGORIJE (dugme) === */
.catmenu-wrap {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

/* Link varijanta â€“ bez â€œdugmetaâ€ */
.cat-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0; /* bez paddinga dugmeta */
  background: transparent; /* nema pozadine */
  border: 0;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}
.cat-trigger:hover {
  color: #2f55ff;
}
.cat-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 85, 255, 0.2);
  border-radius: 4px;
}

/* strelica: default okrenuta nadole (rot-90), rotira se na otvaranje */
.cat-trigger .caret {
  transform: rotate(-90deg);
  transition: transform 0.18s ease;
  opacity: 0.8;
}
.cat-trigger[aria-expanded="true"] .caret {
  transform: rotate(0deg);
}

/* ukloni stari stil dugmeta ako je ostao u CSS-u */
.btn-category-menu {
  all: unset;
}

/* === FLYOUT === */
.catmenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.1), 0 6px 14px rgba(2, 8, 23, 0.06);
  padding: 0.5rem;
  width: 300px;
  z-index: 2000;
}
.cm-list,
.cm-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cm-list > li,
.cm-sub > li {
  position: relative;
}

/* Stavke */
.cm-toggle,
.cm-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 0;
  font-size: 0.875rem;
  color: #222;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cm-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: #222;
  text-decoration: none;
}

.cm-link:hover {
  color: #2f55ff;
}
.cm-sub .cm-link {
  justify-content: flex-start;
  gap: 0.5rem;
}
.cm-toggle:hover,
.cm-link:hover {
  color: #222;
}

/* default zatvoren â†’ strelica desno */
.cm-caret {
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

/* kad je otvoreno â†’ strelica dole */
[data-open="true"] > .cm-toggle .cm-caret,
.cat-trigger[aria-expanded="true"] .cm-caret {
  transform: rotate(0deg);
}

/* Underline fill (samo duÅ¾ teksta) */
.cm-text {
  display: inline-block;
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0px 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
  font-size: 0.875rem;
}
.cm-toggle:hover .cm-text,
.cm-link:hover .cm-text,
[data-open="true"] > .cm-toggle .cm-text {
  background-size: 100% 1px;
}

/* Caret samo ako ima sub */
[data-cm] > .cm-toggle .cm-caret {
  display: inline-block;
  color: #94a3b8;
}
:not([data-cm]) > .cm-toggle .cm-caret {
  display: none;
}

/* Podmeni (flyout desno) */
.cm-sub {
  position: absolute;
  top: -6px;
  left: 100%;
  min-width: 300px;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.1), 0 6px 14px rgba(2, 8, 23, 0.06);
  display: none;
  padding: 0.5rem;
  z-index: 2001;
}
[data-open="true"] > .cm-sub {
  display: block;
}

/* Svi kursevi auto-dodat na kraj podliste */
.cm-all {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px dashed #eef1f6;
}
.cm-all .cm-all-link {
  display: block;
  padding: 0.6rem 1rem;
  font-weight: 400;
  color: #2f55ff;
  text-decoration: none;
  font-size: 0.75rem;
}
.cm-all .cm-all-link:hover {
  text-decoration: underline;
}

.cm-count {
  margin-left: 0.5rem;
  color: #8b95a7;
  font-weight: 400;
  font-size: 0.75rem;
}

/* Fokus tastaturom */
.catmenu :where(.cm-toggle, .cm-link):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 85, 255, 0.2);
  border-radius: 6px;
}

/* Mobile fullscreen kategorije */
@media (max-width: 991.98px) {
  .catmenu {
    position: fixed;
    top: 80px; /* visina headera */
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-radius: 0; /* ukloni zaobljenje */
    border-left: 0;
    border-right: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
  }

  .cm-sub {
    position: static;
    display: block;
    margin: 0.2rem 0 0.5rem 0;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .cm-toggle {
    font-weight: 600;
  }
}

/* === ACTIVE UNDERLINE LINKS === */
.site-header .navbar .nav-link {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.site-header .navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: #2f55ff;
  transition: right 0.25s ease;
}

.site-header .navbar .nav-link:hover::after,
.site-header .navbar .nav-link.is-active::after,
.site-header .navbar .nav-link[aria-current="page"]::after {
  right: 0;
}

.site-header .navbar .nav-link.active,
.site-header .navbar .nav-link[aria-current="page"] {
  color: #2f55ff;
  font-weight: 400;
}

.site-header .navbar .nav-link.active::after,
.site-header .navbar .nav-link[aria-current="page"]::after {
  right: 0;
  background: #2f55ff;
  height: 1px;
}

.cm-link.is-active .cm-text,
[data-open="true"] > .cm-toggle .cm-text {
  background-size: 100% 1px;
  color: #2f55ff;
}

@media (max-width: 991.98px) {
  .site-header .navbar .nav-link::after {
    bottom: -4px;
  }
}

/* Vidljivo samo ispod 991px */
@media (min-width: 992px) {
  .btn-categories {
    display: none !important;
  }
}
/* sakrij Kategorije link/flyout ispod 992px; prikaÅ¾i hamburger desno */
@media (max-width: 991.98px) {
  .catmenu-wrap {
    display: none !important;
  }
  .mobile-hamburger {
    display: inline-flex !important;
  }
}
/* default: hamburger skriven na desktopu */
.mobile-hamburger {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
}
.mobile-hamburger svg {
  display: block;
}

.mobile-hamburger svg {
  display: block;
}

/* =====================
   MOBILE OFFCANVAS MENU
   ===================== */

/* Container */
.ks-menu {
  width: 90vw;
  max-width: 370px;
  background: #fff;
  border-right: 1px solid #eee;
}

/* Topbar: logo â† | â†’ X ; u podpanelima .show-back menja logo za Nazad */
.ks-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.ks-logo {
  height: 36px;
  width: auto;
  order: 1;
  display: block;
}

@media (max-width: 420px) {
  .ks-logo {
    height: 32px;
  }
}

.ks-back {
  order: 1;
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font-size: 14px;
  color: #222;
}
.ks-close {
  order: 3;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #222;
}
.ks-close:hover {
  background: #f2f4f7;
}
.ks-topbar.show-back .ks-logo {
  display: none !important;
}
.ks-topbar.show-back .ks-back {
  display: flex !important;
}

/* Body & list */
.ks-body {
  padding: 0;
}
.ks-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ks-main {
  padding: 8px 0;
}
.ks-list.ks-main .ks-link {
  padding-top: 6px;
  padding-bottom: 6px;
}
.ks-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  background: transparent;
  border: 0;
  text-align: left;
}
.ks-link:hover {
  text-decoration: underline;
}

.ks-all-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: #2f55ff;
  text-decoration: none;
}

.ks-all-link:hover {
  text-decoration: underline;
}

/* Strelica samo za stavke sa podnivoom */
.ks-next::after {
  content: "";
  width: 14px;
  height: 14px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='9 6 15 12 9 18' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center/contain no-repeat;
  background: #aaa;
  display: inline-block;
}
a.ks-link::after {
  display: none !important;
}

/* Panely */
.ks-panel {
  display: none;
}
.ks-panel.is-active {
  display: block;
}
.ks-title {
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}

/* User kartica */
.ks-user {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  text-align: left;
}
.ks-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.ks-user-name {
  font-weight: 600;
  color: #111;
}
.ks-user-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

/* Linije â€“ puna i isprekidana (kraÄ‡e, ne do ivica) */
.ks-rule {
  border: 0;
  border-top: 1px solid #a8abb2;
  margin: 8px 18px;
}
.ks-rule.dashed {
  border: none;
  height: 1px;
  margin: 5px 20px;
  background-image: radial-gradient(circle, #222 1px, transparent 1px);
  background-size: 10px 100%;
}

.ks-panel .ks-search {
  width: 100%;
  max-width: 334px; /* tvoja željena širina */
  margin: 1rem auto 1.4rem; /* auto = centrirano */
  position: relative;
  box-sizing: border-box;
}

/* Search input */
.ks-panel .ks-search-input {
  width: 100%;
  padding: 0.55rem 2.4rem 0.55rem 0.9rem;
  font-size: 0.75rem;
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
  background: #fff;
  color: #222;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.ks-panel .ks-search-input:focus {
  border-color: #0057ff;
  box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.12);
}

/* Ikonica */
.ks-panel .ks-search-icon {
  position: absolute;
  right: 0.9rem; /* fino poravnato u okviru 334px širine */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

.ks-panel .ks-search-icon svg {
  width: 16px;
  height: 16px;
}

/* Pretplata (link + badge + podnapis) */
.ks-subscribe {
  margin-top: 20px;
  padding: 0 18px 12px;
}
.ks-subscribe-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f3cff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ks-subscribe-link:hover {
  text-decoration: underline;
}
.ks-subscribe .badge-pass {
  background: #222;
  color: #fff;
  font-size: 0.5rem;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 400;
}
.ks-subtext {
  font-size: 0.75rem !important;
  color: #6b7280 !important;
}

/* Footer actions â€“ NOVA nezavisna dugmad (vertikalno) */
.ks-actions {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ks-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s ease;
  font-size: 15px;
}
.ks-action-btn.fill {
  background: #1f3cff;
  color: #fff;
}
.ks-action-btn.outline {
  background: #f4f5f7;
  color: #222;
}
.ks-action-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* blok za stavke sa ikonama */
.ks-list.ks-account .ks-link {
  display: flex;
  align-items: center;
  gap: 12px; /* razmak ikonicaâ€“tekst */
  justify-content: flex-start; /* nemoj space-between */
  padding: 14px 18px;
}

.ks-link .ks-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222; /* boja ikonice */
  flex-shrink: 0;
}

.ks-link .ks-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* tipografija teksta */
.ks-link .ks-label {
  font-size: 0.875rem;
  font-weight: 400;
}

/* separator (kao na slici) po Å¾elji */
.ks-list.ks-account .ks-link + .ks-link {
  border-top: 1px solid #eee;
}

/* Ako Å¾eliÅ¡ malo kompaktniji razmak SAMO za ovu grupu: */
.ks-list.ks-account .ks-link {
  padding-block: 12px;
}

.ks-logout {
  color: #ff443d;
  font-weight: 600;
}

.ks-logout:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.ks-logout {
  color: #ff443d;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}

/* =========================
   HEADER (desktop only)
   ========================= */

/* Bazni header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.site-header .navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding-inline: 20px;
}
.site-header,
.site-header .navbar,
.site-header .container-fluid {
  overflow: visible;
}

/* Brand + separator */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  padding-right: 1rem;
  position: relative;
}
.navbar-brand img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 36px;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    height: 32px;
  }
}

.brand-sep {
  display: inline-block;
  width: 1px;
  height: 30px;
  background: #e5e7eb;
  margin-left: 0.75rem;
}

/* Nav linkovi */
.navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  text-decoration: none !important;
  padding: 0 0.6rem;
  position: relative;
  display: inline-block;
}
.navbar .nav-link:hover {
  color: #2f55ff;
}

/* underline efekt */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: #2f55ff;
  transition: right 0.25s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.is-active::after,
.navbar .nav-link[aria-current="page"]::after {
  right: 0;
}

/* Badge (PASS) */
.badge-pass {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  background: #0a0a23;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.2;
  vertical-align: middle;
}

/* =========================
   LOGGED-IN blok (desktop)
   ========================= */

.site-header .col-header-options.logged-in {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.938rem; /* ~15px */
  padding-left: 1.25rem;
}

/* vertikalni separator levo od user bloka */
.site-header .col-header-options.logged-in::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.875rem; /* 30px */
  background: #e5e7eb;
  transform: translateY(-50%);
}

/* grupacije dugmadi */
.site-header .col-header-options .btn-group {
  display: inline-flex;
  align-items: center;
}

/* bazno dugme (ikonice, user) */
.site-header .col-header-options .btn,
.site-header .col-header-options .btn-icon,
.site-header .col-header-options .btn-icon-dropdown,
.site-header .col-header-options .btn-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem; /* 40px */
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  line-height: 1;
}

/* zvonce / male ikone */
.site-header .col-header-options .btn-icon {
  width: 1.875rem; /* 30px */
  margin-right: 0.938rem;
}
.site-header .col-header-options .btn-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* user dugme (avatar + ime + srce) */
.site-header .col-header-options .btn-user {
  margin-right: 1.313rem;
}
.site-header .col-header-options .btn-user .media {
  display: inline-flex;
  align-items: center;
}
.site-header .col-header-options .btn-user .media-image {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem; /* 50 */
  height: 3.125rem;
  padding: 0.188rem; /* 3 */
  border-radius: 50%;
  overflow: hidden;
}
.site-header .col-header-options .btn-user .media-image img,
.site-header .col-header-options .btn-user .media-image .ks-avatar {
  width: 2.5rem;
  height: 2.5rem; /* 40 */
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
/* sakrij fallback SVG ako postoji slika */
.site-header .col-header-options .btn-user .media-image img ~ svg {
  display: none;
}

.site-header .col-header-options .btn-user .media-body {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* 6px ime–srce */
  font-weight: 400;
  color: #222;
}
.site-header .col-header-options .btn-user .media-body span {
  font-size: 0.875rem;
}

/* srce + badge */
.site-header .col-header-options .user-notification {
  position: relative;
}
.site-header .col-header-options .user-notification svg {
  width: 1.25rem;
  height: 1.25rem;
}
.site-header .col-header-options .user-notification .badge {
  position: absolute;
  top: -0.375rem;
  left: calc(100% - 0.375rem);
  padding: 0.25em 0.5em;
  line-height: 1;
}

.col-header-options .btn-user .user-notification .badge {
  background-color: #ff443d !important;
  color: #fff;
  font-size: 0.625rem !important;
}

.site-header .col-header-options .btn-user .user-notification .badge,
.site-header .col-header-options .btn-user .user-notification .badge.bg-danger {
  border-radius: 4px !important;
}

/* =========================
   CARET dugme (uvek sivo)
   ========================= */

/* kvadratno sivo dugme sa centriranom strelicom */
.site-header .col-header-options .btn-icon-dropdown {
  background: #f8f9fb;
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  color: #334155;
}
.site-header .col-header-options .btn-icon-dropdown.dropdown-toggle::after {
  display: none;
}

.site-header .col-header-options .btn-icon-dropdown:hover {
  background: #eef1f6;
  border-color: #d8dde6;
  color: #1f2937;
}

/* (opciono) ako koristiš i manju varijantu u ostatku koda */
.site-header .col-header-options .btn-icon-dropdown--sm {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  margin-left: 0.375rem;
  /* svg u manjem */
}
.site-header .col-header-options .btn-icon-dropdown--sm svg {
  width: 0.625rem;
  height: 0.625rem;
}

/* =========================
   Dropdown (Bootstrap look)
   ========================= */
.site-header .col-header-options .dropdown-menu {
  border: 1px solid #eef1f6;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.1), 0 6px 14px rgba(2, 8, 23, 0.06);
  padding: 0.5rem;
  min-width: 260px;
}
.site-header .col-header-options .dropdown-lg.dropdown-menu {
  min-width: 320px;
}

.site-header .col-header-options .dropdown-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}
.site-header .col-header-options .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9375rem;
}
.site-header .col-header-options .dropdown-item.active,
.site-header .col-header-options .dropdown-item:active {
  background: #eef2ff;
  color: #1f3cff;
}
.site-header .col-header-options .dropdown-item.logout {
  color: #ff443d;
  font-weight: 600;
}
.site-header .col-header-options .dropdown-item svg {
  width: 1rem;
  height: 1rem;
}
.site-header .col-header-options .dropdown-divider {
  margin: 0.4rem 0;
  border-top-color: #eef1f6;
}

/* =========================
   Utility (po želji)
   ========================= */
.gap-lg-3 {
  gap: 1rem !important;
} /* ako koristiš ovu klasu u headeru */

/* === RESPONSIVE ================================================ */
@media (max-width: 991.98px) {
  /* u mobilnom headeru smanji avatar i visinu */
  .site-header .col-header-options .btn,
  .site-header .col-header-options .btn-icon,
  .site-header .col-header-options .btn-icon-dropdown,
  .site-header .col-header-options .btn-user {
    height: 2.25rem; /* 36px */
  }
  .site-header .col-header-options .btn-user .media-image {
    width: 2.5rem; /* 40px */
    height: 2.5rem;
  }
  .site-header .col-header-options .btn-user .media-image img {
    width: 2.125rem; /* 34px */
    height: 2.125rem;
  }
  .site-header .col-header-options.logged-in::before {
    height: 1.5rem;
  }
}

/* Sakrij logged-in meni na <= 991.98px */
@media (max-width: 991.98px) {
  .site-header .col-header-options.logged-in {
    display: none !important;
  }
}

/* Ispod 1200px (tj. do 1199.98px) smanji razmak */
@media (max-width: 1099.98px) {
  .gap-lg-3 {
    gap: 0rem !important;
  }
}
