*{
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8fafc;
  padding: 40px;
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

label {
  font-size: 18px;
}
select {
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
}
.card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.price {
  font-size: 20px;
  font-weight: bold;
}
