/* ==============================
   🔹 Carousel (Top Banner)
   ============================== */
#carouselExampleIndicators {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

#carouselExampleIndicators img {
  height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

#carouselExampleIndicators img:hover {
  transform: scale(1.03);
}

.carousel-caption { 
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
  border-radius: 8px;
  padding: 12px 16px;
  backdrop-filter: blur(6px);
}

.carousel-caption h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption p {
  font-size: 0.95rem;
  color: #eaeaea;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ==============================
   🔹 Categories
   ============================== */
.card.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.hover-shadow:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

/* ==============================
   🔹 Product Cards
   ============================== */
.card.h-100 {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.h-100:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-body h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.card-body p.text-muted {
  font-size: 0.8rem;
}

/* ==============================
   🔹 Middle & Bottom Banners
   ============================== */
.mb-5 img,
.my-5 img {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* .mb-5 :hover,
.my-5   :hover {
  transform: scale(1.02);
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2); */
/* } */ 

/* ==============================
   🔹 Responsive
   ============================== */
@media (max-width: 992px) {
  #carouselExampleIndicators img {
    height: 300px;
  }

  .mb-5 img,
  .my-5 img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  #carouselExampleIndicators img {
    height: 200px;
  }

  .mb-5 img,
  .my-5 img {
    height: 150px;
  }

  .carousel-caption {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}


.product-scroll-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  overflow-y: auto;
  /* max-height: 600px;  Adjust this as needed */
  padding-right: 8px;
  padding-bottom: 8px;
}


.product-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.product-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(180, 41, 41, 0.15);
  border-radius: 10px;
}
  
.product-card {
  min-width: 180px;
  max-width: 180px;
  flex: 0 0 auto;
}

.product-card{
  width: 100%;
}
.product-img {
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}
