/* 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-heading {
  text-align: center;
  font-size: 1.85em;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.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-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #777;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.menux-powered-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.menux-powered-link:hover {
  color: #333;
  text-decoration: none;
}

.menux-powered-link:hover span {
  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;
}


.menux-item-brewery {
  font-weight: 700;
}


/* 86 / sold out — still listed, clearly marked */
.menux-item.is-86 {
  opacity: 0.72;
}
.menux-item.is-86 .menux-item-title {
  text-decoration: none;
}
.menux-badge-86 {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  color: #8a1f1f;
  background: rgba(180, 40, 40, 0.12);
  border: 1px solid rgba(180, 40, 40, 0.25);
}


/* Allergen info link (only rendered when allergen data exists) */
.menux-allergen-link-wrap {
  margin: 0 0 18px;
  text-align: center;
}
.menux-allergen-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 600;
}
.menux-allergen-link:hover {
  border-color: #999;
  color: #111;
  text-decoration: none;
}


.menux-menu-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 20px;
}
.menux-menu-switcher a {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menux-menu-switcher a.is-active {
  border-color: #333;
}




html.menux-event-lock,
html.menux-event-lock body {
  overflow: hidden;
  overscroll-behavior: none;
}
.menux-event-reopen {
  display: block;
  text-align: center;
  margin: 0 0 16px;
}
.menux-event-reopen a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
#menux-event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  background: rgba(6, 6, 8, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  visibility: hidden;
  pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, visibility 0s linear 0.35s;
}
#menux-event-lightbox.is-open {
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  visibility: visible;
  pointer-events: auto;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.menux-event-card {
  position: relative;
  width: min(92vw, 540px);
  max-height: min(78vh, 78dvh);
  overflow: hidden;
  border-radius: 16px;
  background: #0b0b0b;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(28px) scale(0.92);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
#menux-event-lightbox.is-open .menux-event-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.menux-event-card h3 {
  display: none;
}
.menux-event-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 78dvh);
  object-fit: contain;
  object-position: center;
}
.menux-event-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #111 !important;
  color: #fff !important;
  line-height: 0;
  font-size: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
.menux-event-close svg {
  display: block;
  fill: #fff !important;
  color: #fff !important;
}
.menux-event-close svg path {
  fill: #fff !important;
}
.menux-event-close:active {
  transform: scale(0.94);
}
@media (max-width: 640px) {
  #menux-event-lightbox {
    padding: 12px 8px;
  }
  .menux-event-card {
    width: min(96vw, 540px);
    border-radius: 12px;
  }
}

.menux-gf-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 0.4em;
  padding: 0;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--menux-accent, #c9a227);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -0.12em;
}

.menux-menu-desc {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  color: inherit;
  opacity: 0.75;
  font-size: 0.95em;
  line-height: 1.45;
}
