/* Custom styles for AbhiTea */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Carousel fade transition */
.carousel-slide {
  transition: opacity 0.7s ease-in-out;
}

/* Nav active link underline */
.nav-link.active,
.nav-link:hover {
  color: #d97706;
}

/* Card hover lift */
.product-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 4px;
  background: #d97706;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Sticky nav shadow on scroll (applied via JS) */
.nav-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
