body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #F5F0E6;
  color: #3e2a1e;
}

.site-header, .site-footer {
  background-color: #a67c52;
  color: #fff;
  padding: 16px;
  text-align: center;
}

.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-overlay {
  background-color: rgba(255, 245, 230, 0.8);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

/* Base button style */
.cta-button {
  background-color: #A68A6D;       /* Brown base */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #6C8EA4;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: scale(1.02);
}
.product-zone {
  padding: 32px;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.product-card {
  background-color: #FFFDF7;
  border: 1px solid #D8C3A5;
  border-radius: 8px;
  padding: 16px;
  width: 230px;
  text-align: center;
}

.product-card img {
  width: 50%;
  height: auto;
  margin-bottom: 12px;
}
.product-card h2 {
  font-size: 1.1rem;
  color:  #333;
  margin-bottom: 24px;
}
.product-card p {
  font-size: 01rem;
  color: #555;
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  color: #2E7D32;
}
.shop-button {
  background-color: #A3C4DC;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.category-title {
  font-size: 34px;       /* Adjust this value as needed */
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
  color: #444;
}
.product-zone {
  margin-bottom: 60px;
  padding: 20px;
}

 .product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  width: 180px; /* Adjust as needed */
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #444444;
  color: #fff;
  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;
}
























