.menu-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: 90px;
}
.category-title {
  font-size: 1.9rem;
  font-weight: 600;
  border-left: 6px solid #ffd000;
  padding-left: 1rem;
  margin-bottom: 1.8rem;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* grid layout: responsive cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.menu-category p {
 color: whitesmoke;
 margin-bottom: 1rem;
 font-weight: bold;
}

.menu-item {
  background: rgb(54, 25, 8);
  border: 2px solid #5c4016;
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  transition: all 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.12);
  border-color: #f0dfd2;
}

.item-info {
  flex: 2;
}

.item-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.item-desc {
  font-size: 0.85rem;
  color: #b99667;
  margin-top: 0.2rem;
  line-height: 1.35;
  max-width: 280px;
}

.item-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: #301c09;
  background: #cf884e;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}


.badge {
  font-size: 0.7rem;
  background: #f2e5db;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #9b5e2c;
  letter-spacing: -0.2px;
}

.veg {
  background: #e0f2e9;
  color: #2b6e47;
}

.spicy {
  background: #ffefe5;
  color: #c4511b;
}
