/* Unified Like/Favorite Button Styles */
.like-button {
    position: relative;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    padding: 0;
    outline: none;
}

.like-button::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #fff url('../img/heart.png') no-repeat center center;
    background-size: contain;
    transition: background 0.3s;
}

.like-button.liked::before,
.like-button.favorited::before {
    background: #fff url('../img/heart-full.png') no-repeat center center;
    background-size: contain;
}

.like-button.liked:hover,
.like-button.favorited:hover {
    background: #fff;
}

/* Toast notification styling */
#toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    height: 44px;
    line-height: 44px;
    overflow: hidden;
}

.toast {
    color: #000;
    padding: 12px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Plus button styling */
.plus-button {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 40px;
    height: 40px;
    background-color: #ffcc29;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plus-button:hover {
    background-color: #fff;
    transform: scale(1.1);
}

/* Upcoming sections sidebar */
.upcoming-sections {
    position: fixed;
    top: 44px;
    right: -300px; /* Start off-screen */
    width: 300px;
    height: calc(100vh - 88px); /* Subtract combined height of top and bottom navs */
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.upcoming-sections.active {
    right: 0;
}

.upcoming-sections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-sections-header h3 {
    color: #ffcc29;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.upcoming-sections-header .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.upcoming-sections-list {
    padding: 0;
}

.upcoming-header {
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
}

.upcoming-shop {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s;
    cursor: pointer;
    height: auto;
}

.upcoming-shop:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.upcoming-shop-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    object-fit: contain;
    background-color: white;
    padding: 4px;
}

.upcoming-shop-info {
    flex: 1;
    position: relative;
}

.upcoming-shop-name {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 4px;
    color: #ffcc29;
    padding-right: 40px;
}

.upcoming-shop-address {
    font-size: 11px;
    color: #fff;
    line-height: 1.2;
}

.no-upcoming {
    padding: 15px 10px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-style: italic;
}

.category-toggle-btn.active span:before {
  color: #ffcc29;
}

@media only screen and (max-width: 800px) {
    .upcoming-sections {
        width: 250px;
    }
    
    .plus-button {
        bottom: 80px;
    }
}

html body #videoTimer {
    position: relative;
    z-index: 999999;
    font-weight: 500;
    font-size: 14px;
    height: 44px;
    line-height: 44px;
  }
  
  html body #videoTimerContainer {
    position: absolute;
    bottom: 0;
    right: 96px;
    z-index: 999999;
    height: 44px;
    line-height: 44px;
  }
  
  /* Live indicator bubble */
  .live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: -16px;
    animation: pulse 1s infinite ease-in-out;
    animation-play-state: running; /* Default state */
    z-index: 999999;
    transition: all 0.3s ease;
  }
  
  /* Initial state class that will be applied when paused */
  .live-indicator.initial-state {
    transform: scale(1);
    box-shadow: none;
    opacity: 0.6;
  }
  
  /* Pulsating animation for the live indicator */
  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 0.8;
      box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
      transform: scale(1);
      opacity: 1;
      box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.5);
    }
    100% {
      transform: scale(0.9);
      opacity: 0.8;
      box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
  }

body.favorites .nav-menu-top-inside-right a.active {
  transform: none;
  background: #fff;
  padding-right: 40px;
}

body.favorites #navMenuTop .itemNumber {
  display: block;
  border: none;
  background: #369;
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  line-height: 28px;
}


.form_inside_twoColumns {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
}

html body #swal2-html-container > h3 {
  margin-top: 16px !important;
}

html body #swal2-html-container > img {
  margin-top: 32px !important;
}

.hitno-label {
    align-items: center;
    gap: 10px;
    margin: 1rem auto;
}

.formGeneral {
  text-align: left;
  display: block;
  margin: 1rem auto;
  font-family: "Open Sans", serif;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  padding: 2rem 0;
}

 h3 {
  margin-top: 1rem!important;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
}

.formGeneral textarea {
  display: block;
  width: 100%;
  min-height: 25vh;
  margin: 0 auto 1rem;
  border: solid 1px #000;
  resize: vertical;
  border-radius: 0;
  font-family: "Open Sans", serif;
  font-weight: 400;
  font-style: normal;
  color: #fc4c37;
  outline:none;
}

.formGeneral textarea:focus {
  display: block;
  width: 100%;
  min-height: 25vh;
  margin: 0 auto 1rem;
  border: solid 1px red;
  resize: vertical;
  border-radius: 0;
  font-family: "Open Sans", serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  outline:none;
}

#tema {
  background: #fff;
}

.basicSubmit:hover {
  background: #ffcc29;
  color: #000;
}

.basicSubmit {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 1rem auto;
  background: #fc4c37;
  height: 44px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500!important;
  position: relative;
  padding: 0 24px;
  line-height: 44px;
  transition: all .3s ease;
}

html body .nav-menu-top-inside-right a.cta-header.account {
  background-image: url("../img/account.png");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  background-color: transparent;
  padding: 0;
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 8px -4px 0 8px;
}

.nav-menu-top-inside-right a.account:hover {
  background-image: url("../img/account.png");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  background-color: #fff;
  padding: 0;
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 8px -4px 0 8px;
}

html body .menu-dropdown li.doboj {
  background-image: url("../img/doboj-grb.png");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left 8px center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}


.static-section {
  display: block;
  padding: 3rem 2rem;
  width: 100%;
  height: 100vh;
}

.nav-menu-top-inside-right a.activeLink {
  background: #fff;
}

