* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #FFF8E7;
  color: #1A1A1A;
}

/* HEADER */
.order-header {
  background: #2E2E2E;
  color: #FFC107;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-header a {
  color: white;
  text-decoration: none;
}

/* LAYOUT */
.order-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 40px;
}

/* MENU */
.menu h2 {
  font-family: 'Poppins';
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}

.item {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.item button {
  margin-top: 10px;
  background: #FFC107;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* CART */
.cart {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,.15);
  position: sticky;
  top: 20px;
}

.cart h2 {
  font-family: 'Poppins';
  margin-bottom: 15px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-item button {
  background: #FFC107;
  border: none;
  padding: 2px 8px;
  border-radius: 5px;
}

/* BILL */
.bill {
  margin-top: 15px;
  font-weight: 600;
}

.place-order {
  width: 100%;
  margin-top: 15px;
  background: #2E2E2E;
  color: #FFC107;
  padding: 12px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .order-container {
    grid-template-columns: 1fr;
  }
}
