.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    background-color: #232f3e;
    height: 40px;
    padding: 10px;
    overflow: hidden;
  }
  
  .navbar-logo a {
    color: white;
    font-size: 24px;
    text-decoration: none;
  }
  
  .navbar-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .navbar-logo a img {
   height: 100px;
  }
  
  .navbar-links li {
    margin: 0 15px;
  }
  
  .navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
  }
  
  .navbar-links a:hover {
    color: rgb(214, 207, 207);
    border-radius: 5px;
  }
  #menu{
    display: none;
  }
  #menuButton{display: none;}

  /* Button styling */
#menuButton {
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#menuButton:hover {
  background-color: transparent;
}

/* Menu styling */
#menu {
  display: none; /* Initially hidden */
  position: relative;
  top: 3px; /* Adjust based on button position */
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%; /* Menu width */
  z-index: 1000;
}

#menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu ul li {
  border-bottom: 1px solid #eee;
}

#menu ul li:last-child {
  border-bottom: none;
}

#menu ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px;
  transition: background-color 0.3s ease;
}

#menu ul li a:hover {
  background-color: rgb(214, 207, 207);
}

.navbar-icons {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  width: fit-content;
}

.navbar-icons li {
  margin: 0 15px;
  padding-top: 10px;
}
.navbar-icons a {
  color: white;
  text-decoration: none;
  font-size: 30px;
  padding: 5px 10px;
}

  @media (max-width: 800px) {
    .navbar-links {
      display: none;
    }
    #menuButton{display: block;
    background-color: transparent;
    }
    #menu{display: none;}
    .navbar-logo a img {
      height: 80px;
     }
     .navbar-icons li {
      margin: 0 15px;
      padding-top: 3px;
    }
  }
  .price {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f00;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    transform: scale(0);
    animation: bounceIn 0.5s ease-out forwards;
  }
  @keyframes bounceIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    60% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  .cart-container {
    position: relative;
    display: inline-block;
  }
  #spantotalprice{
    display: none;
  }