html body .swal2-close, html body .swal2-close:hover {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  top: 16px;
  margin: 0;
  background-image: url("../img/close.png");
  background-size: cover;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  transition: all .3s ease-in-out;
}

html body .swal2-styled.swal2-confirm:focus {
  box-shadow: none;
}

html body .swal2-styled.swal2-confirm {
  background-color: #ffcc29;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 32px;
  height: 44px;
  line-height: 44px;
  outline: none;
  border: none;
  box-shadow: none;
}

html body #swal2-html-container > div > img {
  max-width: 160px !important;
  margin-top: 16px;
  margin-bottom: 16px;
  object-fit: contain;
  max-height: 120px;
}

html body #swal2-html-container > div {
  text-align: center !important;
}

.play-button.absolute {
  background-image: url("../img/play.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  font-size: 0;
}

.play-button.absolute:hover {
  background-image: url("../img/play.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  font-size: 0;
}

.itemNumber.activeNavmenuItem {
  background: #000;
  color: #fff;
}

h2.dobrodosli {
  text-transform: uppercase;
  font-size: 1.25rem;
}

.next-image {
  display: inline-block;
  vertical-align: top;
  margin: 7px 16px 0 16px;
  height: 36px;
  max-width: 76px;
  object-fit: contain;
  background-color: #fff;
  padding: .2rem .4rem;
  border-radius: 8px;
}

.absolute {
  position: absolute;
  right: 50%;
  top: -10px;
  height: 64px !important;
  width: 64px !important;
  margin-right: -32px;
  border: solid 4px #fff !important;
  box-shadow: 0 0 4px 2px rgba(0,0,0,.35);
}

.play-button.bottom-left {
  position: absolute;
  bottom: 32px;
  left: 32px;
  opacity: 0; /* Start fully transparent */
  animation: fadeIn 0.5s ease-in-out 2s forwards; /* Animation parameters */
  background-color: #ffcc29;
  font-weight: 700;
  line-height: 32px;
  font-size: 24px;
}


.play-button.bottom-right {
  position: absolute;
  bottom: 32px;
  right: 32px;
  opacity: 0; /* Start fully transparent */
  animation: fadeIn 0.5s ease-in-out 2s forwards; /* Animation parameters */
  background-image: url("../img/rating.png");
  background-size: cover;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  font-size: 0;
}

.play-button.top-left {
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 1;
  background-image: url("../img/heart.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  font-size: 0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.top-right-slider {
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}


html body .top-right-slider:hover {
  background-color: #fff;
}

html body .top-right-slider.liked {
  background-image: url("../img/heart-full.png");
  background-color: #ffcc29;
}

html body .top-right-slider.liked:hover {
  background-color: #fff;
}


html body .play-button.top-left {
  position: absolute;
  top: 24px;
  left: 48px;
  opacity: 1;
  background-image: url("../img/heart.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  font-size: 0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

html body .play-button.top-left:hover {
  background-color: #fff;
}

html body .play-button.top-left.liked {
  background-image: url("../img/heart-full.png");
  background-color: transparent;
}
  
.play-button.top-right {
  position: absolute;
  top: 24px;
  right: 48px;
  background-color: #ffcc29;
  background-image: url("../img/close.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  font-size: 0;
  z-index: 99999999;
  border-radius: 50%;
}

html body .leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
  width: auto!important;
  max-width: 120px !important;
  object-fit: contain;
}

#mapWrapper {
  display: none;
}

#mapWrapper.visible {
  display: block;
  height: 100vh!important;
  width: 100%!important;
}

html body #map {
  height: 100vh!important;
  width: 100%!important;
}

#map { 
  height: 100vh;
  width: 100%;
}

#map.visible {
  opacity: 1;
  visibility: visible;
}

ul {
  list-style-type: none;
}

