/* MENU HERO */
.menu-hero {
  position: relative;
  padding: 110px 0 26px;
  overflow: hidden;
  background: #e3d1bd;
  color: #221a14;
}

.menu-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .99) 0%, rgba(0, 0, 0, .94) 34%, rgba(0, 0, 0, .66) 56%, rgba(0, 0, 0, .18) 72%, rgba(0, 0, 0, .02) 100%),
    url("/static/core/img/platillos/platillos.png") center/cover no-repeat;
  filter: saturate(.95) contrast(.98);
  transform: scale(1.02);
}

.menu-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-left: 0;
}

.menu-hero-title {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .38);
}

.menu-hero-sub {
  color: #fff8f0;
  max-width: 820px;
  line-height: 1.5;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 18, 14, .78), rgba(24, 18, 14, .62));
  border: 1px solid rgba(255, 248, 240, .12);
  backdrop-filter: blur(1.5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-tabs-strip {
  padding: 12px 0 0;
  background: #000000;
}

.menu-tab {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(34, 26, 20, .16);
  background: rgba(255, 255, 255, .28);
  color: #221a14;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 750;
}

.menu-tab:hover {
  border-color: rgba(34, 26, 20, .3);
}

.menu-tab.is-active {
  background: #221a14;
  color: #f7efe8;
  border-color: #221a14;
}

.menu-tab--outline {
  background: rgba(255, 255, 255, .14);
}

/* PAGE LAYOUT */
.menu-page {
  padding: 26px 0 56px;
  background: #e3d1bd;
  color: #221a14;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
}

@media (max-width: 980px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-side {
    order: -1;
    margin-bottom: 10px;
  }

  .menu-side-block {
    display: none;
  }
}

/* Title */
.menu-section-head {
  margin: 6px 0 14px;
}

.menu-section-title {
  font-size: 18px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(245, 243, 238, .92);
}

/*GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.p-card,
.menu-subsection {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(20, 20, 20, .95);
  border: 1px solid rgba(245, 243, 238, .12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .30);
}

.menu-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.p-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-body {
  padding: 12px 12px 14px;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.menu-card-name {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .02em;
  color: rgba(245, 243, 238, .95);
}

.menu-like {
  border: 0;
  background: transparent;
  color: rgba(245, 243, 238, .55);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}

.menu-like:hover {
  color: rgba(230, 32, 38, .95);
  background: rgba(230, 32, 38, .10);
}

.menu-card-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245, 243, 238, .78);
}

.menu-rating .star {
  font-size: 12px;
  opacity: .35;
}

.menu-rating .star.is-on {
  opacity: .95;
  color: rgba(249, 224, 36, .92);
}

.menu-price {
  font-weight: 900;
  letter-spacing: .04em;
}

/* SIDEBAR*/
.menu-side {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  align-self: start;
}

@media (max-width: 980px) {
  .menu-side {
    position: static;
  }
}

.menu-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-search input {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(34, 26, 20, .14);
  background: rgba(255, 255, 255, .24);
  color: #111111;
  padding: 0 12px;
  outline: none;
}

.menu-search input::placeholder {
  color: #111111;
  opacity: 1;
}

.menu-search input::-webkit-input-placeholder {
  color: #111111;
  opacity: 1;
}

.menu-search input::-moz-placeholder {
  color: #111111;
  opacity: 1;
}

.menu-search input:-ms-input-placeholder {
  color: #111111;
}

.menu-search input::-ms-input-placeholder {
  color: #111111;
}

.menu-search button {
  position: relative;
  width: 48px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(34, 26, 20, .14);
  background: #221a14;
  color: #f7efe8;
  font-weight: 900;
  font-size: 0;
  cursor: pointer;
}

.menu-search button::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid #f7efe8;
  border-radius: 50%;
}

.menu-search button::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 25px;
  width: 8px;
  height: 2px;
  background: #f7efe8;
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.menu-search button:hover {
  background: #3a2e24;
}

