/* MenuX Frontend Styles - adapted from your layout */

.menux-menu-wrapper {
  font-family: inherit;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  line-height: 1.6;
}

.menux-menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menux-menu-header h1 {
  font-size: 2.5em;
  margin-bottom: 5px;
}

.menux-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .menux-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menux-category {
  margin-bottom: 30px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menux-category h2 {
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-top: 0;
  font-size: 1.4em;
}

.menux-item {
  margin-bottom: 20px;
}

.menux-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 5px;
}

.menux-item-title {
  font-weight: bold;
  font-size: 1.1em;
}

.menux-item-price {
  font-weight: bold;
  white-space: nowrap;
  margin-left: 12px;
}

.menux-item-desc {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}

.menux-list {
  list-style-type: none;
  padding: 0;
  column-count: 2;
  margin: 0;
}

@media (max-width: 480px) {
  .menux-list {
    column-count: 1;
  }
}

.menux-list li {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.menux-category-note {
  font-size: 0.9em;
  color: #555;
  margin: 12px 0 0;
  font-style: italic;
}

.menux-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.menux-footer p {
  margin: 6px 0;
}

.menux-powered {
  margin-top: 14px;
  font-size: 0.85em;
  color: #999;
}

.menux-powered a {
  color: #777;
  text-decoration: none;
}

.menux-powered a:hover {
  color: #333;
  text-decoration: underline;
}

/* Unavailable items */
.menux-item.is-unavailable {
  opacity: 0.55;
}

.menux-item.is-unavailable .menux-item-title::after {
  content: " (Unavailable)";
  font-weight: normal;
  font-size: 0.85em;
  color: #999;
}
