.elementor-26 .elementor-element.elementor-element-391d9a7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fb90026 *//* Full-Width EcoGardenLife Header */
.eco-header {
  width: 100%;
  background: linear-gradient(90deg, #2e7d32, #4caf50);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Container inside header */
.eco-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

/* Logo */
.eco-logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

/* Navigation */
.eco-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.eco-nav a {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.eco-nav a:hover {
  color: #f5f5dc;
}

/* CTA Button */
.eco-btn {
  background: #f5f5dc;
  color: #2e7d32;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.eco-btn:hover {
  background: #fff;
  color: #1b5e20;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hamburger Button (hidden on desktop) */
.eco-hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

/* 🌍 Responsive Design */
@media (max-width: 900px) {
  .eco-container {
    flex-wrap: wrap;
  }

  /* Hide nav + button by default */
  .eco-nav {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .eco-nav.active {
    display: block;
  }

  .eco-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .eco-cta {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  /* Show hamburger on mobile */
  .eco-hamburger {
    display: block;
  }
}/* End custom CSS */