/* Index Page Specific Styles */

/* Hero background with complex gradient */
.hero__bg.index-hero-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(114, 47, 55, 0.12) 50%, rgba(90, 45, 74, 0.15) 100%), 
              linear-gradient(rgba(139, 90, 60, 0.05), rgba(114, 47, 55, 0.08)), 
              url("/img/vineyard-hero.jpg") center center / cover no-repeat fixed !important;
}

/* Hero button with pointer-events disabled */
.hero__btn.index-hero-btn {
  pointer-events: none;
}

/* Cart badge display for index page */
#cartBadge.index-cart-badge {
  display: flex;
}

/* Category filter buttons base */
.category-filter-btn {
  padding: 10px 24px;
  border: 2px solid #9b8860;
  background: white;
  color: #9b8860;
  border-radius: 25px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  cursor: pointer;
}

.category-filter-btn:hover {
  background: #9b8860;
  color: white;
  transform: translateY(-2px);
}

.category-filter-btn.active {
  background: #9b8860;
  color: white;
}

/* Empty state container */
.empty-products-container.index-empty-state {
  display: none;
}
