:root {
  color-scheme: dark;
  --bg: #0b0b0f;
  --panel: #15151b;
  --panel-soft: #1c1b22;
  --text: #f7f2ef;
  --muted: #a6a0a6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff5a4f;
  --gold: #f3b95f;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 90, 79, 0.16), transparent 32rem),
    linear-gradient(180deg, #111116 0%, var(--bg) 38%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.app-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 1rem 8.75rem;
}

.hero {
  position: relative;
  min-height: 18rem;
  margin: 0 -1rem;
  padding: 1rem 1rem 1.1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 11, 15, 0.14), rgba(11, 11, 15, 0.92)),
    url("../../assets/menu/burger.jpg")
      center / cover;
}

.top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar .language-switcher {
  display: none;
}

.menu-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.menu-brand-logo {
  display: block;
  width: auto;
  height: 2.3rem;
  object-fit: contain;
  filter: drop-shadow(0 0.55rem 1rem rgba(0, 0, 0, 0.35));
}

.language-switcher {
  position: relative;
  z-index: 4;
}

.language-current,
.language-dropdown button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.language-current {
  width: 2.35rem;
  height: 2.35rem;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 12, 16, 0.68);
  backdrop-filter: blur(18px);
}

.language-current:hover,
.language-switcher.is-open .language-current {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.language-current:hover,
.language-dropdown button:hover {
  transform: translateY(-1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  display: grid;
  gap: 0.28rem;
  min-width: 5.8rem;
  padding: 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(12, 12, 16, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.language-switcher.is-open .language-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-dropdown button {
  grid-template-columns: 1.35rem 1fr;
  gap: 0.4rem;
  width: 100%;
  min-height: 1.8rem;
  border-radius: 0.72rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: left;
}

.language-dropdown button.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
}

.flag-img {
  display: block;
  width: 1.35rem;
  height: 0.95rem;
  border-radius: 0.2rem;
  object-fit: cover;
}

.brand-block {
  position: relative;
  z-index: 1;
  margin-top: 4.55rem;
}

.hero-business-lockup {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.hero-business-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 4.75rem;
  height: 4.75rem;
  padding: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.18rem;
  background: rgba(255, 255, 255, 0.9);
  color: #141318;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-business-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.42);
}

.hero-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
}

.hero-action-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.42rem 0.78rem 0.42rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(12, 12, 16, 0.62);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  font-size: 0.78rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.28);
}

.brand-mark svg {
  display: block;
  width: 1.18rem;
  height: 1.18rem;
}

.hero-action-card.instagram {
  color: #ffffff;
  border-color: rgba(255, 118, 180, 0.36);
  background: linear-gradient(135deg, rgba(67, 55, 166, 0.45), rgba(255, 48, 108, 0.22), rgba(255, 186, 80, 0.16));
}

.instagram-mark {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 20%, transparent 42%),
    radial-gradient(circle at 85% 12%, #4f5bd5 0 16%, transparent 34%),
    linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.instagram-mark svg {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.hero-action-card.google {
  color: #ffffff;
  border-color: rgba(255, 218, 111, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 196, 71, 0.14));
}

.google-mark {
  grid-template-columns: 1fr;
  background: #ffffff;
}

.google-g {
  color: #4285f4;
  font-size: 1.03rem;
  font-weight: 950;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}

.google-mark svg {
  position: absolute;
  right: 0.12rem;
  bottom: 0.08rem;
  width: 0.68rem;
  height: 0.68rem;
  fill: #fbbc04;
  stroke: #fbbc04;
}

.eyebrow,
.section-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.28rem, 11vw, 4.55rem);
  line-height: 0.9;
}

.brand-block p:last-child {
  max-width: 18rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 650;
}

