body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fffaf4;
  color: #333;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: #8c5d1d;
}

.contact h2,
.products h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #b37c2e;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: #b37c2e;
  text-decoration: none;
}

.order-note {
  font-weight: bold;
  margin-top: 1rem;
  color: #c94e1f;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1rem;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
}

.products {
  text-align: center;
  margin-top: 3rem;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #8c5d1d;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-item {
  text-align: center;
}

.product-thumb {
  width: 100%;
  max-width: 180px;
  height: auto;
  border: 2px solid #eee;
  border-radius: 10px;
}

.product-item h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.1rem;
  color: #333;
}

.price {
  font-size: 0.95rem;
  color: #b37c2e;
  font-weight: bold;
}


.qr {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.qr img {
  width: 140px;
  height: auto;
  border: 2px solid #eee;
  padding: 5px;
  border-radius: 10px;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #888;
}
