   /* Filter Section Styles */
.filter-section {
  padding: 20px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.filter-container h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #007bff;
  background-color: transparent;
  color: #007bff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
}

.filter-btn:hover {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Product Card Animation */
.product-card {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.product-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  margin: 0;
  height: 0;
  overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: 70px;
  }
  
  .filter-container h3 {
    font-size: 1.1rem;
  }
}







  