.category-filter-container {
  position: absolute;
  top: 80px;
  left: 20px;
  right: 20px;
  z-index: 999;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
}

.category-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-filter-scroll::-webkit-scrollbar {
  display: none;
}

.category-filter-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.category-filter-btn:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
}

.category-filter-btn.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

@media (max-width: 767px) {
  .category-filter-container {
    top: 70px;
    left: 10px;
    right: 10px;
  }

  .category-filter-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
