body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 800px;
  margin: auto;
}
.search-box {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#searchInput, select, button {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#searchBtn {
  background: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
}
#searchBtn:hover {
  background: #005fa3;
}
#results {
  display: grid;
  gap: 12px;
}
.product-card {
  background: white;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.product-card h3 {
  margin: 0 0 6px;
}
.product-card p {
  margin: 4px 0;
}
