body {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #d97706; /* warm yellow/orange */
}

section {
  margin-bottom: 20px;
}

.product {
  border: 1px solid #ccc;
  padding: 10px;
  display: inline-block;
  width: 28%;
  margin-right: 1%;
  vertical-align: top;
  text-align: center;
  border-radius: 8px;
}

.product img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  margin-right: 5px;
  background-color: #f59e0b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #d97706;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
