.food-menu-list--bilingual {
  --fm-title-a: #f4d24e;
  --fm-title-b: #d6ae49;
  --fm-text: #f2f2f2;
  padding: 0;
}

.food-menu-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 28px;
  width: 100%;
}

.food-menu-category:last-child {
  margin-bottom: 0;
}

.food-menu-category__title {
  position: relative;
  margin: 0 0 16px;
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--fm-title-b) 0%, #f8f4d7 45%, var(--fm-title-a) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.food-menu-category__title::after {
  content: "";
  display: block;
  width: min(320px, 78vw);
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(214, 174, 73, 0.4) 20%,
    rgba(248, 244, 215, 1) 50%,
    rgba(214, 174, 73, 0.4) 80%,
    rgba(0, 0, 0, 1) 100%
  );
}

.food-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 26px;
  width: 100%;
  text-align: center;
}

.food-menu-item {
  display: grid;
  justify-items: center;
  list-style: none;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}

.food-menu-items li::marker {
  content: "";
}

.food-menu-item::before {
  content: none !important;
}

.food-menu-item__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.08;
  color: #d6ae49;
  background: linear-gradient(90deg, var(--fm-title-a) 0%, #f8f4d7 35%, var(--fm-title-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: fit-content;
  max-width: 100%;
}

.food-menu-item__divider {
  opacity: 0.95;
}

.food-menu-item__content {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: var(--fm-text);
  text-align: center;
  width: fit-content;
  max-width: 100%;
}

.food-menu-item__content--tr {
  margin-top: 4px;
  font-weight: 400;
  opacity: 0.85;
}

.food-menu-item__content--empty {
  visibility: hidden;
}

@media (prefers-color-scheme: dark) {
  .food-menu-category__title {
    background: none;
    color: #d6ae49 !important;
    -webkit-text-fill-color: #d6ae49;
  }

  .food-menu-item__title {
    background: none;
    color: #d6ae49 !important;
    -webkit-text-fill-color: #d6ae49;
  }
}

@media (forced-colors: active) {
  .food-menu-category__title {
    background: none;
    color: CanvasText !important;
    -webkit-text-fill-color: CanvasText;
  }

  .food-menu-item__title {
    background: none;
    color: CanvasText !important;
    -webkit-text-fill-color: CanvasText;
  }
}

@media (min-width: 768px) {
  .food-menu-items {
    gap: 36px;
  }
}
