	 .category-chip {
	  display: inline-block;
	  padding: 6px 14px;
	  font-size: 0.875rem;
	  border: 1px solid #007bff;
	  color: white;
	  text-decoration: none;
	  border-radius: 10px;
	  transition: all 0.2s ease;
	  background-color: transparent;
	}

	.category-chip:hover,
	.category-chip.active {
	  background-color: #007bff;
	}

	/* Thumbnail hover efekt */
	.thumb {
	  cursor: pointer;
	  transition: transform 0.2s ease;
	}
	.thumb:hover {
	  transform: scale(1.03);
	  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	}

	/* Ikone (aktivne i sive) */
	.icon {
	  width: 24px;
	  height: 24px;
	  opacity: 0.4;
	  transition: opacity 0.2s ease;
	}
	.icon.active {
	  opacity: 1;
	}

	/* Popup overlay */
	#popup-overlay {
	  display: none;
	  position: fixed;
	  z-index: 1040;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  background: rgba(0, 0, 0, 0.6);
	}

	/* Popup prozor */
	#virtual-popup {
	  display: none;
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  z-index: 1050;
	  background: white;
	  padding: 0;
	  border-radius: 12px;
	  width: 95vw;
	  height: 95vh;
	  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	  overflow: hidden;
	  border: 1px solid #ccc;
	  display: flex;
	  flex-direction: column;
	}

	/* Zatvori (×) */
#virtual-popup .close-btn {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  background: #fff;
  border-radius: 50%;
  padding: 0px 10px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.2s;
  z-index: 9999;
  margin-left: auto;
  margin-right: 10px;
}

	#virtual-popup .close-btn:hover {
	  background: #eee;
	}

	/* Iframe zauzima sav prostor osim donje trake */
#iframeContainer {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 3px solid #fff; /* deblji bijeli rub oko iframea */
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px
}

	#iframeContainer iframe {
	  width: 100%;
	  height: 100%;
	  border: 0;
	  display: block;
	}

	/* Donja traka unutar popupa */
#popupDetails {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-top: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 1.1rem;
}


	#popupDetails > div {
	  margin-right: 10px;
	}

	#popupIcons {
  display: flex;
  gap: 6px;
}

	#popupIcons img {
	  width: 18px;
	  height: 18px;
	  opacity: 0.4;
	  transition: opacity 0.2s ease;
	}
	#popupIcons img.active {
	  opacity: 1;
	}

	#popupTitle {
  font-weight: bold;
}

	#popupAddress {
  color: #666;
  font-size:1.1rem;
}


@media (max-width: 768px) {
  #virtual-popup {
    width: 90vw;
    height: 90vh;
  }

  #popupDetails {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
}