.menu-page {
  background:
    radial-gradient(circle at 16% 11%, rgba(241,166,32,.028), transparent 29%),
    radial-gradient(circle at 86% 28%, rgba(255,255,255,.014), transparent 27%),
    linear-gradient(180deg, #080b0c 0%, #090c0d 58%, #080b0c 100%);
}

.menu-page .container-xl { max-width: 1014px; }
.menu-page .site-header { position: relative; }
.menu-page .header-inner { min-height: 72px; }

.menu-hero-section { padding: 17px 0 26px; }
.menu-hero-section h1 {
  margin: 0 0 5px;
  font-size: clamp(40px, 4.35vw, 55px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.045em;
}
.menu-hero-section h1 span { color: var(--gold); }
.menu-hero-section h2 {
  color: var(--gold-2);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.25;
  margin: 11px 0 13px;
  font-weight: 600;
}
.menu-hero-section > .container-xl > .row > div:first-child > p {
  color: #c7cacc;
  font-size: 13px;
  line-height: 1.52;
  max-width: 410px;
  margin: 0 0 27px;
}
.menu-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.menu-benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.menu-benefit i {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  flex: 0 0 34px;
}
.menu-benefit span {
  color: #e7e9e9;
  font-size: 10.5px;
  line-height: 1.35;
}
.menu-hero-image-wrap {
  border-radius: 72px 30px 72px 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.4), 0 0 18px rgba(241,166,32,.09);
}
.menu-hero-image {
  width: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.menu-catalog-section { padding: 4px 0 18px; }
.menu-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.menu-filter-btn {
  min-height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(241,166,32,.43);
  background: linear-gradient(145deg, rgba(19,23,24,.96), rgba(10,13,14,.97));
  color: #e1e3e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
}
.menu-filter-btn i { color: var(--gold); font-size: 24px; line-height: 1; }
.menu-filter-btn:hover { border-color: rgba(241,166,32,.8); transform: translateY(-1px); }
.menu-filter-btn.active {
  color: #17130b;
  background: linear-gradient(180deg, #f9bd4c, #f0a51f);
  border-color: #f6b93f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 8px 20px rgba(241,166,32,.11);
}
.menu-filter-btn.active i { color: #17130b; }

.dish-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(20,24,25,.98), rgba(10,13,14,.99));
  border: 1px solid rgba(241,166,32,.46);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.dish-card:hover { transform: translateY(-4px); border-color: rgba(241,166,32,.78); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.dish-image {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid rgba(241,166,32,.25);
}
.dish-card-body { padding: 13px 12px 12px; display: flex; flex-direction: column; flex: 1; }
.dish-card h3 {
  min-height: 52px;
  color: #f4f5f5;
  font-size: 15.5px;
  line-height: 1.32;
  font-weight: 600;
  margin: 0 0 10px;
}
.dish-description {
  margin: -2px 0 12px;
  color: #aeb2b3;
  font-size: 11px;
  line-height: 1.45;
}
.dish-meta {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  border-top: 1px solid rgba(241,166,32,.29);
  padding-top: 9px;
  margin-top: auto;
}
.dish-meta > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 7px;
  border-right: 1px solid rgba(241,166,32,.2);
}
.dish-meta > div + div { padding-left: 7px; }
.dish-meta > div:last-child { border-right: 0; padding-right: 0; }
.dish-meta i { color: var(--gold); font-size: 20px; line-height: 1; flex: 0 0 auto; }
.dish-meta span { color: #aeb2b3; font-size: 8.5px; line-height: 1.2; }
.dish-meta strong { display: block; color: #dfe1e1; font-size: 9px; font-weight: 500; margin-top: 2px; white-space: nowrap; }
.dish-more {
  width: 100%;
  min-height: 32px;
  margin-top: 13px;
  padding: 5px 10px;
  border: 1px solid rgba(241,166,32,.34);
  border-radius: 8px;
  background: rgba(12,15,16,.7);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 10px;
  font-weight: 600;
}
.dish-more i { position: absolute; right: 10px; font-size: 13px; }
.dish-more:hover { background: var(--gold); color: #151007; border-color: var(--gold); }
.menu-empty {
  margin-top: 15px;
  border: 1px dashed rgba(241,166,32,.45);
  border-radius: 13px;
  padding: 22px;
  text-align: center;
  color: #b9bcbc;
  background: rgba(15,18,19,.7);
}

.weekly-section { padding: 0 0 14px; }
.weekly-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 7px; }
.weekly-heading > i { color: var(--gold); font-size: 34px; }
.weekly-heading h2 { color: #f0f1f1; font-size: 19px; font-weight: 700; margin: 0 0 1px; }
.weekly-heading p { color: #9fa3a4; font-size: 10px; margin: 0; }
.weekly-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(241,166,32,.48);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16,20,21,.97), rgba(9,12,13,.98));
}
.weekly-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); }
.weekly-day {
  min-height: 132px;
  padding: 11px 12px 12px;
  text-align: center;
  border-right: 1px solid rgba(241,166,32,.26);
}
.weekly-day:last-child { border-right: 0; }
.weekly-day h3 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 8px;
  margin: 0 -12px 10px;
  border-bottom: 1px solid rgba(241,166,32,.25);
}
.weekly-day p { min-height: 46px; color: #e0e2e2; font-size: 10px; line-height: 1.45; margin: 0 0 8px; }
.weekly-day span { color: #c4c7c7; font-size: 10px; }
.weekly-day span i { color: var(--gold); font-size: 20px; vertical-align: middle; margin-right: 5px; }
.weekly-more {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-top: 1px solid rgba(241,166,32,.28);
  background: rgba(11,14,15,.85);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
.weekly-more:hover { background: rgba(241,166,32,.08); }
.weekly-extra {
  padding: 10px 15px 12px;
  border-top: 1px solid rgba(241,166,32,.23);
  color: #b9bdbd;
  font-size: 10px;
  text-align: center;
}

.menu-info-section { padding: 0 0 10px; }
.menu-notice {
  min-height: 43px;
  border: 1px solid rgba(241,166,32,.43);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18,22,23,.97), rgba(10,13,14,.97));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 17px;
  margin-bottom: 14px;
}
.menu-notice > i { color: var(--gold); font-size: 22px; flex: 0 0 auto; }
.menu-notice > i:last-child { margin-left: auto; font-size: 26px; }
.menu-notice p { margin: 0; color: #bfc2c2; font-size: 10px; }
.menu-notice strong { color: #eff0f0; }
.menu-actions { margin-bottom: 14px; }
.menu-action-card {
  min-height: 68px;
  height: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(241,166,32,.47);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(18,22,23,.98), rgba(10,13,14,.98));
}
.menu-action-card > i:first-child { color: var(--gold); font-size: 31px; }
.menu-action-card > i:last-child { color: var(--gold); font-size: 21px; }
.menu-action-card strong { display: block; color: var(--gold); font-size: 12px; margin-bottom: 2px; }
.menu-action-card span { display: block; color: #b0b4b4; font-size: 9px; }
.menu-action-card:hover { transform: translateY(-2px); border-color: rgba(241,166,32,.8); }
.menu-action-card.primary {
  background: linear-gradient(115deg, #f7b337 0%, #ffc55a 100%);
  border-color: #f8b63b;
}
.menu-action-card.primary i,
.menu-action-card.primary strong { color: #17130b; }
.menu-action-card.primary span { color: rgba(23,19,11,.84); }
.menu-contact-strip {
  min-height: 79px;
  border: 1px solid rgba(241,166,32,.43);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr 1.15fr;
  align-items: center;
  background: linear-gradient(145deg, rgba(17,21,22,.98), rgba(9,12,13,.98));
  padding: 10px 8px;
}
.menu-contact-item {
  min-width: 0;
  min-height: 55px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(241,166,32,.25);
}
.menu-contact-item:last-child { border-right: 0; }
.menu-contact-item > i { color: var(--gold); font-size: 29px; flex: 0 0 auto; }
.menu-contact-item strong { display: block; color: #f0f1f1; font-size: 11px; line-height: 1.3; margin-bottom: 3px; }
.menu-contact-item span { display: block; color: #9fa3a4; font-size: 8.5px; line-height: 1.4; }
.menu-contact-item:hover strong { color: var(--gold); }
.menu-contact-item.support strong { font-size: 11px; }

.menu-footer { margin-top: 0; }
.menu-page .footer-main { padding-top: 16px; }

.dish-modal .modal-content {
  color: #e8eaea;
  background: linear-gradient(145deg, #171b1c, #0d1011);
  border: 1px solid rgba(241,166,32,.6);
  border-radius: 17px;
}
.dish-modal .modal-header { border-bottom-color: rgba(241,166,32,.2); }
.dish-modal .modal-title { color: var(--gold); }
.dish-modal h3 { font-size: 20px; margin: 0 0 16px; }
.dish-modal p { color: #adb1b2; font-size: 13px; margin: 16px 0 0; }
.modal-dish-meta { display: grid; gap: 8px; }
.modal-dish-meta span { color: #bfc2c2; font-size: 12px; }
.modal-dish-meta i { color: var(--gold); margin-right: 7px; }

@media (max-width: 991.98px) {
  .menu-page .site-header { position: sticky; }
  .menu-hero-section { padding-top: 33px; }
  .menu-hero-section > .container-xl > .row > div:first-child > p { max-width: 600px; }
  .menu-benefits { max-width: 610px; }
  .menu-hero-image-wrap { max-width: 760px; margin-inline: auto; }
  .menu-filter { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
  .weekly-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .weekly-day { border-bottom: 1px solid rgba(241,166,32,.24); }
  .weekly-day:nth-child(2n) { border-right: 0; }
  .weekly-day:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .menu-contact-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .menu-contact-item:nth-child(2) { border-right: 0; }
  .menu-contact-item:nth-child(-n+2) { border-bottom: 1px solid rgba(241,166,32,.2); }
}

@media (max-width: 767.98px) {
  .menu-hero-section h1 { font-size: 43px; }
  .menu-benefits { grid-template-columns: 1fr; gap: 12px; }
  .menu-benefit i { font-size: 31px; }
  .menu-filter { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .menu-filter-btn:first-child { grid-column: 1 / -1; }
  .dish-card h3 { min-height: auto; }
  .weekly-grid { grid-template-columns: 1fr; }
  .weekly-day, .weekly-day:nth-child(2n) { border-right: 0; }
  .weekly-day:last-child { grid-column: auto; }
  .menu-notice { align-items: flex-start; }
  .menu-notice > i:last-child { display: none; }
  .menu-contact-strip { grid-template-columns: 1fr; }
  .menu-contact-item { border-right: 0; border-bottom: 1px solid rgba(241,166,32,.2); }
  .menu-contact-item:nth-child(2) { border-right: 0; }
  .menu-contact-item:last-child { border-bottom: 0; }
}

@media (max-width: 479.98px) {
  .menu-hero-section h1 { font-size: 38px; }
  .menu-hero-image { min-height: 210px; }
  .menu-filter { grid-template-columns: 1fr; }
  .menu-filter-btn:first-child { grid-column: auto; }
  .menu-action-card { grid-template-columns: 36px 1fr 20px; padding-inline: 13px; }
}
