body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

header {
  background-color: white;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
}

.cart-container {
  background-color: white;
  margin: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-details {
  flex: 1;
  margin-left: 15px;
}

.cart-details p {
  margin: 5px 0;
}

.remove-btn {
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 1.2rem;
}

#order-btn {
  width: 100%;
  padding: 12px;
  background-color: #ff5500;
  border: none;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}



.feedback-message {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  padding: 15px;
  z-index: 1000;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  display: none;
  max-width: 300px;
}

.feedback-success {
  background-color: #0a7323;
  color: white;
}

.feedback-remove {
  background-color: #b01313;
  color: white;
}
