.menu-list-section {
  max-width: 1100px;
  margin: 40px auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.menu-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.menu-left {
  background-color: orange;
  width: 360px; /* Lebar gambar */
  height: 480px; /* Tinggi gambar (rasio 3:4) */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.menu-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-right {
  flex: 1;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.menu-header .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: orange;
}

.menu-right h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.menu-right .cal {
  font-size: 0.9rem;
  color: gray;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}

.menu-section.reverse {
  flex-direction: row-reverse;
}