html body .menu-dropdown li.food {
  background-image: url("../img/food.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: left 8px center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

html body .menu-dropdown li.drinks {
  background-image: url("../img/drinks.png");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: left 7px center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

html body .menu-dropdown li.cosmetix {
  background-image: url("../img/cosmetix.png");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: left 7px center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

html body .menu-dropdown li.tech {
  background-image: url("../img/tech.png");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: left 7px center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.catalogs-container {
  display: block;
  width: 100%;
  text-align: left;
}

.catalog-item {
  display: inline-block;
  vertical-align: top;
  max-height: 96px;
  margin: 0 16px 0 0;
}

.catalog-item img {
  display: block;
  max-height: 96px;
  margin: 0 auto 4px;
  border: solid 2px #000;
}

body .menu-dropdown li {
  text-align: left;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  background: #fff;
  border-radius: 16px;
  margin: 0 0 10px 0;
  padding: 0 0 0 42px;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.menu {
  display: block;
  position: relative;
  cursor: pointer;
}

.menu-title {
  display: block;
  width: 100%;
  height: 28px;
  margin-bottom: 0;
  line-height: 28px;
  transition: 0.3s background-color;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-title:after {
  content: "";
  display: block;
  height: 0;
  border-bottom: 0 solid #ebebeb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 101;
  transition: 0.2s border-bottom ease-in;
}

.menu:hover > .menu-title:after {
  border-bottom-width: 5px;
  transition: 0.2s 0.2s border-bottom-width ease-out;
}

.menu-dropdown {
  min-width: 100%;
  padding: 16px 16px 8px 16px;
  position: absolute;
  background-color: #ffcc29;
  z-index: 100;
  transition: 0.5s padding, 0.5s background-color;
  left: 0;
  top: 32px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.menu-dropdown:after {
  content: "";
  display: block;
  height: 0;
  border-top: 5px solid #ebebeb;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  transition: 0.5s border-top;
}

.menu:not(:hover) > .menu-dropdown {
  padding: 0;
  z-index: 99;
}

.menu:not(:hover) > .menu-dropdown:after {
  border-top-color: #dddddd;
}

.menu:not(:hover) > .menu-title:after {
  border-bottom-color: #dddddd;
}

.menu-dropdown > * {
  overflow: hidden;
  height: 30px;
  padding: 5px 10px;
  background: rgba(0,0,0,0);
  white-space: nowrap;
  transition: 
    0.5s height cubic-bezier(.73,.32,.34,1.5),
    0.5s padding cubic-bezier(.73,.32,.34,1.5),
    0.5s margin cubic-bezier(.73,.32,.34,1.5),
    0.5s 0.2s color,
    0.2s background-color;
}

.menu-dropdown > *:hover {
  background: #fff;
  box-shadow: 0px 3px 4px rgba(0,0,0,.2);
}

.menu:not(:hover) > .menu-dropdown > * {
  visibility: hidden;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  color: rgba(25,25,25,0);
  transition: 
    0.5s 0.1s height,
    0.5s 0.1s padding,
    0.5s 0.1s margin,
    0.3s color,
    0.6s visibility;
  z-index: 99;
}

.hList > * {
  float: left;
}

.hList > * + * {
  margin-left: 0;
}





html body .nav-menu-top-inside-right .cta-header.activeCta {
  background-color: #fff;
}

.nav-menu-top-inside-right a.cta-header.auto {
  background-image: url("../img/auto.png");
  background-size: cover;
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
}

.nav-menu-top-inside-right a.cta-header.pjesak {
  background-image: url("../img/pjesak.png");
  background-size: cover;
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
}

.nav-menu-top-inside-right a.cta-header.biciklo {
  background-image: url("../img/biciklo.png");
  background-size: cover;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
}

.nav-menu-top-inside-right .cta-header.karta {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin: 8px -4px 0 8px;
    background-image: url("../img/marker.png");
    background-size: cover;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ffcc29;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 0;
    transition: all .3s ease-in-out;
}

.nav-menu-top-inside-right .cta-header.video {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin: 8px -4px 0 8px;
    background-image: url("../img/auto.png");
    background-size: cover;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ffcc29;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 0;
    transition: all .3s ease-in-out;
}

.nav-menu-top-inside-right .cta-header.fullscreen {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin: 8px -4px 0 8px;
    background-image: url("../img/fullscreen.png");
    background-size: cover;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ffcc29;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 0;
    transition: all .3s ease-in-out;
    border: none;
    border-radius: 50%;
}

html body .nav-menu-top-inside-right .cta-header.fullscreen.activeCta {
    background-image: url("../img/fullscreen-active.png");
    background-size: cover;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
}

body .nav-menu-top-inside-right a.tv.cta-header {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 8px -4px 0 8px;
  background-image: url("../img/tv.png");
  background-size: cover;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  transition: all .3s ease-in-out;
}

.nav-menu-top-inside-right .cta-header.login {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 8px -4px 0 8px;
  background-image: url("../img/login.png");
  background-size: cover;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffcc29;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  transition: all .3s ease-in-out;
}

html body .nav-menu-top-inside-right .cta-header:hover {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
    background-color: #fff;
    font-size: 0;
    padding: 0;
    
    margin: 8px -4px 0 8px;
}

.nav-menu-top-inside-right a.cta-header {
    display: inline-block;
    padding: 0;
    font-size: 0;
    width: 28px;
    height: 28px;
    background: #fff;
    margin: 8px -4px 0 8px;
    vertical-align: middle;
    border-radius: 50%;
}

.dynamic-section {
    display: none;
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: calc(100vh - 88px); /* Subtract the combined height of both nav menus (44px + 44px) */
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 10;
    overflow: hidden;
    color: #fff;
    background: rgba(0,0,0,.6);
    visibility: hidden;
}

.dynamic-section.active {
    display: block;
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out;
}

.dynamic-section.exiting {
    transform: translate(-50%, -50%) scale(1) !important; /* Keep at full scale during exit */
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Just fade out, don't scale */
    visibility: visible;
    pointer-events: none !important; /* Disable all user interactions when exiting */
}

.inside-wrapper {
    display: block;
    width: 85%;
    height: 70vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    overflow: hidden;
}

#zimbIntro {
    width: 640px;
    height: 257px;
    position: fixed;
    top: -257px;
    left: 50%;
    margin: -128px 0 0 -320px;
    color: #000;
    padding: 0;
    display: flex;
    transition: top .5s ease-in-out;
    z-index: 9999;
}

#zimbIntro.showZimb {
  width: 640px;
  height: 257px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -128px 0 0 -320px;
  color: #000;
  padding: 0;
  display: flex;
  transition: top .5s ease-in-out;
  z-index: 9999;
}

.zimbLogoXS {
  height: 36px;
  margin-top: 5px;
}

.zimbLogoXL {
  width: 640px;
  height: 257px;
}

  .pin {
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    background: #fff;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -32px 0 0 -19px;
    animation-name: bounce;
    animation-fill-mode: both;
    animation-duration: 1s;
  }
  
  .pin:after {
    content: '';
    width: 16px;
    height: 16px;
    margin: 0;
    background: #000;
    position: absolute;
    border-radius: 50%;
    top: 12px;
    left: 12px;
  }
  
  .pulse {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    transform: rotateX(55deg);
    z-index: -2;
  }
  
  .pulse:after {
    content: '';
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    animation: pulsate 1s ease-out infinite;
    opacity: 0.0;
    box-shadow: 0 0 1px 2px #ffcc29;
    animation-delay: 1.1s;
  }
  
  @keyframes pulsate {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0.0;
    }
    50% {
      opacity: 1.0;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }
  
  @keyframes bounce {
    0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
    60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
    }
    80% {
      transform: translateY(-10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }

  .catalogs-wrapper {
    display: block;
    width: 100%;
    padding: 24px 10px;
  }

  /* New styles for grid-based catalog layout */
  .catalogs-section {
    display: block;
    min-height: 200px;
    margin-top: 20px;
    transition: height 0.3s ease;
  }

  .catalogs-wrapper {
    height: 100%;
  }

  .pdf-catalog {
    display: block;
    margin: 0;
    cursor: pointer;
    font-size: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: 200px;
    transition: transform 0.3s ease;
    box-shadow: none!important;
  }

  .pdf-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
    padding: 20px;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .pdf-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
  }

  /* Responsive adjustments for catalogs */
  @media (max-width: 768px) {
    .pdf-overlay p {
      font-size: 14px;
      padding: 15px;
    }
    
    .catalogs-wrapper {
      gap: 15px !important;
    }
  }

  @media (max-width: 480px) {
    .pdf-overlay p {
      font-size: 12px;
      padding: 10px;
    }
    
    .catalogs-wrapper {
      gap: 10px !important;
    }
  }

  body .pdf {
    display: block;
    margin: 0;
    cursor: pointer;
    font-size: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  span.newTag {
    position: absolute;
    background: #ff0000;
    color: #fff;
    font-size: 9px;
    padding: 1px 3px;
    left: 0;
    top: 2px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .025rem;
    text-align: center;
}

  .pdf > img {
    display: block;
    margin: 8px 0 0;
    width: 100%;
    position: relative;
    min-height: 200px;
    max-height: 220px;
    object-fit: cover;
    box-shadow: none!important;
    border-radius: 32px!important;

  }

  .nav-menu-top a.pozdrav {
    display: inline-block;
    height: 41px;
    margin: 0 8px -4px 0;
    padding: 0 40px 0 52px;
    border-radius: 24px;
    background-color: #fff;
    position: relative;
    line-height: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-image: url("../img/doboj-grb.png");
    background-size: cover;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left 16px center;
    min-width: 160px;
  }
  
  .downArrow {
      display: inline-block;
      vertical-align: middle;
      height: 32px;
      width: 32px;
      background-image: url("../img/arrow-down.png");
      background-size: cover;
      background-size: 12px;
      background-repeat: no-repeat;
      background-position: center center;
      position: absolute;
      right: 5px;
      top: 3px;
  }

  #navMenu.nav-menu.show.fadeOut .copyRight {
    display: block;
    position: absolute;
    right: 104px;
    height: 44px;
    line-height: 44px;
    bottom: 0;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
    transform: none!important;
  }

  .video-wrapper::before {
    display: block;
    content: ".";
    height: 50vh;
    width: 100%;
    position: absolute;
    background: rgba(0,0,0,.6);
    z-index: 2;
    top: 44px;
    left: 0;
  }

  .copyRight {
    display: block;
    position: absolute;
    right: 24px;
    height: 44px;
    line-height: 44px;
    bottom: 0;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
  }

  .nav-menu-top {
    width: 100%;
    height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffcc29;
    color: #000;
    padding: 0 16px;
    display: block;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-menu-top-inside-left {
    display: block;
    float: left;
    width: 10%;
    height: 44px;
  }

  .nav-menu-top-inside-left a {
    display: block;
    height: 44px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-menu-top-inside-right {
    display: block;
    width: 90%;
    height: 44px;
    float: right;
    text-align: right;
  }

  #navMenu .itemNumber {
    top: 9px;
  }

  #navMenuTop .itemNumber {
    top: 0;
  }

  html body .zimbYellow {
    display: block;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    position: relative;
    padding: 0 1rem .5rem;
    transition: all .3s ease-in-out;
    color:#ffcc29;
    letter-spacing: 0;
    text-transform: initial;
  }

  .right.desno p, .left.lijevo p {
    display: block;
    text-decoration: none;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 0 1rem 2px;
    transition: all .3s ease-in-out;
    color:#fff;
    letter-spacing: .025rem;
  }

  .nav-menu {
    width: 100%;
    height: 44px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #ffcc29;
    color: #000;
    padding: 0 16px;
    display: block;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-menu a {
    display: inline-block;
    vertical-align: top;
    height: 44px;
    line-height: 44px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-right: 18px;
    margin-left: 32px;
  }

  .nav-menu-top-inside-left a {
    line-height: 40px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-right: 18px;
    margin-right: 16px;
  }

  .nav-menu-top-inside-right a {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 0 16px;
    transition: all .3s ease-in-out;
    margin: 7px -4px 0 4px;
    line-height: 28px;
    border: solid 2px transparent;
  }

  html body .nav-menu-top-inside-right a.menu {
    background: transparent;
  }

  .itemNumber {
    display: block;
    position: absolute;
    right: -12px;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #fff;
    line-height: 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
  }

  .nav-menu-top.show {
    top: 0; 
  }

  .nav-menu.show {
    bottom: 0; 
  }
  
  #zimb-logo-xs img {
    display: block;
    height: 32px;
    margin: 6px 16px 0;
  }

  *, div, p {
    margin: 0;
    padding: 0;

    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    color: #000;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight:600;
  }

  #video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }

  /* Left and right parts */
  .left, .right {
    width: 50%;
    float: left;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
  }

  .right .swiper {
    height: 100%;
  }

  .nav-menu a.izaberiGrad {
    display: inline-block;
    height: 36px;
    margin: 4px 8px 0 0;
    padding: 0 40px;
    background-color: #fff;
    position: relative;
    line-height: 36px;
    min-width: 160px;
    border-radius: 24px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .close-button {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 6px;
    right: 12px;
    padding: 0;
    background: #fff;
    color: #000;
    cursor: pointer;
    z-index: 20;
    line-height: 26px;
    font-weight: 700;
    font-size: 20px;
    border: none;
  }

  #nextSectionName {
    display: block !important;
    height: 70px; /* Increased height to accommodate action buttons */
    width: 60%;
    position: fixed !important;
    left: 50%;
    bottom: 38px;
    margin-left: -30%;
    z-index: 999;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
  }

  .section-action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    height: 20px;
  }
  
  .section-action-button {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  
  .section-action-button:hover {
    opacity: 0.9;
  }
  
  .add-shop-button {
    background-color: #28a745; /* Green */
  }
  
  .report-error-button {
    background-color: #dc3545; /* Red */
  }
  
  /* Remove fadeIn animation to ensure immediate visibility */
    #nextSectionName p {
      display: grid;
      position: relative;
      padding: 0;
      margin: 0;
      height: 50px;
      line-height: 50px;
      background: rgba(0,0,0,.7);
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      font-weight: 700;
      text-align: left;
      opacity: 1;
      width: 100%;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      border-radius: 32px;
  }

  #nextSectionName p span {
    height: 50px;
    line-height: 50px;
    font-weight: 700;
  }

  .mySlides {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Adjust based on your requirements */
    width: 100%; /* Adjust based on your requirements */
    overflow: hidden; /* Ensures no overflow */
  }

  .mySlidesInside {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px; /* Space between images */
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensures full-width layout */
    height: 100%;
  }

  .mySlidesInside img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures images maintain aspect ratio */
    border: solid 1px #ccc;
  }

      #meinVideo {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
      }

      /* Allgemeines Styling für alle Overlay-DIVs */
      .interactiveVideoBanner {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 80vh;
        background-color: rgba(0, 0, 0, 0.85);
        color: #fff;
        text-align: center;
        z-index: 10;
      }

      html body .swal2-html-container {
        margin:0 1.6em .3em!important;
      }
      

      .right .swiper img {
            display: block;
            height: 128px;
            margin: 8px auto 0;
            width: 128px;
            object-fit: contain;
            box-shadow: none !important;
            border-radius: 50%;
            background: #fff;
            border: solid 2px #000;

      }

      .productBox {
        display: block;
        height:100%;
        padding: 1rem;
        margin: 0;
        width: 100%;
        background: #ffcc29;
        border-radius: 32px;
        position: relative;
      }

      .productBoxInside {
        display: block;
        height: 100%;
        width: 100%;
        padding: 0;
      }

      h3.featuredHeadline {
        display: block;
        width: 100%;
        text-align: center;
        padding: 4px 0 12px;
        font-size: 1.25rem;
        margin: 0;
        font-weight: 700;
      }

      h3.downloadHeadline {
        display: block;
        height: 40px;
        line-height: 40px;
        text-align: center;
        padding: 0;
        font-size: 1.25rem;
        text-transform: uppercase;
        margin: 1rem 0 0;
        font-weight: 700;
      }

      .interactiveVideoBannerInside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        width: 100%;
        height: 80vh;
        padding: 2rem;
      }

      /* Animation für das Einblenden */
      .active {
        display: block;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }

      .right, .left.desno{
        background: #fff;
        color: #000;
        padding: 0;
      }

      .shopMainLogo {
        display: block;
        height: 64px;
        max-width: 90%;
        object-fit: contain;
        background: #fff;
        padding: .5rem 1rem;
        border-radius: 4px;
        margin: 3rem auto 1rem;
      }

      .sliderProductImage {
        display: block;
        margin: 1rem auto 1.5rem;
        height: 90%;
        margin-top: 5%;
        max-width: 90%;
        object-fit: contain;
        box-shadow: none!important;
      }

      h2 {
        font-size: 20px;
        text-align: center;
        margin: 0 auto 1rem;
      }

      h3.productName {
        display: block;
        width: 100%;
        height: 30px;
        text-align: center;
        overflow: hidden;
        color: #000;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.1;
        text-decoration: none!important;
        border: none;
        padding: 0 1rem;
        position: relative;
        margin: 0;
      }
      
      a.product-link {
        text-decoration: none;
      }

      a.product-link:hover {
        text-decoration: none;
      }

      .right .pdf p, .left .pdf p {
        display: none;
        padding: 1rem;
        width: 100%;
        background:rgba(255,255,255,.8);
        color: #000;
        font-size: .9rem;
        font-weight: 700;
        line-height: 1.25;
        position: absolute;
        left: 0;
        bottom: 0;
        margin-top: 0 !important;
        margin-bottom: 0;
        text-transform: uppercase;
      }

      b {
        font-weight: 700;
      }

      html body .swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content {
        color: #000;
      }

      html body .swal2-icon.swal2-info {
        border-color: #ffcc29;
        color: #ffcc29;
      }

      html body .swal2-container.swal2-center > .swal2-popup {
        padding-bottom: 2rem;
        border-radius: 32px
      }

      .left p, .right p {
        text-align: center;
        font-size: 1rem;
        line-height: 24px;
      }

      strong {
        font-weight: 700;
      }

      #navbarRight {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        background: red;
        width: 48px;
        height: 100%;
      }

      html body .priceTag {
        position: absolute;
        z-index: 9;
        left: 0;
        top: 0;
        background: #000;
        color: #fff;
        font-weight: 700;
        font-size: .75rem;
        padding: .2rem .5rem;
        border-top-left-radius: 16px;
        border-bottom-right-radius: 16px;
      }

      /* Price change states */
      .priceTag.pricedown {
        background-color: #11A12F;
        color: #fff;
        padding-right: 24px;
      }

      .priceTag.priceup {
        background-color: #ff0000;
        color: #fff;
        padding-right: 24px;
      }

      .priceTag.nochange {
        background-color: #000;
        color: #fff;
      }

      .hours-clock {
        display: inline-block;
        vertical-align: top;
        height: 52px;
        width: 52px;
        margin: 0 4px 4px;
        padding: 0;
        background: #fff url("../img/radnoVrijeme.png") no-repeat center center;
        border-radius: 50%;
        border: solid 4px transparent;
        z-index: 9;
        background-size: 44px;
        font-size: 0;
        transition: all ease 0.3s;
        box-shadow: none;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }

      .hours-clock.otvoreno {
        border: solid 4px rgb(31, 209, 31);
      }

      .otvorenoText {
        color: rgb(31, 209, 31);
        text-transform: uppercase;
        font-size: 14px;
      }

      .hours-clock.zatvoreno {
        border: solid 4px red;
      }

      .zatvorenoText {
        color: red;
        text-transform: uppercase;
        font-size: 14px;
      }

      #hours-wrapper {
        display: block;
        margin: 0 auto 24px;
      }

      .kontaktiraj {
        display: inline-block;
        margin: 0 4px;
        padding: 0;
        height: 52px;
        width: 52px;
        background: #ffcc29 url("../img/kontaktiraj.png") no-repeat center center;
        border-radius: 50%;
        border: solid 2px rgba(255,255,255,.4);
        z-index: 9;
        background-size: 48px;
        font-size: 0;
        transition: all ease 0.3s;
        box-shadow: none;
        position: relative;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }

      .mainLogo {
        max-width: 360px;
        margin: 0 auto 32px;
      }

      .marketSubtitle {
        display: block;
        font-size: 16px;
        margin: 4px 0 20px;
      }

      .marketTitle {
        text-transform: uppercase;
        font-size: 28px;
      }      
      
      /* Styles for upcoming sections button outside nav menu */

      .upcoming-sections-toggle {
          position: fixed;
          top: 54px;
          right: 8px;
          white-space: nowrap;
          font-size: 24px;
          background: none;
          width: 36px;
          height: 36px;
          line-height: 36px;
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 99999;
          display: block;
          padding: 0;
          font-weight: 700;
          border-radius: 50%;
          border: none;
      }

      .upcoming-sections-toggle .plus-icon {
        display: block;
        transition: transform 0.3s ease;
        font-weight: 700;
        height: 36px;
        width: 36px;
        line-height: 36px;
        background-color: rgba(0,0,0,.5);
        border-radius: 50%;
        border: solid 1px transparent;
        color: #ffcc29;
      }

      .upcoming-sections-toggle.active {
          transform: none;
          height: 36px;
          width: 36px;
          line-height: 36px;
      }

      .upcoming-sections-toggle.active .plus-icon {
          transform: rotate(-45deg);
          border: solid 1px #ffcc29;
      }

      /* Make sure hovering on container doesn't cause it to disappear */
      .upcoming-shops-container:hover {
          z-index: 901;
      }

      /* Upcoming shops container */
      .upcoming-shops-container {
          position: fixed;
          top: 44px; /* 44px for nav + 20px spacing */
          right: -320px; /* Start off-screen */
          width: 320px;
          height: calc(100vh - 88px); /* 100vh - (top margin + footer height) */
          background-color: rgba(0, 0, 0, 0.95);
          z-index: 900;
          overflow-y: auto;
          overflow-x: hidden;
          padding: 10px 8px 60px 0; /* Additional padding at the bottom for the buttons */
          transition: right 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s cubic-bezier(.77,0,.18,1);
          display: flex;
          flex-direction: column;
          opacity: 0;
          pointer-events: none;
      }

      .upcoming-shops-container.visible {
          right: 0;
          opacity: 1;
          pointer-events: auto;
      }

      .upcoming-shops-container.hiding {
          right: -320px;
          opacity: 0;
          pointer-events: none;
      }

      /* Action buttons styling - moved from upcoming-buttons.css */
      .upcoming-action-buttons {
          position: fixed;
          bottom: 44px; /* Match footer height */
          right: -320px; /* Start off-screen, matches container */
          width: 320px; /* Same as the upcoming-shops-container width */
          display: flex;
          justify-content: space-between;
          padding: 24px;
          background-color: rgba(0, 0, 0, 0.95);
          border-top: 1px solid rgba(255, 255, 255, 0.15);
          z-index: 901; /* Higher than the container but lower than other UI elements */
          transition: right 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s cubic-bezier(.77,0,.18,1);
      }

      /* Make buttons visible when the container is visible */
      .upcoming-shops-container.visible .upcoming-action-buttons {
          right: 0;
          opacity: 1;
      }

      .upcoming-shops-container.hiding .upcoming-action-buttons {
          right: -320px;
          opacity: 0;
      }

      .upcoming-action-button {
          padding: 8px 15px;
          border-radius: 4px;
          color: white;
          text-decoration: none;
          font-weight: bold;
          font-size: 12px;
          text-transform: uppercase;
          transition: opacity 0.2s;
          text-align: center;
          flex: 1;
          margin: 0 5px;
      }

      .upcoming-action-button:hover {
          opacity: 0.9;
      }

      .add-shop-button {
          background-color: #28a745; /* Green */
      }

      .report-error-button {
          background-color: #dc3545; /* Red */
      }

      .no-upcoming {
          color: #fff;
          text-align: center;
          padding: 20px;
          font-style: italic;
      }

            /* Price Change Indicator Styles - TV Version */
        .price-change-indicator-vertical {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 44px;
            height: 100%;
            z-index: 10;
            opacity: 1;
        }
        
        .price-change-scale-vertical {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 0;
        }
        
        /* High score scale container effects */
        .price-change-scale-vertical.celebrating {
            animation: scaleGlow 1s ease-out forwards;
        }
        
        @keyframes scaleGlow {
            0% { 
                box-shadow: 0 0 0 rgba(255, 204, 41, 0);
            }
            50% { 
                box-shadow: 0 0 30px rgba(255, 204, 41, 0.8);
            }
            100% { 
                box-shadow: 0 0 15px rgba(255, 204, 41, 0.4);
            }
        }
        
        /* Black background overlay that fills up based on percentage */
        .price-scale-fill-background {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 12;
            transition: height 0s; /* Will be set in JavaScript */
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        
        .price-scale-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, #ff4444 0%, #ffaa44 25%, #ffffaa 50%, #aaff44 75%, #44ff44 100%);
            z-index: 11;
            border-radius: 0!important; /* No border radius for the gradient */
        }
        
        .price-score-circle {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 44px;
            height: 40px;
            background: transparent; /* Make it transparent since it no longer contains the text */
            border: none;
            border-radius: 0;
            color: #ffcc29;
            z-index: 15; /* Increased to be above background fill */
            bottom: 0;
            transition: bottom 2s ease-out;
        }
        
        .price-score-circle.animated {
            animation: scoreMove 2s ease-out forwards;
        }
        
        @keyframes scoreMove {
            from { bottom: 0; }
            to { bottom: var(--target-position); }
        }
        
        .score-text {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #ffcc29;
            border-radius: 50%;
            font-size: 16px;
            font-weight: bold;
            color: #000;
            text-align: center;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 16;
            box-sizing: border-box;
        }
        
        /* High Score Celebrations (51% and above) */
        .score-text.high-score {
            animation: highScoreCelebration 1s ease-out forwards;
        }
        
        .score-text.high-score.pulsing {
            animation: highScorePulse 2s ease-in-out infinite;
        }
        
        @keyframes highScoreCelebration {
            0% { 
                transform: translateX(-50%) scale(1);
                background: #ffcc29;
                box-shadow: 0 0 0 rgba(255, 204, 41, 0.7);
            }
            25% { 
                transform: translateX(-50%) scale(1.5); /* Increased from 1.3 */
                background: #ffdd44;
                box-shadow: 0 0 30px rgba(255, 204, 41, 1); /* Stronger glow */
            }
            50% { 
                transform: translateX(-50%) scale(1.2);
                background: #ffee55;
                box-shadow: 0 0 40px rgba(255, 204, 41, 1); /* Stronger glow */
            }
            75% { 
                transform: translateX(-50%) scale(1.4); /* Increased from 1.2 */
                background: #ffdd44;
                box-shadow: 0 0 35px rgba(255, 204, 41, 1); /* Stronger glow */
            }
            100% { 
                transform: translateX(-50%) scale(1);
                background: #ffcc29;
                box-shadow: 0 0 20px rgba(255, 204, 41, 0.6); /* Stronger final glow */
            }
        }
                
        @keyframes highScorePulse {
            0%, 100% { 
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 15px rgba(255, 204, 41, 0.6);
            }
            50% { 
                transform: translateX(-50%) scale(1.1);
                box-shadow: 0 0 25px rgba(255, 204, 41, 0.8);
            }
        }
        
        /* Celebration particle effects */
        .celebration-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 17;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffcc29;
            border-radius: 50%;
            animation: particleFloat 1.5s ease-out forwards;
        }
        
        @keyframes particleFloat {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-50px) scale(0.5);
            }
        }
        
        .zimb-ci-label {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%) rotate(270deg);
            font-size: 16px;
            font-weight: bold;
            color: #000000;
            text-align: right;
            padding: 2px 6px;
            z-index: 15;
            white-space: nowrap;
        }

      /* Old price indicator styles removed - using TV version above */

    .tooltip-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Navigation Profile Avatar Styles */
