body {
  font-family: Arial;
  margin: 0;
  background: #f5f5f5;
}

header {
  background: #df2b46;
  color: white;
  padding: 15px;
  text-align: center;
}

header input {
  margin-top: 10px;
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 5px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

select {
  padding: 10px;
}

#products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.price {
  color: #ff3f6c;
  font-weight: bold;
}

button {
  background: #ff3f6c;
  color: white;
  border: none;
  padding: 8px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}