body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fdfaf6;
  color: #3e2a1e;
}

.site-header, .site-footer {
  background-color: #a67c52;
  color: #fff;
  padding: 16px;
  text-align: center;
}
.header-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.nav-btn {
  background-color: #8b5e3c;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #a67c52;
}

.site-header nav a,
.site-footer nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
}

.bereamall-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.hero-stoves {
  width: 100%;
  height: 350px;
  background-image: url("/images/camp-stoves-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;              /* enables flexbox */
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
}

.hero-stoves .overlay {
  text-align: center;         /* center text inside overlay */
  color: #fff;                /* make text visible on banner */
}



.hero-overlay {
  background-color: rgba(255, 245, 230, 0.85);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
}

.cta-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.product-zone h3 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  color: #5a3c2b;
  font-weight: 700;
  text-align: center;
  margin: 24px 0;
  letter-spacing: 0.5px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 20px 40px;
}

.product-card {
  background-color: #fffaf3;
  border: 1px solid #a67c52;
  border-radius: 8px;
  padding: 16px;
  width: 260px;
  text-align: center;
}

.product-card img {
  width: 60%;
  height: auto;
  margin-bottom: 12px;
}
.product-card h2 {
   font-size: 1.2rem;
  margin: 8px 0;;
  color: #3e2f1c;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3e2f1c;
}
.shop-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
