    /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: #f1ecec;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   CLEAN, UNIFIED HEADER
   ============================ */
header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header strong {
  color: #2e7d32;
  font-size: 22px;
  font-weight: 800;
}

header nav div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.nav-link:hover {
  color: #2e7d32;
}

.cart-img {
  width: 60px;
  height: auto;
  object-fit: cover;
}

.cart-link {
  color: #2e7d32;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* CART COUNT */
#cart-count {
  background: #d0eec4;
  color: #fff;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 4px;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.logo-link:hover {
  color: #2e7d32;
}

/* HERO */
.hero {
  background: #fff8ec;
  padding: 80px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-img {
  flex: 1;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-img img {
  width: 100%;
  display: block;
}

/* HERO VARIANTS */
.hero-uae {
  background: url('images/uae-store/uae-bgpc-1.webp') center/cover no-repeat;
  padding: 120px 0;
}

.hero-cleaning {
  background: url('images/cleaning/cleaning-backg-1.avif') center/cover no-repeat;
  padding: 120px 0;
}

.hero-coming-soon {
  background: url('images/nigeria-store/comingsoon-1.avif') center/cover no-repeat;
  padding: 140px 0;
  text-align: left;
}

.hero-uae .hero-text h1,
.hero-cleaning .hero-text h1,
.hero-coming-soon .hero-text h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
}


.hero-uae .hero-text p,
.hero-cleaning .hero-text p,
.hero-coming-soon .hero-text p{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fff;
}

.hero-uae .hero-text h1,
.hero-uae .hero-text p,
.hero-cleaning .hero-text h1,
.hero-cleaning .hero-text p,
.hero-coming-soon .hero-text h1,
.hero-coming-soon .hero-text p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* HEADINGS */
h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-align: left;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  font-size: 15px;
}

.btn-primary {
  background: #2e7d32;
  color: #fff;
}

.btn-primary:hover {
  background: #265f29;
}

.btn-secondary {
  background: #fff;
  border: 2px solid #2e7d32;
  color: #2e7d32;
}

.btn-secondary:hover {
  background: #2e7d32;
  color: #fff;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARDS */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* IMAGES */
.section-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.section2-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* FORMS */
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item span {
  font-size: 20px;
  color: #2e7d32;
}

.checkout-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    gap: 10px;
  }

  header nav div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
  }

   .hero-img {
    max-width: 100%;
    }

   h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .cart-img {
    width: 45px;
  }

  .checkout-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .checkout-buttons button,
  .checkout-buttons a {
    width: 100%;
    text-align: center;
  }
}

.cart-table-wrapper {
  overflow-x: auto;
}

/* Make section titles clickable without changing their appearance */
.section-link,
.section-link:link,
.section-link:visited,
.section-link:active {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.section-link:hover {
  color: #2e7d32;
  text-decoration: none;
}

/* Footer Styling */
.site-footer {
  background:  #f3e8d7;
  color:  #000;
  padding: 40px 20px;
  margin-top: 60px;
  text-align: center;
}

.site-footer h3 {
  font-size: 30px;
  font-weight: 1500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 14px;
  opacity: 0.8;
  margin: 8px 0;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links a:hover {
  color: #2e7d32;
  opacity: 1;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.6;
}

/* Footer-only font */
.site-footer {
  font-family: 'Poppins', sans-serif;
}