html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* MAP FULLSCREEN */
#map {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

/* SEARCH FLOATING */
.search-box {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 480px;
  z-index: 1000;
}
.search-box input {
  border-radius: 50px;
  padding-left: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* BOTTOM CARD */
.bottom-card {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 15px 15px 10px 15px;
  z-index: 1001;
  max-height: 55%;
  overflow-y: auto;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.25);
}

.bottom-card::-webkit-scrollbar {
  width: 5px;
}
.bottom-card::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* SLIDER */
.carousel-inner img {
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .carousel-inner img {
    height: 120px; /* slider lebih kecil di mobile */
  }
}

/* CARD TOKO */
.card {
  border-radius: 12px;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.card img {
  object-fit: cover;
  border-radius: 8px;
}

.pointer {
  cursor: pointer;
}
