.hotspot-container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.hotspot-image {
  width: 100%;
  display: block;
}

.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #ff6600;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.hotspot:hover {
  transform: scale(1.15);
}

.hotspot-box {
  position: absolute;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 220px;
  display: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  z-index: 10;
}

.hotspot-box.active {
  display: block;
}
