
.hotspot-tooltip {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  width: 300px;
  font-size: 14px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.point-hotspot:hover .hotspot-tooltip {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hotspot-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.point-hotspot.animate {
  animation: popIn 0.5s ease-out;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.hotspot-tooltip h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}
