.has-mega {
  position: relative;
}

.mega-menu-elementor {
  display: none;
  position: absolute;
  top: 100%; /* ispod menija */
  left: 50%; /* pomera od leva 50% */
  transform: translateX(-50%); 
  width: auto; /* prilagodi širinu */
  /* min-width: 300px; */
  border-radius: 10px !important;
  background: inherit;
  z-index: 9999;
  height: auto;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
}

.has-mega:hover > .mega-menu-elementor {
  display: block;
}



@media (max-width: 1024px) {
    .has-mega > .mega-menu-elementor {
        display: none !important;
    }
}