.menu-side-block {
  border-radius: 18px;
  border: 1px solid rgba(34, 26, 20, .12);
  background: rgba(255, 255, 255, .24);
  padding: 14px;
}

.menu-side-title {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(245, 243, 238, .88);
  margin-bottom: 10px;
}

.menu-side-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-side-links a {
  text-decoration: none;
  color: rgba(34, 26, 20, .78);
  font-size: 13px;
  line-height: 1.3;
}

.menu-side-links a:hover {
  color: rgba(34, 26, 20, .96);
}

.menu-empty-state {
  margin: 4px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(34, 26, 20, .16);
  background: rgba(255, 255, 255, .2);
  color: #221a14;
}

/*CARDS*/
.p-card {
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease;
}

.p-card::after {
  content: none;
}

.p-card:hover {
  transform: translateY(-2px);
}

.p-name {
  padding: 14px 14px 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #221a14;
}

.p-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
}

.p-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: none;
}

.p-prices {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-modal-hint {
  margin: 2px 2px 0;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(34, 26, 20, .68);
  font-weight: 800;
  text-align: center;
}

.p-prices::before {
  content: none;
}

.p-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 26, 20, .12);
  background: rgba(255, 255, 255, .24);
}

.p-price-row:last-child {
}

.p-label {
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(34, 26, 20, .74);
  font-weight: 800;
  line-height: 1;
}

.p-price {
  font-weight: 950;
  letter-spacing: .04em;
  color: #221a14;
}

.p-2x1 {
  border-color: rgba(34, 26, 20, .16);
  background: rgba(255, 255, 255, .3);
}

.p-2x1 .p-label {
  color: rgba(34, 26, 20, .84);
}

.p-2x1 .p-price {
  color: #221a14;
}

/*MODAL + BLUR FONDO*/
body.modal-open {
  overflow: hidden;
}

/* Difumina TODO lo de atrás */
body.modal-open .page-blur {
  filter: blur(10px);
  transform: scale(1.01);
}

/* Contenedor modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-h) + 16px) 0 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal.is-open {
  display: flex;
}

/* Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .42);
}

/* Dialog */
.modal-dialog {
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(245, 243, 238, .12);
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  padding: 0;
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(245, 243, 238, .14);
  background: rgba(8, 8, 8, .42);
  color: rgba(245, 243, 238, .9);
  font-size: 0;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: rgba(245, 243, 238, .92);
  border-radius: 999px;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-title {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 24px 56px 12px 24px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .5);
}

.modal-photo {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.modal-photo img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  display: block;
}

.modal-prices {
  margin: 12px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 243, 238, .12);
  background: rgba(255, 255, 255, .06);
}

.modal-ingredients {
  margin: 0 24px 0;
  border-top: 1px solid rgba(245, 243, 238, .10);
  padding: 12px 0 24px;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  margin-top: 0;
}

.modal-subtitle {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(245, 243, 238, .85);
  margin-bottom: 8px;
}

.modal-ingredients p {
  color: rgba(245, 243, 238, .78);
  line-height: 1.6;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* CLAVE */
}

.modal-backdrop {
  z-index: 1;
}

.modal-dialog {
  position: relative;
  z-index: 2;
}

[hidden] {
  display: none !important;
}

.modal-price-row[hidden],
.modal-section[hidden] {
  display: none !important;
}

.modal-prices {
  margin-bottom: 16px;
}

.modal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 14px 0;
}

.modal-section {
  margin-top: 12px;
}

.modal-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}

.modal-description p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.modal-sections {
  margin-top: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(245, 243, 238, .12);
  background: rgba(15, 15, 15, .40);
}

.modal-section+.modal-section {
  margin-top: 12px;
}

.modal-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.modal-section p {
  margin: 0;
  color: rgba(245, 243, 238, .78);
  line-height: 1.6;
  font-size: 14px;
}

.modal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 14px 0;
}

