.hotspot-container {
  position: relative;
}
.lines-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.lines-container .container {
  position: relative;
  height: 100%;
}
.line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(204, 204, 204, 0.677);
  z-index: 1;
}
.line.l-1 {
  left: 22%;
}
.line.l-2 {
  right: 22%;
}
.homehotspot_image {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 192 / 109;
  max-height: 100vh;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.homehotspot_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #979797;
  border: 1px solid #ffffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .hotspot {
    display: none !important;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Main Tippy box */
.tippy-box[data-theme~="custom-hotspot"] {
  background-color: #fff;
  color: #333;
  border-radius: 12px;
  padding: 0px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}

/* Tooltip arrow (optional, can be hidden) */
.tippy-box[data-theme~="custom-hotspot"] > .tippy-arrow {
  color: #ffffff;
}

/* Inside content */
.tooltip-content {
  max-width: 250px;
}

.tooltip-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.tooltip-title {
  text-transform: uppercase;
  margin: 10px 0 5px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.tooltip-description {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #555;
}
