/* ============ Section Wrapper ============ */
.hb-featured-wrapper {
  margin-top: 40px;
}

.hb-heading {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Cormorant Garamond", serif;
  color: #111;
}

/* ============ Product Card ============ */
.hb-product-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;
  text-align: center;
  padding-bottom: 12px;
}

.hb-product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.hb-product-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.hb-product-name {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  padding: 0 10px;
}

/* ============ Indicators ============ */
.hb-indicators button {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  border: none;
}

.hb-indicators .active {
  background-color: #A58F5C !important; /* Luxury gold highlight */
}

/* ============ Arrows ============ */
.hb-prev, .hb-next {
  filter: invert(50%);
  opacity: 0.8;
}

.hb-prev:hover, .hb-next:hover {
  opacity: 1;
  filter: invert(75%);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .hb-product-img {
    height: 200px;
  }
  .hb-product-name {
    font-size: 1rem;
  }
}