.deal-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.35rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  background: rgba(20, 20, 26, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.deal-strip span {
  display: block;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deal-strip strong {
  display: block;
  margin-top: 0.17rem;
  font-size: 0.96rem;
}

.deal-strip button {
  flex: 0 0 auto;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.84rem;
  font-weight: 850;
}

.sticky-controls {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0 -1rem;
  padding: 0.92rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(35, 18, 21, 0.96), rgba(14, 13, 18, 0.94)),
    rgba(11, 11, 15, 0.9);
  border-bottom: 1px solid rgba(255, 90, 79, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.category-row {
  display: flex;
  gap: 0.72rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 90, 79, 0.24);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 90, 79, 0.08));
  color: rgba(255, 245, 242, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.18);
  font-weight: 890;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.category-chip {
  padding: 0.86rem 1.12rem;
  font-size: 0.95rem;
}

.category-chip:active,
.product-card:active {
  transform: scale(0.97);
}

.category-chip.active {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(255, 90, 79, 0.34);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 0.8rem;
}

.section-heading h2 {
  margin-top: 0.18rem;
  font-size: 1.55rem;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  gap: 0.82rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(8.2rem, 9rem) minmax(0, 1fr);
  gap: 0.78rem;
  min-height: 9.35rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #17171d, #111116);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card.is-compact {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding: 0.8rem 0.9rem;
}

.product-card.is-drink {
  grid-template-columns: 3.15rem minmax(0, 1fr);
  align-items: center;
  min-height: 4.2rem;
  padding: 0.48rem 0.65rem;
  gap: 0.72rem;
}

.drink-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.82rem;
  background: radial-gradient(circle at 45% 20%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.drink-icon img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.product-card.is-compact .product-info {
  padding: 0;
}

.product-card.is-compact .product-info p {
  margin-bottom: 0.45rem;
  -webkit-line-clamp: 1;
}

.product-card.is-compact.no-image .product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}

.product-card.is-compact.no-image .product-info > div:first-child {
  min-width: 0;
}

.product-card.is-compact.no-image .product-info h3,
.product-card.is-compact.no-image .product-info p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card.is-compact.no-image .product-info p {
  display: block;
  margin: 0.12rem 0 0;
}

.product-card.is-compact.no-image .card-footer {
  justify-content: flex-end;
}

.product-card.is-drink .product-info {
  padding: 0;
}

.product-card.is-drink .product-info h3 {
  font-size: 0.96rem;
}

.product-card.is-drink .product-info p {
  margin: 0.18rem 0 0.35rem;
  font-size: 0.76rem;
  -webkit-line-clamp: 1;
}

.product-card.is-drink .price {
  padding: 0.2rem 0.46rem;
  font-size: 0.86rem;
}

.product-card.is-drink.no-image {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding: 0.58rem 0.72rem;
}

.product-card.is-drink.no-image .product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}

.product-card.is-drink.no-image .product-info > div:first-child {
  min-width: 0;
}

.product-card.is-drink.no-image .product-info h3,
.product-card.is-drink.no-image .product-info p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card.is-drink.no-image .product-info p {
  display: block;
  margin: 0.12rem 0 0;
}

.product-card.is-drink.no-image .card-footer {
  justify-content: flex-end;
}

.product-card:hover {
  border-color: rgba(255, 90, 79, 0.35);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.86rem;
  background: #24232a;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 8.25rem;
  display: block;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 0.42rem;
  top: 0.42rem;
  max-width: calc(100% - 0.84rem);
  padding: 0.27rem 0.43rem;
  border-radius: 999px;
  background: rgba(11, 11, 15, 0.78);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.inline-badge {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.22rem 0.46rem;
  border-radius: 999px;
  background: rgba(255, 90, 79, 0.14);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
}

.product-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.1rem 0.15rem 0.12rem 0;
}

.product-info h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.2;
}

.product-info p {
  display: -webkit-box;
  margin: 0.28rem 0 0.5rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
}

.price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.24rem 0.52rem;
  border: 1px solid rgba(243, 185, 95, 0.3);
  border-radius: 999px;
  background: rgba(243, 185, 95, 0.1);
  color: #f7c76c;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 2.5rem 1rem;
  color: var(--muted);
  text-align: center;
}

