body{

        background: linear-gradient(135deg, #e9fff2, #b7eac5);
}

/* Navbar */

/* Navbar */
nav {
    margin-top: 50px;
  padding: 20px 0;
    width: 100%;
  background: transparent;
  animation: navSlideIn 1s ease forwards;
  animation-delay: 0.3s;

}

.navbar {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.navbar a {
  color:#4b4b4b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}


.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #1b5e20;
  transition:width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
    color: #1b5e20;

}




.wide-ad-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #e6f5f0; /* light eco-themed */
  border-radius: 10px;
  margin-bottom: 2rem;
}

.banner-slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.banner-slide {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding: 0 4%;
  background-color: #f0fff8;
}

.banner-slide img {
  width: 35%;
  height: auto;
  object-fit: contain;
}

.banner-content {
  width: 50%;
  text-align: right;
}

.banner-content h2 {
  font-size: 2rem;
  color: #1a6830;
  margin-bottom: 0.5rem;
}

.banner-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.banner-content button {
  background-color: #2f9e44;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-content button:hover {
  background-color: #267f38;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 255, 230, 0.8);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 2;
}

.banner-nav.left {
  left: 15px;
}

.banner-nav.right {
  right: 15px;
}


.product-listing {
  max-width: 1200px;
  margin: 60px auto;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1b5e20;
  text-align: left;
  margin-bottom: 20px;
}

.product-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.product-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 1rem;
  margin: 4px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
}

.save {
  color: green;
  font-weight: 600;
}




/* NAVBAR Animation (Slide Down on Load) */
@keyframes navSlideIn {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
