/* Filter dropdown - positioned on search-filter button */
.search-filter {
  position: relative;
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid black;
  border-radius: 12px;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 4px;
}

.filter-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-weight: 600;
  font-size: 14px;
  color: black;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  transition: all 0.2s;
  font-weight: 500;
}

.filter-option:hover {
  background: #f5f5f5;
  color: black;
}

.price-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 8px;
  box-sizing: border-box;
}
