body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0fdf4;
  color: #2e7d32;
}

nav {
  background-color: #2e7d32;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.product-card {
  border: 2px solid #a5d6a7;
  border-radius: 10px;
  padding: 1rem;
  background-color: white;
  margin: 1rem;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 128, 0, 0.05);
}

.product-card img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 5px;
}

button {
  padding: 0.5rem 1rem;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #1b5e20;
}


.login-body {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #e8f5e9;
}

.login-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #c8e6c9;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.login-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-container input {
  margin: 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  max-width: 300px;
  border: 1px solid #a5d6a7;
  border-radius: 5px;
}

.login-container button {
  margin-top: 1rem;
  width: 50%;
  max-width: 200px;
}

.page {
  padding: 2rem;
}

.cart-item, .profile-container {
  border: 2px solid #a5d6a7;
  border-radius: 10px;
  padding: 1rem;
  background-color: white;
  margin: 1rem 0;
  text-align: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  font-size: 1.8rem;
}

.logo-icon {
  width: 30px;
  height: 30px;

}
.cart-item button {
  margin-left: 1rem;
  padding: 4px 10px;
  font-size: 0.9rem;
  background-color: #e53935;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item button:hover {
  background-color: #c62828;
}
.mainfooter {

  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #00942a;
 font-weight: bold;
}
.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #00b01a;
  font-weight: bold;
}
.coppyright {
  padding-top: 20px;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #000000;
}
