body {
  margin: 0;
  font-family: Arial;
  background: #061c2d;
  color: white;
}

header {
  text-align: center;
  padding: 20px;
}

.logo {
  width: 90px;
}

.notice {
  background: gold;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: black;
}

.customerBox {
  text-align: center;
  padding: 15px;
}

.customerBox input {
  width: 80%;
  padding: 12px;
  border-radius: 10px;
  border: none;
}

.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 15px;
}

.card {
  min-width: 200px;
  background: white;
  color: black;
  border-radius: 15px;
  text-align: center;
  padding: 10px;
}

.card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

/* ✅ Add Button */
.addBtn {
  margin-top: 8px;
  padding: 8px;
  border: none;
  border-radius: 10px;
  width: 90%;
  background: #25d366;
  color: white;
  font-weight: bold;
}

.card.added .addBtn {
  background: gray;
}

/* ✅ Order Box */
.orderBox {
  background: white;
  color: black;
  margin: 20px;
  padding: 20px;
  border-radius: 15px;
}

.qtyBtn {
  margin-left: 6px;
  cursor: pointer;
}

.orderBtn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  border: none;
  border-radius: 10px;
  color: white;
}

.qrSection {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.qrSection img {
  width: 140px;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
}

/* Floating WhatsApp */
.waFloat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  color: white;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.popupBox {
  background: white;
  color: black;
  padding: 20px;
  width: 300px;
  margin: 200px auto;
  border-radius: 12px;
  text-align: center;
}
