     body {
      font-family: Arial, sans-serif;
    }
    .filter-section {
  max-width: 800px;
  margin: 0 auto;
  font-size: 13px;
}

.filter-section h3 {
  margin-top: 30px;
  margin-bottom: 10px ;
  font-size: 19px;
}

.filter-section .options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-section .options button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-section .options button:hover {
  background: #e0e0e0;
}

.filter-section .options button.active {
  background: black;
  color: white;
}

.filter-section .body-type img {
  width: 40px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.filter-section .dropdown {
  background: #f9f9f9;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 16px;
}

.filter-section .apply-btn {
  margin-top: 30px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-section .apply-btn:hover {
  background: #333;
}

.filter-section .reset-btn {
  float: right;
  margin-top: -10px;
  background: none;
  border: none;
  color: gray;
  cursor: pointer;
  font-weight: bold;
}

.filter-section .results {
  margin-top: 50px;
}

