 body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background-color: #f8fafc;
    }
    
    .product-card {
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      border-color: #0891b2;
    }
    
    .category-filter {
      transition: all 0.2s ease;
    }
    
    .category-filter.active {
      background-color: #0891b2;
      color: white;
      border-color: #0891b2;
    }
    
    .quick-view-modal {
      transition: all 0.3s ease;
    }
    
    .quick-view-modal.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .price-slider {
      -webkit-appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 5px;
      background: #e2e8f0;
      outline: none;
    }
    
    .price-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #0891b2;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .stock-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 10;
    }
    
    .wishlist-btn {
      transition: all 0.2s ease;
    }
    
    .wishlist-btn.active {
      color: #ef4444;
    }
    
    .filter-section {
      transition: all 0.3s ease;
      max-height: 500px;
      overflow: hidden;
    }
    
    .filter-section.collapsed {
      max-height: 60px;
    }
    
    .pagination-btn.active {
      background-color: #0891b2;
      color: white;
      border-color: #0891b2;
    }