.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ======= DESNI FIKSNI MENI I OGRANIČENJE SADRŽAJA ======= */

/* Glavni meni (već postoji, dodato radi kompletnosti) */
.desni-meni {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background: #fff;
  box-shadow: -3px 0 15px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  transition: transform 0.4s ease;
}

/* Pomeri ceo glavni sadržaj ulevo — da ne ide ispod menija */
body {
  margin-right: 250px;
  overflow-x: hidden;
}

/* Ograniči širinu glavnog sadržaja sajta */
.elementor-location-single,
.elementor-location-archive,
.elementor-location-footer,
.elementor-location-header ~ main,
main,
#content {
  max-width: calc(100vw - 250px);
  box-sizing: border-box;
}

/* Mobilni i tablet - meni skriven dok se ne klikne */
@media (max-width: 1024px) {
  .desni-meni {
    transform: translateX(100%);
  }
  .desni-meni.otvoren {
    transform: translateX(0);
  }

  /* Poništi margine i širine za mobilne i tablet */
  body {
    margin-right: 0;
  }
  .elementor-location-single,
  .elementor-location-archive,
  .elementor-location-footer,
  .elementor-location-header ~ main,
  main,
  #content {
    max-width: 100vw;
  }
}

/* === SAM MENI - FIX ACCORDION + CENTRIRANJE PODMENIJA === */

.desni-meni .sam-meni,
.desni-meni .sam-meni ul,
.desni-meni .sam-meni li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* osnovni izgled menija */
.desni-meni .sam-meni {
  display: flex;
  flex-direction: column;
  align-items: center; /* centriranje glavnih linkova */
  width: 100%;
}

/* svi linkovi — glavni i podmeni */
.desni-meni .sam-meni a {
  display: block;
  width: 100%;
  text-align: center; /* centriraj tekst */
  text-decoration: none;
  color: #333;
  padding: 10px 0;
  transition: color 0.3s;
}

/* podmeni — ukloni poziciju, lebdenje i offset */
.desni-meni .sam-meni ul.sub-menu {
  position: static !important;
  display: none;
  background: transparent !important;
  box-shadow: none !important;
  width: 100%;
  text-align: center;
  padding: 0;
}

/* podmeni linkovi */
.desni-meni .sam-meni ul.sub-menu a {
  width: 100%;
  text-align: center !important;
  display: block;
  color: #555;
  font-size: 0.95em;
}

/* otvori podmeni kad roditelj ima klasu "otvoren" */
.desni-meni .sam-meni li.otvoren > ul.sub-menu {
  display: block;
}

/* hover efekti */
.desni-meni .sam-meni a:hover {
  color: #000;
}

/* opcioni border i odvajanje */
.desni-meni .sam-meni li {
  border-bottom: 1px solid #eee;
  width: 100%;
  text-align: center;
}/* End custom CSS */