body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fffaf0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: #f6b149f0;
}
.navbar a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.products {
  padding: 60px;
  text-align: center;
}
.product-grid {
  display: flex;
  justify-content: space-around;
}
.card {
  width: 30%;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
footer {
  background: #f4b400;
  padding: 20px;
  text-align: center;
}
