html,
body {
  height: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 40px 0 80px;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hotspot-matcha {
  left: 16.5%;
  top: 62%;
  height: 120px;
  width: 60px;
  border-radius: 30px;
}

.hotspot-scoop {
  left: 27.5%;
  top: 63%;
  width: 10px;
  height: 150px;
}

.hotspot-teapot {
  left: 43%;
  top: 55%;
  height: 240px;
  width: 200px;
  border-radius: 55px;
}

.hotspot-whisk {
  left: 59%;
  top: 62%;
  height: 94px;
  width: 60px;
}

.hotspot-bowl {
  left: 70.7%;
  top: 61.7%;
  height: 75px;
  width: 75px;
  border-radius: 100px;
}

.hotspot-cloth {
  left: 83.5%;
  top: 62%;
  height: 120px;
  width: 75px;
}


.tooltip {
  position: absolute;
  left: 0;
  bottom: 100%;
  transform: translateY(-12px);
  width: 400px;
  padding-left: 18px; 
  font-size: 12px;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding-bottom: 10px;

}

#matcha-tooltip{
  padding-bottom: 100px;
}
#scoop-tooltip{
  padding-bottom: 100px;
}
#cloth-tooltip{
  width: 300px;
}


.tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #000;
}

.tooltip h3 {
  margin: 0 0 6px;
  font-size: 13px;
}

.hotspot:hover .tooltip {
  opacity: 1;
  transform: translateY(-20px);
}

@media (max-width: 768px) {

.hotspot-matcha {
  left: 16.5%;
  top: 62%;
  height: 40px;
  width: 20px;
  border-radius: 30px;
  /* border: red SOLID 1PX; */
}

.hotspot-scoop {
  left: 27.5%;
  top: 63%;
  width: 5px;
  height: 60px;
  /* border: red SOLID 1PX; */
}

.hotspot-teapot {
  left: 43%;
  top: 55%;
  height: 100px;
  width: 90px;
  border-radius: 55px;
    /* border: red SOLID 1PX; */
}

.hotspot-whisk {
  left: 59%;
  top: 62%;
  height: 40px;
  width: 25px;
      /* border: red SOLID 1PX; */
}

.hotspot-bowl {
  left: 70.7%;
  top: 61.7%;
  height: 30px;
  width: 30px;
  border-radius: 100px;
      /* border: red SOLID 1PX; */
}

.hotspot-cloth {
  left: 83.5%;
  top: 62%;
  height: 45px;
  width: 30px;
      /* border: red SOLID 1PX; */
}

}

@media (max-width: 768px) {
  .hotspot .tooltip {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
    pointer-events: none !important;
  }

  #fixed-tooltip {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 92%;
    max-width: 380px;
    background: none;
    color: #111;
    padding: 14px 14px;
    font-size: 13px;
    line-height: 1.6;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    transform-origin: bottom center;
  }


  #fixed-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }


  #fixed-tooltip .ft-close {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border: 0px;
    background-color: #000;
    color: #ffffff;
    font-weight: 700;
  }

  #fixed-tooltip .ft-content {
    max-height: 34vh;
    overflow-y: auto;
  }
}

