.mfm-beer-menu {
  margin: 16px 0 56px;
}

.mfm-beer-board {
  background: linear-gradient(180deg, #617286 0%, #556578 100%);
  border: 8px solid #d7dae1;
  border-radius: 12px;
  box-shadow: inset 0 0 0 3px rgba(21, 31, 43, 0.55), 0 16px 36px rgba(0, 0, 0, 0.3);
  padding: 22px 18px;
  color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.mfm-beer-board > * {
  position: relative;
  z-index: 2;
}

.mfm-beer-board.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--mfm-bg-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 0;
}

.mfm-beer-board.has-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 46, 60, 0.72) 0%, rgba(36, 46, 60, 0.82) 100%);
  z-index: 1;
}

.mfm-beer-board-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ecf0f5;
}

.mfm-beer-board-note {
  margin: 8px 0 18px;
  text-align: center;
  color: rgba(241, 245, 249, 0.82);
  font-size: 0.9rem;
}

.mfm-beer-section-title {
  margin: 18px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dfe6ef;
  font-size: 1rem;
}

.mfm-beer-rows {
  display: grid;
  gap: 10px;
}

.mfm-beer-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 58px 82px;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(223, 230, 239, 0.2);
}

.mfm-beer-no {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: rgba(223, 230, 239, 0.92);
}

.mfm-beer-main {
  min-width: 0;
}

.mfm-beer-name {
  margin: 0;
  text-transform: uppercase;
  color: #f5b649;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mfm-beer-facts {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: rgba(234, 241, 248, 0.88);
}

.mfm-beer-cost {
  margin: 0;
  text-align: right;
  display: grid;
  line-height: 1.05;
}

.mfm-beer-cost strong {
  color: #f5f7fb;
  font-size: 1rem;
}

.mfm-beer-cost span {
  color: rgba(234, 241, 248, 0.88);
  font-size: 0.72rem;
  white-space: nowrap;
}

.mfm-beer-cost-empty {
  visibility: hidden;
}

@media (max-width: 640px) {
  .mfm-beer-board {
    padding: 18px 12px;
  }

  .mfm-beer-row {
    grid-template-columns: 30px minmax(0, 1fr) 56px;
    grid-template-areas:
      "num main price1"
      "num main price2";
    align-items: start;
  }

  .mfm-beer-no {
    grid-area: num;
    padding-top: 3px;
  }

  .mfm-beer-main {
    grid-area: main;
  }

  .mfm-beer-row .mfm-beer-cost:nth-of-type(3) {
    grid-area: price1;
  }

  .mfm-beer-row .mfm-beer-cost:nth-of-type(4) {
    grid-area: price2;
  }

  .mfm-beer-name {
    font-size: 0.97rem;
  }

  .mfm-beer-facts {
    font-size: 0.78rem;
  }

  .mfm-beer-cost strong {
    font-size: 0.92rem;
  }
}
