.hotspot-slider {
  width: 100%;
  
}

.slick-slider {
  touch-action: pan-y;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
}

.hotspot-slide {
  position: relative;
  width: 600px; /* 👈 fixed slide width */
  padding-right: 16px;
}

.specifications__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  min-height: 209px;
}

.specifications__image-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.specifications__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps full image visible */
  display: block;
}

.specifications__marker {
  position: absolute;
  left: var(--left);
  top: var(--top);
  transform: translate(-50%, -50%);
  background: #a0917c;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  z-index: 3;
  padding: 0 !important;
  border: 0 !important;
  
}

.specifications__marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 5;
}

.specifications__marker .btn__inner{
  background: #A0917C !important;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.specifications__marker:before {
  content: "";
  /*animation-delay: calc(2s + var(--nth, 1) * .25s);*/
  /*animation-duration: 2s;*/
  /*animation-fill-mode: forwards;*/
  /*animation-iteration-count: infinite;*/
  /*animation-name: pulse;*/
  /*animation-timing-function: ease-in-out;*/
  border-radius: 100%;
  display: block;
  height: 32px;
  /*left: -8px;*/
  left: 50%;
  position: absolute;
  /*top: -8px;*/
  top: 50%;
  transform-origin: center center;
  width: 32px;
  /*background: rgba(255, 255, 255, 0.3);*/
  background: rgba(255, 255, 255, 1);
  transform: scale(0);
  z-index: 0;
  animation: pulse 1500ms ease-out infinite;
}

/* Tooltip */
.tooltip {
  position: absolute;
  background: #fff;
  color: #333;
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

@media (max-width: 600px) {
  .tooltip {
    width: 220px;
    padding: 5px 10px;
  }
}

.tooltip-arrow {
  position: absolute;
  bottom: -10px;
  left: 0%;
  /*transform: translateX(-50%);*/
  width: 0;
  height: 0;
  /*border: 6px solid transparent;*/
  /*border-top-color: #fff;*/
  /*display: none;*/
}

.specifications__marker:hover .tooltip {
  opacity: 1;
}

/* Tooltip arrows for all directions */
.tooltip .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
}

/* top */
.tooltip.top-left .tooltip-arrow {
  border-width: 0 15px 15px 0;
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
  display: inline-block;
  left: auto;
  right: 0;
}

.tooltip.top .tooltip-arrow {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #fff;
}

/* bottom */
.tooltip.bottom-left .tooltip-arrow {
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
  display: inline-block;
  bottom: auto;
  left: auto;
  right: 0;
  top: -10px;
}

.tooltip.bottom-right .tooltip-arrow {
  border-width: 15px 0 0 15px;
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  display: inline-block;
  bottom: auto;
  top: -10px;
}

.tooltip.bottom .tooltip-arrow {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #fff;
}

/* left */
.tooltip.left .tooltip-arrow {
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #fff;
}

/* right */
.tooltip.top-right .tooltip-arrow {
  border-width: 15px 15px 0 0;
  border-color: #ffffff transparent transparent transparent;
  border-style: solid;
  display: inline-block;
}

.tooltip.right .tooltip-arrow {
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #fff;
}

.tooltip.top-left { transform: translateY(-8px); }
.tooltip.top-right { transform: translateY(-8px); }
.tooltip.bottom-left { transform: translateY(8px); }
.tooltip.bottom-right { transform: translateY(8px); }


/* optional: show next slide preview */
.slick-list {
  padding: 0 80px 0 0 !important; 
}

.tooltip-content {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tooltip-content .img-col {
  width: 20%;
}

.tooltip-content .img-col img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tooltip-content .content-col {
  width: 80%;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.7px; /* 21.7px */
  color: #000000;
  white-space: normal;
}

@media (max-width: 600px) {
  .tooltip-content .content-col {
    font-size: 12px;
    line-height: 20px;
  }
}

.tooltip-content .content-col p{
  margin-bottom: 0;
}

/*@keyframes pulse {
  0% {
      transform: scale(0);
  }
  25% {
      transform: scale(1);
  }
  100% {
     transform: scale(0);
  }
}*/

@keyframes pulse {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0);
      opacity: 1;
  }
  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 0;
  }  
}