/* Mobile Filter Button */
.filter-btn { font-size:16px; font-weight:var(--font-weight-500); text-transform:capitalize;  width: auto; min-width: 40px; height:40px; line-height:40px ; color:var(--bs-primary); background:var(--bs-white); transition:all ease .6s;-moz-transition:all ease .6s;-webkit-transition:all ease .6s;-o-transition:all ease .6s; letter-spacing:normal; border-radius:5px;  border:1px solid var(--bs-gray-200);}

.view-btn {}
.view-btn:hover {background:var(--bs-primary); color:var(--bs-white); transition:all ease .6s;-moz-transition:all ease .6s;-webkit-transition:all ease .6s;-o-transition:all ease .6s;}

/* Overlay */
.filter-overlay {position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: .3s; z-index: 998;}
/* Filter Panel */
.mobile-filter {position: fixed; left: 0; right: 0; bottom: -100%; background: var(--bs-white); border-radius:0; height: 80vh; transition: .4s ease; z-index: 999; display: flex; flex-direction: column;}

/* Active */
.mobile-filter.active {bottom: 0;}
.filter-overlay.active {opacity: 1; visibility: visible;
}

/* Header */
.filter-header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--bs-gray-200);
}
.filter-header h4 {
  margin: 0;
}
.filter-header button {
  background: none;
  border: none;
  font-size: 16px;
}

/* Body */
.filter-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.filter-group {
  margin-bottom: 15px;
}
.filter-group label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.filter-group input,
.filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Footer */
.filter-footer {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #eee;
}
.filter-footer button {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
}
.filter-footer .reset {
  background: #f1f1f1;
}
.filter-footer .apply {
  background: #0d6efd;
  color: #fff;
}

/* Show only on mobile */
@media (max-width: 980px) {
  .filter-btn {
    
  }
}
