.mobile-filter {
    margin-top: 30px;
  width: 100%;
  background: #fff;
 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-toggle {
  width: 100%;
  padding: 15px;
  background: #ff6b6b;
   background: #a78194;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.filter-content {
  display: none;
  padding: 15px;
  /*  max-height: 70vh;*/
  overflow-y: auto;
}

.filter-content.active {
  display: block;
}

.filter-category {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.category-toggle {
  width: 100%;
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.category-toggle:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  transition: transform 0.3s;
}

.category-toggle.active:after {
  transform: rotate(180deg);
}

.category-options {
  padding: 10px 0;
  display: none;
}

.category-options.active {
  display: block;
}

.category-options label {
  display: block;
  padding: 8px 0;
  cursor: pointer;
}

.category-options input[type="checkbox"] {
  margin-right: 8px;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #a19696;
  border-radius: 4px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.apply-btn,
.reset-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.apply-btn {
  background: #28a745;
  color: white;
}

.reset-btn {
  background: #6c757d;
  color: white;
}
