body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #faf5ef;
  color: #333;
}
header {
  background: #8b5e3c;
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
  }
.hero {
  background: url('image/hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 50px 20px;
  color: white;
}
.btn {
  background: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
#cart-header {
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 5px;
}
.product-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 20px;
}
.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background: white;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.product:hover {
  transform: scale(1.05);
}
.product img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}
#qr-section {
  text-align: center;
  padding: 20px;
}
footer {
  background: #8b5e3c;
  color: white;
  text-align: center;
  padding: 10px;
}
