/* 🧾 Receipt Preview */
#receiptPreview {
  background-color: #f0f0f0;
  border-left: 4px solid #007bff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-family: monospace;
  white-space: pre-wrap;
}

/* 🛍️ Order List */
#orderList {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

#orderList li {
  margin-bottom: 10px;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* 💳 Checkout Form */
#checkoutForm {
  margin-top: 30px;
}

#checkoutForm label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#checkoutForm input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* ✅ Submit Button */
#checkoutForm button[type="submit"] {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#checkoutForm button[type="submit"]:hover {
  background-color: #0056b3;
}

/* 📍 Detect Location Button */
#locateBtn {
  margin-top: 10px;
  background-color: #6c757d;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#locateBtn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

/* 🎉 Toast Notification */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  opacity: 0;
  font-size: 0.9em;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
}
/* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
@media (max-width: 600px) {
  #checkoutForm input,
  #checkoutForm button,
  #locateBtn {
    width: 100%;
    font-size: 1em;
  }

  #receiptPreview {
    font-size: 0.95em;
    padding: 12px;
  }
 /* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
}
