body {
  font-family: Arial, sans-serif;
  background-color: #f1f9f5;
  padding: 20px;
  text-align: center;
  margin-top: 0px;
}

h1, h2 {
  color: #222;
}

#product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.product-name {
  font-weight: bold;
  margin: 10px 0 5px;
}

.product-price {
  margin-bottom: 10px;
  color: #333;
}

.product button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}

.product button:hover {
  background-color: #218838;
}

#cart {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.cart-item input {
  width: 50px;
  padding: 5px;
  text-align: center;
}

.cart-item span {
  margin: 0 10px;
  font-size: 16px;
}

.cart-item button {
  background-color: transparent;
  border: none;
  color: red;
  cursor: pointer;
  font-weight: bold;
}

#total {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #222;
  background-color: lightgreen;
  padding: 15px;
}

footer {
  margin-top: 60px;
  font-size: 14px;
  color: #555;
}

.navbar {
  background-color: whitesmoke;
  color: black;
  padding: 14px 30px;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  border-radius: 6px;
  margin-bottom: 25px;
}

.navbar-left{
  font-size: 40px;
  background-color: lightblue;
  border-radius: 6px;
  font-weight: bold;
  padding: 15px;
}

.navbar-right{
  font-size: 40px;
  background-color: lightblue;
  border-radius: 6px;
  font-weight: bold;
  padding: 15px;
  text-align: right;
}
.navbar-left{
  display: flex;
  align-items: center;
  gap: 10px;

}

.logo{
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}