.nav-profile-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.nav-default-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #ffcc29;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    vertical-align: middle;
    text-transform: uppercase;
}

.nav-menu-top-inside-right a.account:hover .nav-profile-avatar {
    border-color: #fff;
    transition: all 0.3s ease;
}

.nav-menu-top-inside-right a.account:hover .nav-default-avatar {
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

/* === RESPONSIVE NAVIGATION SYSTEM === */
/* Mobile-first approach for consistent header across all pages */

/* Base responsive adjustments for top navigation */
@media screen and (max-width: 1024px) {
    .nav-menu-top {
        padding: 0 8px;
    }
    
    .nav-menu-top-inside-right > a,
    .nav-menu-top-inside-right > button {
        margin: 7px 2px 0 0;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu-top {
        padding: 0 6px;
        height: 44px;
    }
    
    .nav-menu-top-inside-left {
        width: 15%;
    }
    
    .nav-menu-top-inside-right {
        width: 85%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-menu-top-inside-right::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu-top-inside-right > a,
    .nav-menu-top-inside-right > button {
        display: inline-block;
        margin: 6px 2px 0 0;
        padding: 0 8px;
        font-size: 12px;
        height: 32px;
        line-height: 32px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .nav-menu-top-inside-right .cta-header {
        width: 32px;
        height: 32px;
        margin: 6px 2px 0 0;
    }
    
    .zimbLogoXS {
        height: 32px;
        margin: 6px 0;
    }
    
    .search-container {
        width: 160px;
        margin: 6px 4px 0 0;
    }
    
    .search-input {
        height: 32px;
        font-size: 11px;
        padding: 0 8px;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 576px) {
    .nav-menu-top {
        padding: 0 4px;
    }
    
    .nav-menu-top-inside-left {
        width: 20%;
    }
    
    .nav-menu-top-inside-right {
        width: 80%;
    }
    
    .nav-menu-top-inside-right > a:not(.cta-header),
    .nav-menu-top-inside-right > button:not(.cta-header) {
        font-size: 11px;
        padding: 0 6px;
        height: 30px;
        line-height: 30px;
        margin: 7px 1px 0 0;
    }
    
    .nav-menu-top-inside-right .cta-header {
        width: 30px;
        height: 30px;
        margin: 7px 1px 0 0;
    }
    
    .zimbLogoXS {
        height: 30px;
        margin: 7px 0;
    }
    
    .search-container {
        width: 140px;
        margin: 7px 2px 0 0;
    }
    
    .search-input {
        height: 30px;
        font-size: 10px;
        padding: 0 6px;
    }
    
    .nav-profile-avatar,
    .nav-default-avatar {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu-top {
        padding: 0 2px;
    }
    
    .nav-menu-top-inside-right > a:not(.cta-header):not(.account) {
        display: none;
    }
    
    .nav-menu-top-inside-right .cta-header {
        width: 28px;
        height: 28px;
        margin: 8px 1px 0 0;
    }
    
    .zimbLogoXS {
        height: 28px;
        margin: 8px 0;
    }
    
    .search-container {
        width: 120px;
    }
    
    .search-input {
        height: 28px;
        font-size: 9px;
        padding: 0 4px;
    }
    
    .nav-profile-avatar,
    .nav-default-avatar {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
    }
}

@media screen and (max-width: 360px) {
    .nav-menu-top-inside-right .cta-header {
        width: 26px;
        height: 26px;
        margin: 9px 1px 0 0;
    }
    
    .zimbLogoXS {
        height: 26px;
        margin: 9px 0;
    }
    
    .search-container {
        width: 100px;
    }
    
    .search-input {
        height: 26px;
        font-size: 8px;
        padding: 0 4px;
    }
    
    .nav-profile-avatar,
    .nav-default-avatar {
        width: 22px !important;
        height: 22px !important;
        font-size: 9px !important;
    }
}

/* === BOTTOM NAVIGATION RESPONSIVE === */
@media screen and (max-width: 768px) {
    .nav-menu {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu > a {
        display: inline-block;
        margin: 4px 3px 0 0;
        padding: 0 10px;
        height: 32px;
        line-height: 32px;
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .city-selector {
        display: inline-block;
        margin: 4px 3px 0 0;
    }
    
    .city-selector .izaberiGrad {
        height: 32px;
        line-height: 32px;
        padding: 0 30px;
        font-size: 11px;
        margin: 0;
        min-width: 120px;
    }
    
    .main-city-icon {
        width: 20px;
        height: 20px;
        left: 6px;
    }
    
    .itemNumber {
        font-size: 9px;
        padding: 2px 4px;
        margin-left: 3px;
    }
    
    .newTag {
        font-size: 7px;
        padding: 1px 2px;
        margin-right: 2px;
    }
}

@media screen and (max-width: 576px) {
    .nav-menu {
        padding: 0 4px;
    }
    
    .nav-menu > a {
        margin: 4px 2px 0 0;
        padding: 0 8px;
        height: 30px;
        line-height: 30px;
        font-size: 10px;
    }
    
    .city-selector .izaberiGrad {
        height: 30px;
        line-height: 30px;
        padding: 0 26px;
        font-size: 10px;
        min-width: 100px;
    }
    
    .main-city-icon {
        width: 18px;
        height: 18px;
        left: 5px;
    }
    
    .itemNumber {
        font-size: 8px;
        padding: 1px 3px;
        margin-left: 2px;
    }
    
    .newTag {
        font-size: 6px;
        padding: 1px;
        margin-right: 1px;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu > a {
        margin: 4px 1px 0 0;
        padding: 0 6px;
        height: 28px;
        line-height: 28px;
        font-size: 9px;
    }
    
    .city-selector .izaberiGrad {
        height: 28px;
        line-height: 28px;
        padding: 0 24px;
        font-size: 9px;
        min-width: 90px;
    }
    
    .main-city-icon {
        width: 16px;
        height: 16px;
        left: 4px;
    }
    
    .copyRight {
        font-size: 8px;
        margin-left: 4px;
    }
}

@media screen and (max-width: 360px) {
    .nav-menu > a[data-shop-type="nekretnine"],
    .nav-menu > a[data-shop-type="tehnika"] {
        display: none;
    }
    
    .copyRight {
        display: none;
    }
}
