body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 98%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #004D40;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
}

.logo {
  font-family: "Allerta Stencil", sans-serif;
  font-size: 1.5rem;
  color: #F4F4F9;
  font-weight: bold;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #F4F4F9;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #FF9800;
}

/* Responsive Navbar */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #F4F4F9;
  cursor: pointer;
}

@media (max-width: 768px) {
  /* Ocultar los enlaces de la navbar en pantallas pequeñas */
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #004D40;
    padding: 15px;
    gap: 10px;
    border-radius: 0 0 8px 8px;
  }

  /* Mostrar el menú al hacer clic en el ícono */
  .navbar-links.show {
    display: flex;
  }

  /* Mostrar el botón del menú en pantallas pequeñas */
  .menu-toggle {
    display: block;
  }
}

  .products {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .products h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  .product {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    background-color: #f4f4f4;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  .product img {
    height: 256px;
    width: 256px;
  }
  
  .product h3 {
    color: #007b5e;
    margin-bottom: 10px;
  }
  
  .price {
    margin-bottom: 10px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
  }
  
  .discounted-price {
    font-weight: bold;
    color: #e63946;
  }
  
  label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
  }
  
  input[type="number"] {
    width: 60px;
    padding: 5px;
    margin-bottom: 10px;
  }
  
  button {
    background-color: #007b5e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #005f46;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #007b5e;
    color: #fff;
    margin-top: 50px;
  }
  
  .cart {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .cart h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
  }
  
  .cart-item-details {
    flex-grow: 1;
  }
  
  .cart-item-details h4 {
    margin: 0;
    color: #007b5e;
  }
  
  .cart-item-details p {
    margin: 5px 0;
    color: #555;
  }
  
  #clear-cart {
    display: block;
    margin: 20px auto;
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #clear-cart:hover {
    background-color: #c5283a;
  }
  
  /* Contact Section */
#contact {
  background-color: #004D40;
  color: #F4F4F9;
  padding: 30px;
  text-align: center;
}

#contact h2 {
  color: #FF9800;
}

#contact p {
  color: #F4F4F9;
}

/* Footer */
footer {
  background-color: #004D40;
  color: #F4F4F9;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}