body {
  font-family: sans-serif;
  margin: 0;
  background: #f6f6f6;
}
header {
  padding: 15px;
  background: #3a6ea5;
  color: white;
  text-align: center;
}
header input {
  width: 90%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 15px;
}
.links a {
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.products {
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
}
.product {
  min-width: 150px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
}
.product img {
  width: 100%;
  border-radius: 12px;
}
