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-accessories {
  background-image: url('/images/camping-accessories-banner.jpg'); /* Replace with actual image */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 70%;
  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;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8b4513;
  color: #fff8dc;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}
.footer-nav {
  background-color: #f2e8dc;
  border-top: 2px solid #a67c52;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #3e2f1c;
}

.footer-links a {
  color: #3e2f1c;
}

.social-links a {
  color: #8b5e3c;
}


.social-links {
  margin-bottom: 12px;
}

.social-links a {
  text-decoration: none;
  color: #4a7c59;
  font-weight: 600;
}

.affiliate-disclosure {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.85rem;
  color: #777;
}