/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 998;
}

/* Bottom Sheet */
#bottomSheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.25);
  padding: 20px;
  text-align: center;
  transition: bottom 0.4s ease;
  z-index: 999;
}


/* Mango Image */
.slide-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Drag Handle */
.drag-handle {
  width: 50px;
  height: 5px;
  background: #ccc;
  border-radius: 10px;
  margin: 0 auto 15px;
}

/* Button */
#bottomSheet button {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: white;
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 20px;
}

/* Floating Button */
#openBtn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #ff9800;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
}