/* Tarjeta para descripción y secciones */
.modal-sections {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(245, 243, 238, .12);
  background: rgba(15, 15, 15, .40);
}

.modal-section+.modal-section {
  margin-top: 12px;
}

.modal-section p {
  margin: 0;
  color: rgba(245, 243, 238, .78);
  line-height: 1.6;
  font-size: 14px;
}

.menu-subsection {
  margin-top: 40px;
}

.menu-subsection-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #f5f3ee;
  letter-spacing: 0.5px;
  border-left: 3px solid #a78e77;
  padding-left: 12px;
}

.menu-charolas {
  margin-top: 0;
}

.menu-charola-card {
  border-radius: 18px;
}

.menu-charola-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-charola-media img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  object-fit: contain;
}

.sushi-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-main {
  min-width: 0;
}

.menu-main .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1100px) {
  .menu-main .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .menu-main .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

@media (max-width: 980px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }
}

.p-card {
  cursor: pointer;
}

.p-card * {
  pointer-events: none;
}

.menu-tabs {
  position: sticky;
  top: 90px;
  /* ajusta según tu navbar */
  z-index: 50;
  padding: 10px 0;
  /*backdrop-filter: blur(10px);*/
}
@media (max-width: 980px) {
  .menu-tabs {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--nav-h) + 8px);
    z-index: 900;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(245, 243, 238, .16);
    background: #000000;
    backdrop-filter: blur(8px);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs .menu-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .menu-page {
    padding-top: 86px;
  }
}
.anchor{
  display: block;
  scroll-margin-top: 140px; /* ajusta según tu header */
}
/* Para que el #hash caiga donde debe (debajo del header/hero) */
.menu-subsection{
  scroll-margin-top: 220px; /* ajusta si hace falta */
}

html{
  scroll-behavior: smooth;
}
.menu-subsection{
  scroll-margin-top: 220px;
}
html{ scroll-behavior: smooth; }

/* Ajuste final tabs debajo del hero + sticky mobile horizontal */
.menu-tabs-strip {
  padding: 12px 0 0;
  background: #000000;
}

.menu-tabs-strip .menu-tabs {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
}

