.restaurant-menu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-category-section {
  margin-bottom: 60px;
  text-align: center;
}

.menu-category-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 30px 0;
  display: inline-block;
  border-bottom: 2px solid #ff4500;
  padding-bottom: 10px;
}

.restaurant-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .restaurant-menu {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
}

.menu-item {
  border: none;
  padding: 0;
  background: transparent;
}

.menu-item-image {
  display: none;
}

.menu-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.menu-item-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.menu-item-dotted-line {
  flex: 1;
  border-bottom: 2px dotted #ccc;
  margin: 0 10px;
  min-width: 20px;
  align-self: center;
}

.menu-item-price {
  font-weight: bold;
  font-size: 24px;
  color: #ff4500;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.menu-item-content {
  font-size: 16px;
  font-family: unset;
  color: #999;
  line-height: 1.6;
  margin-top: 5px;
  text-align: left;
}

.menu-item-content p {
  margin: 0;
}
