.mehrazi-filters {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.mehrazi-filters h4 {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #e0e0e0;
}

.filter-section {
  margin-bottom: 15px;
}

.filter-section label, 
.filter-section input {
  cursor: pointer;
}

.filter-price input {
  width: 100px;
  margin: 5px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}

.filter-price button {
  background: #222;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-price button:hover {
  background: #444;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}

.product-item h3 {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.price {
  color: #a5ffb3;
}