@media (max-width: 980px) {
  .menu-tabs-strip {
    position: sticky;
    top: var(--nav-h);
    z-index: 900;
    padding: 0;
  }

  .menu-tabs-strip .menu-tabs {
    padding: 8px;
    border-radius: 0;
    border: 0;
    background: #000000;
    backdrop-filter: blur(8px);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs-strip .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs-strip .menu-tabs .menu-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .menu-page {
    padding-top: 26px;
  }
}
.menu-pdf-shell {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(245, 243, 238, .16);
    background: #000000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
    overflow: hidden;
  }

  .menu-pdf-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: #0a0a0a;
  }

  .menu-pdf-title {
    margin: 0;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
  }

  .menu-pdf-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .menu-pdf-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(245, 243, 238, .22);
    background: rgba(245, 243, 238, .92);
    color: #101010;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 900;
  }

  .menu-pdf-link-soft {
    background: rgba(245, 243, 238, .14);
    color: rgba(245, 243, 238, .92);
  }

  .menu-pdf-link-soft:hover {
    background: rgba(245, 243, 238, .24);
    border-color: rgba(245, 243, 238, .36);
  }

  .menu-pdf-link:hover {
    background: rgba(249, 224, 36, .92);
    border-color: rgba(249, 224, 36, .32);
  }

  .menu-pdf-hint {
    margin: 0;
    padding: 10px 16px 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .82);
  }

  .menu-pdf {
    width: 100%;
    height: clamp(460px, 82vh, 980px);
    border: 0;
    display: block;
    background: #fff;
  }

  @media (max-width: 720px) {
    .menu-pdf-top {
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-pdf-actions {
      width: 100%;
      justify-content: stretch;
    }

    .menu-pdf-link {
      width: 100%;
    }

    .menu-pdf {
      height: clamp(420px, 64vh, 760px);
    }
  }

  /* MENU THEME */
  .menu-hero,
  .menu-page {
    background: #e3d1bd;
    color: #221a14;
  }

  .menu-pdf-shell {
    background: #000000;
    color: #f5f3ee;
  }

  .menu-hero-title,
  .menu-hero-sub,
  .menu-section-title,
  .menu-subsection-title,
  .menu-side-title,
  .menu-side-links a,
  .p-name,
  .p-label,
  .p-price,
  .menu-empty-state,
  .modal-title,
  .modal-subtitle,
  .modal-ingredients p,
  .menu-pdf-hint {
    color: #221a14;
  }

  .menu-pdf-title {
    color: #ffffff;
  }

  .menu-hero-media {
    background: url("/static/core/img/platillos/platillos.png") center/cover no-repeat;
  }

  .menu-tab {
    background: rgba(15, 15, 15, .35);
    color: rgba(245, 243, 238, .92);
    border-color: rgba(245, 243, 238, .20);
  }

  .menu-tab:hover {
    border-color: rgba(249, 224, 36, .35);
  }

  .menu-tab.is-active {
    background: rgba(245, 243, 238, .92);
    color: #111111;
    border-color: rgba(245, 243, 238, .92);
  }

  .menu-tab--outline {
    background: rgba(15, 15, 15, .10);
  }

  .menu-search input,
  .menu-side-block,
  .p-price-row,
  .modal-price-row,
  .menu-pdf-top,
  .menu-pdf-link-soft {
    background: rgba(255, 255, 255, .24);
    border-color: rgba(34, 26, 20, .12);
    color: #221a14;
  }

  .menu-search input::placeholder,
  .menu-pdf-hint {
    color: #111111;
  }

  .menu-search button,
  .menu-pdf-link {
    background: #221a14;
    color: #f7efe8;
    border-color: rgba(34, 26, 20, .14);
  }

  .menu-search button::before {
    border-color: #f7efe8;
  }

  .menu-search button::after {
    background: #f7efe8;
  }

  .menu-search button:hover,
  .menu-pdf-link:hover {
    background: #3a2e24;
    border-color: #3a2e24;
  }

  .menu-side-links a:hover {
    color: rgba(34, 26, 20, .96);
  }

  .menu-empty-state {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(34, 26, 20, .16);
  }

  .p-2x1 {
    background: rgba(255, 255, 255, .3);
    border-color: rgba(34, 26, 20, .16);
  }

  .modal-dialog {
    background: transparent;
    border-color: transparent;
  }

  .modal-close {
    border-color: rgba(245, 243, 238, .14);
    background: rgba(15, 15, 15, .65);
  }

  .modal-close::before,
  .modal-close::after {
    background: rgba(245, 243, 238, .92);
  }

  .modal-title,
  .modal-subtitle,
  .modal-ingredients p {
    color: rgba(245, 243, 238, .92);
  }

  .modal-price-row .p-label,
  .modal-price-row .p-price {
    color: rgba(245, 243, 238, .98);
  }

  .modal-subtitle {
    color: rgba(245, 243, 238, .85);
  }

  .modal-ingredients p {
    color: rgba(245, 243, 238, .78);
  }

  .modal-price-row,
  .modal-ingredients {
    border-color: rgba(245, 243, 238, .12);
  }

.menu-hero-title {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .42);
}

.menu-hero-sub {
  color: rgba(255, 248, 240, .94);
  text-shadow: 0 6px 20px rgba(0, 0, 0, .32);
}

@media (min-width: 992px) {
  .menu-hero-inner {
    transform: translateX(60px);
  }
}

@media (max-width: 768px) {
  .menu-hero-sub {
    font-size: 15px;
    padding: 9px 12px;
    background: rgba(18, 14, 11, .72);
    border-color: rgba(255, 248, 240, .10);
    backdrop-filter: none;
  }
}
