/* Page banner */
.page-banner {
  background: linear-gradient(135deg, rgba(15,61,145,0.9), rgba(15,61,145,0.8)), url('/assets/banners/products-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}
.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  background: var(--light-gray);
  padding: 20px 24px;
  border-radius: 60px;
}
.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
#searchProducts {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 40px;
  border: 1px solid #ddd;
  background: var(--white);
  font-size: 1rem;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn.active {
  background: var(--deep-blue);
  color: white;
  border-color: var(--deep-blue);
}
.filter-btn:hover:not(.active) {
  background: var(--bright-orange);
  color: white;
  border-color: var(--bright-orange);
}

/* Product card overrides for consistency */
.product-card .btn-primary {
  margin-top: 12px;
  display: inline-block;
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* No results message */
.no-results {
  text-align: center;
  grid-column: 1 / -1;
  padding: 48px;
  font-size: 1.2rem;
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }
  .category-filters {
    justify-content: center;
  }
  .page-banner h1 { font-size: 1.8rem; }
}