body {
  background: #111;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* Grid layout */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Card style */
.menu-item {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Hover animation */
.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Price */
.menu-item span {
  display: block;
  margin: 10px 0;
  color: #ff4c60;
  font-weight: bold;
}

/* Button */
.menu-item button {
  background: #ff4c60;
  border: none;
  padding: 10px 15px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-item button:hover {
  background: #ff2e44;
  transform: scale(1.1);
}

#cart {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 10px;
  margin: 20px;
}

#cart li {
  margin: 8px 0;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

#total {
  font-weight: bold;
  color: #ff4c60;
}
.menu-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Advanced Features */
#cart-panel {
  position: fixed;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: #1c1c1c;
  color: white;
  padding: 20px;
  transition: 0.4s;
  z-index: 1000;
}

#cart-panel.active {
  right: 0;
}

#cart-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #ff4c60;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
/* Popin Notification */
#popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: 0.3s;
}

#popup.show {
  opacity: 1;
}

#popup {
  position: fixed;
  bottom: -50px; /* hidden start */
  left: 20px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.4s;
  opacity: 0;
}

#popup.show {
  bottom: 20px; /* upar aayega */
  opacity: 1;
}

#cart-panel {
  position: fixed;
  right: -320px; /* hidden */
  top: 0;
  width: 300px;
  height: 100%;
  background: #1c1c1c;
  color: white;
  padding: 20px;
  transition: 0.4s;
}

#cart-panel.active {
  right: 0; /* visible */
}

#cart-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ff4c60;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

#close-text {
  margin-left: 8px;
  font-size: 14px;
}


.back-btn {
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  background: #ff4c60;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.back-btn:hover {
  background: #ff2e44;
  transform: translateX(-5px);
}


