
/* Enhanced Filters Section */
.filters-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
  gap: 20px;
  width:100%;
}

.filters-section #searchInput {
  border: none;
  background: transparent;
  padding: 8px 0;
  width: 100%;
  font-size: 0.95rem;
  color: #374151;
}

.filters-section #searchInput:focus {
  outline: none;
}

.filters-section #searchInput::placeholder {
  color: #9ca3af;
} 

.filters-section .filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
}

.filters-section .filters-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters-section .filters-title i {
  color: #3b82f6;
}

.filters-section .filters-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.filters-section .filter-group {
  min-width: 150px;
}

.filters-section .filter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 5px;
}

.filters-section .filter-select,
.filters-section .sort-select {
  padding: 10px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #fff;
  color: #374151;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
  width:150px;
}

.filters-section .filter-select:focus,
.filters-section .sort-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

/* Price Range Styles */
.filters-section .price-range-filter {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1.5px solid #e2e8f0;
}

.filters-section .price-range-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters-section .price-range-title i {
  color: #3b82f6;
}

.filters-section .range-inputs {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}


.filters-section .search-bar {
  position: relative;
  width:480px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
}

.filters-section .search-bar:focus-within {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filters-section .search-icon {
  color: #6b7280;
  font-size: 1.1rem;
  margin-right: 12px;
}

/*** search input */



/* Pagination Styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 8px;
  color: #374151;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.page-btn.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

/* Previous and Next buttons */
.page-btn:first-child,
.page-btn:last-child {
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 480px) {
  .pagination {
    gap: 4px;
  }

  .page-btn {
    min-width: 35px;
    height: 35px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .page-btn:first-child,
  .page-btn:last-child {
    padding: 0 15px;
  }
}
 
/* Responsive Design */
@media (max-width: 1024px) {
  
}

 

/* Responsive Adjustments */
@media (max-width: 768px) {
   
  .view-all-container{
    padding:0px;
  }
  .filters-section .search-bar{
    width:100%;
  }
  .filters-section{
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .filters-section .sort-select{
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .filters-section .search-section{
    width:100%;
  }
  .filters-section .filter-select, .filters-section .sort-select{
    width:140px;
  }
}

@media (max-width: 480px) {

}
 

 
 
 


 