body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5FFF5;
  color: #1A3C34;
}

.sidebar {
  background: linear-gradient(to bottom, #BFFF00, #8FCC00);
  color: white;
  width: 220px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

.lemonade {
  color: #BFFF00;
}

.nav a {
  color: white;
  display: block;
  margin: 0.8rem 0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #FFFFFF;
}

main {
  margin-left: 240px;
  padding: 2.5rem;
}

.banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(191, 255, 0, 0.7), rgba(191, 255, 0, 0.7)), url('images/banner.jpg');
  background-size: cover;
  color: white;
  border-radius: 10px;
  animation: fadeIn 1.2s;
}

.banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-accent {
  background-color: #BFFF00;
  color: #1A3C34;
  border-color: #BFFF00;
}

.btn-accent:hover {
  background-color: #8FCC00;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #1A3C34;
  border: 1px solid #1A3C34;
}

.btn-secondary:hover {
  background-color: #E6E6E6;
}

.benefits, .products, .health-tips, .product-details, .reviews, .cart, .about, .contact, .policy {
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F5FFF5;
  border-radius: 10px;
  animation: fadeIn 1.2s;
}

.benefit-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card, .product-card {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover, .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.footer {
  background-color: #1A3C34;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

.footer a {
  color: #FFFFFF;
  margin: 0 0.6rem;
  text-decoration: none;
}

.footer a:hover {
  color: #BFFF00;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 60, 52, 0.85);
  color: white;
  padding: 1.2rem;
  display: none;
  font-size: 0.9rem;
}

.cookie-consent button {
  margin: 0 0.6rem;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
}

form input, form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  height: 120px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: static;
    padding: 1rem;
  }
  main {
    margin-left: 0;
    padding: 1.5rem;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .product-grid, .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}