.highlight-section {
  padding: 20px;
}

.header h2 {
  margin-bottom: 10px;
}

/* container */
.carousel-container {
  position: relative;
}

/* scroll area */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* card */
.card-terbaik {
  width: 270px;              /* FIX lebar */
  height: 260px;             /* FIX tinggi */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
   position: relative;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 10px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-price {
  color: #16a34a;
  font-weight: bold;
  margin-bottom: 35px;
}

.card-location {
  font-size: 12px;
  color: #666;
  margin-top: 4px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* badge highlight */
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: orange;
  color: white;
  padding: 4px 6px;
  font-size: 11px;
  border-radius: 6px;
}

/* tombol */
.nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

.left {
  left: -10px;
}

.right {
  right: -10px;
}