
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfaf6;
  color: #333;
  margin: 0;
  padding: 0;
}
header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #8c7051;
  font-weight: bold;
}
.product-page {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}
.product-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
}
.product-details {
  max-width: 400px;
}
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
}