.menu-footer {
  display: grid;
  width: min(100%, 760px);
  margin: -4rem auto 0;
  padding: 0 1rem 2rem;
  place-items: center;
  gap: 0.45rem;
  color: rgba(247, 242, 239, 0.58);
  text-align: center;
}

.powered-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.powered-brand img {
  display: block;
  width: 5.6rem;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.menu-footer a {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.menu-footer a:hover {
  color: var(--gold);
}

.menu-utility-bar {
  position: fixed;
  right: 50%;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.38rem;
  width: min(calc(100% - 1.5rem), 27rem);
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.35rem;
  background: rgba(13, 13, 17, 0.88);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
  transform: translateX(50%);
  backdrop-filter: blur(24px);
}

.menu-utility-bar button {
  display: grid;
  min-width: 0;
  min-height: 3.15rem;
  place-items: center;
  gap: 0.18rem;
  border-radius: 1rem;
  background: transparent;
  color: rgba(247, 242, 239, 0.68);
  font-size: 0.66rem;
  font-weight: 850;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-utility-bar button:hover,
.menu-utility-bar button.is-active {
  background: rgba(255, 90, 79, 0.15);
  color: var(--text);
}

.menu-utility-bar button:active {
  transform: scale(0.96);
}

.menu-utility-bar svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.utility-scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(3px);
}

.utility-sheet {
  position: fixed;
  right: 50%;
  bottom: calc(max(0.85rem, env(safe-area-inset-bottom)) + 4.65rem);
  z-index: 50;
  display: grid;
  gap: 0.82rem;
  width: min(calc(100% - 1.5rem), 27rem);
  max-height: min(72vh, 32rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  background: rgba(17, 17, 22, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  transform: translateX(50%);
  backdrop-filter: blur(24px);
}

.utility-sheet[hidden],
.utility-scrim[hidden],
.menu-utility-bar button[hidden] {
  display: none;
}

.utility-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
}

.utility-sheet h2 {
  margin: 0;
  padding-right: 2.35rem;
  font-size: 1.15rem;
}

.profile-mini-head {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding-right: 2.25rem;
}

.profile-mini-logo {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111116;
  font-weight: 950;
}

.profile-mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.25);
}

.profile-mini-head h2,
.profile-mini-head p {
  margin: 0;
}

.profile-mini-head p {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.profile-link-list {
  display: grid;
  gap: 0.48rem;
}

.profile-link-list a,
.profile-link-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 2.75rem;
  padding: 0.7rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 242, 239, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.utility-language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.utility-language-grid button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.86rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 242, 239, 0.72);
  font-weight: 900;
}

.utility-language-grid button.is-active {
  border-color: rgba(255, 90, 79, 0.62);
  background: rgba(255, 90, 79, 0.18);
  color: var(--text);
}

.menu-search-input {
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 0.92rem;
  outline: 0;
  padding: 0 0.88rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.search-results {
  display: grid;
  gap: 0.5rem;
}

.search-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
}

.search-result h3,
.search-result p {
  margin: 0;
}

.search-result h3 {
  font-size: 0.92rem;
}

.search-result p {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.32;
}

.wifi-password {
  margin: 0;
  padding: 0.85rem;
  border: 1px dashed rgba(243, 185, 95, 0.42);
  border-radius: 0.92rem;
  background: rgba(243, 185, 95, 0.09);
  color: #f7c76c;
  font-size: 1.06rem;
  font-weight: 950;
  text-align: center;
  overflow-wrap: anywhere;
}

.copy-wifi {
  min-height: 2.85rem;
  border-radius: 0.92rem;
  background: var(--accent);
  color: white;
  font-weight: 900;
}

@media (min-width: 680px) {
  .app-shell {
    padding-inline: 1.35rem;
  }

  .hero,
  .sticky-controls {
    margin-inline: -1.35rem;
    padding-inline: 1.35rem;
  }

  .hero {
    min-height: 21rem;
    border-radius: 0 0 1.65rem 1.65rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
