body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #faf7f2;
  color: #3a2f2a;
}

header {
  background-color: #e8dfd3;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #c7b8a3;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3a2f2a;
  font-weight: bold;
}

h1, h2 {
  text-align: center;
  font-family: "Times New Roman", serif;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #d8cfc4;
  border-radius: 8px;
  text-align: center;
}

button {
  background-color: #8b5e34;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #6d4728;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #e8dfd3;
  border-top: 3px solid #c7b8a3;
}


/* ----------------------------- */
/* SHOP PAGE PRODUCT GRID MATCH  */
/* ----------------------------- */

.product {
  background: #fff;
  border: 2px solid #e5d7c3; /* soft farmhouse beige */
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 1.1em;
  margin-bottom: 8px;
}

.product button {
  background-color: #b8864b; /* warm rustic gold */
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s ease;
}

.product button:hover {
  background-color: #8a6638;
}

