:root {

  --bg0: #070b14;
  --bg1: #0b1220;
  --bg-main: #070b14;
  --bg-card: #111827;
  --bg-soft: #151a22;


  --text: #e7e9ee;
  --text-main: #e5e7eb;
  --muted: rgba(231,233,238,.70);
  --text-muted: #9ca3af;


  --border: rgba(255,255,255,.10);
  --border-soft: rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);


  --accent: #4caf50;
  --accent2: #d4a017;
  --brand-green: #4caf50;
  --brand-gold: #d4a017;


  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
html{height:100%}
body{min-height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
  radial-gradient(900px 600px at 20% -10%, rgba(63,174,79,.12), transparent 60%),
  radial-gradient(800px 600px at 90% 0%, rgba(214,178,76,.08), transparent 65%),
  linear-gradient(180deg, var(--bg0), var(--bg1));

}

a{color:inherit;text-decoration:none}
button{font:inherit}

.container{max-width:980px;margin:0 auto;padding:16px 14px 48px}

.topbar{
  position:sticky; top:0; z-index:30;
  padding:12px 14px;
  display:flex; justify-content:space-between; align-items:center;
  background: rgba(7,11,20,.55);
  border-bottom:none;
  backdrop-filter: blur(14px);
}

.brand{display:flex;align-items:center;gap:12px;min-width:0}

.logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(96,165,250,.18));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  font-size:20px;
  overflow:hidden;
}
.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
.logo span{font-weight:900}

.name{
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.meta{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.actions{display:flex;gap:8px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{background: rgba(255,255,255,.12)}
.btn:active{transform: translateY(1px)}
.btn.ghost{background:transparent}
.btn.primary{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.16);
}

.iconBtn{width:44px;height:44px;padding:0}
.iconBtn svg{width:20px;height:20px;display:block}


.hero{padding:14px 0 10px}
.hero h1{
  margin:8px 0 6px;
  font-size:28px;
  letter-spacing:-.3px;
}
.sub{margin:0 0 14px;color:var(--muted);line-height:1.45}


.searchRow{display:flex;gap:10px;align-items:center;margin:10px 0 12px}
.search{position:relative; flex:1;}
.search input{
  width:100%;
  padding:13px 14px 13px 42px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
  box-shadow: 0 0 0 0 rgba(96,165,250,0);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.search input:focus{
  border-color: rgba(96,165,250,.35);
  box-shadow: 0 0 0 6px rgba(96,165,250,.12);
}
.search input::placeholder{color: rgba(231,233,238,.55)}
.searchIcon{
  position:absolute; left:14px; top:50%;
  transform: translateY(-50%);
  opacity:.7;
}


.chips{
  position:sticky; top:70px; z-index:20;
  display:flex; gap:8px; flex-wrap:wrap;
  padding:10px 0 10px;
  background: transparent;
  backdrop-filter: none;
}

.chip{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  font-size:13px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.chip:hover{background: rgba(255,255,255,.10)}
.chip:active{transform: translateY(1px)}
.chip.active,
.chip.active:hover,
.chip.active:active,
.chip.active:focus{
  background: var(--brand-green);
  color: #0b0e11;
  border-color: transparent;
}

.chipCount{font-size:12px;opacity:.7;font-weight:900}


.menuRoot{display:grid;gap:14px;padding-top:8px}

.section{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.sectionHeader{
  padding:14px 14px 10px;
  cursor:pointer;
  user-select:none;
  transition: background .12s ease;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
}
.sectionHeader:hover{background: rgba(255,255,255,.03)}

.sectionHeaderRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.sectionTitle{margin:0;font-size:18px;font-weight:900;letter-spacing:-.2px}
.sectionDesc{margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.35}

.chev{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .18s ease, background .15s ease, border-color .15s ease;
}
.chev:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.chevIcon{width:18px;height:18px;opacity:.9}
.section.collapsed .chev{transform: rotate(-90deg);}
.section:not(.collapsed) .chevIcon {
  color: var(--brand-green);
}

.items{padding:0 10px 10px}
.section.collapsed .items{display:none;}

.item{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px;
  padding:12px 10px;
  border-top:1px solid var(--border);
  cursor:pointer;
  transition: background .12s ease;
}
.item.hasThumb{
  grid-template-columns: 52px 1fr auto;
  align-items:start;
}

.itemThumb{
  width:52px;
  height:52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display:block;
}

.itemContent{min-width:0}
.item:first-child{border-top:none}
.item:hover{background: rgba(255,255,255,.04)}

.itemName{margin:0;font-weight:900;letter-spacing:-.1px}
.itemDesc{margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.35}

.itemMeta{
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:4px;
}
.itemWeight{
  font-size:12px;
  font-weight:700;
  color: var(--muted);
  padding:2px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  white-space:nowrap;
}

.price{
  align-self: flex-start;
  white-space: nowrap;

  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;

  color: var(--brand-gold);

  padding: 6px 10px;
  border-radius: 10px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.badges{display:flex;flex-wrap:wrap;gap:6px;margin-top:9px}
.badge{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.badge.vegan{border-color: rgba(34,197,94,.35)}
.badge.spicy{border-color: rgba(251,113,133,.35)}
.badge.new{border-color: rgba(96,165,250,.35)}
.badge.allergen{border-color: rgba(251,191,36,.35)}


.footer{margin-top:18px;padding-top:14px;border-top:1px solid var(--border)}
.fineprint{color:var(--muted);font-size:12px;line-height:1.45}
.footer{
  text-align: center;
}

.footer .fineprint{
  text-align: center;
}


.modalBackdrop{
  position:fixed; inset:0; z-index:60;
  background: rgba(0,0,0,.55);
  display:none;
}
.modal{
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  transform: translateY(110%);
  transition: transform .18s ease;
  padding: 12px 14px 18px;
}
.modalCard{
  max-width:980px;
  margin:0 auto;
  border-radius:24px;
  border:1px solid var(--border);
  background: rgba(12,18,32,.90);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modalHandle{
  width:48px;height:5px;border-radius:999px;
  margin:10px auto 0;
  background: rgba(255,255,255,.18);
}
.modalBody{padding:14px 14px 16px}


.modalMedia{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.modalMedia[hidden]{ display: none; }

.modalImg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .18s ease;
}
.modalImg.isLoaded{ opacity: 1; }

.modalImgSkeleton{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.12) 35%,
    rgba(255,255,255,.06) 70%
  );
  background-size: 240% 100%;
  animation: shimmer 1.1s infinite linear;
}
.modalImgSkeleton.hidden{ display: none; }

.modalImgFallback{
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.modalMedia.isError .modalImgFallback{ display: grid; }
.modalMedia.isError .modalImgSkeleton{ display: none; }
.modalMedia.isError .modalImg{ display: none; }

@keyframes shimmer{
  0%{ background-position: 100% 0; }
  100%{ background-position: -140% 0; }
}
.modalTitle{margin:8px 0 4px;font-size:18px;font-weight:950;letter-spacing:-.2px}
.modalDesc{margin:0;color:var(--muted);line-height:1.45}
.modalRow{
  display:flex;justify-content:space-between;align-items:center;
  gap:10px;margin-top:12px;
}
.modalPrice{
  font-weight:950;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.08);
}
.modalClose{width:100%}
.showBackdrop{display:block}
.showSheet{transform: translateY(0)}


.lang{position:relative;}
.langBtn{font-weight:900; letter-spacing:.3px;}
.langMenu{
  position:absolute; right:0; top:52px;
  display:none;
  border:1px solid var(--border);
  background: rgba(12,18,32,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius:14px;
  overflow:hidden;
  box-shadow: var(--shadow);
  min-width:86px;
  z-index:80;
}
.langMenu button{
  width:100%;
  text-align:center;
  padding:10px 12px;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font-weight:800;
}
.langMenu button:hover{ background: rgba(255,255,255,.07); }
.langMenu.show{ display:block; }


*{-webkit-tap-highlight-color:transparent;}
button,a{touch-action:manipulation;}

@media (max-width: 520px){


  .actions{
    display:grid;
    grid-template-columns: repeat(2, 44px);
    gap: 8px;
    justify-content: end;
    align-content: center;
  }


  .lang{
    position: relative;
    width: 44px;
    height: 44px;
  }


  .lang .btn{
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }


  .langMenu{
    top: 48px;
    right: 0;
  }
}


@media (max-width: 520px){
  .topbar{ padding:10px 12px; }
  .logo{ width:46px; height:46px; border-radius:14px; }
  .name{ font-size:14px; }
  .meta{ font-size:11px; }


  .item.hasThumb{ grid-template-columns: 46px 1fr auto; }
  .itemThumb{ width:46px; height:46px; border-radius: 11px; }
}

@media (max-width: 520px){
  #clearBtn{
    padding:10px 12px;
    border-radius:14px;
    min-width:44px;
  }
}
@media (max-width: 520px){
  .chipCount{ display:none; }
}

@media (max-width: 520px){
  .chip{ border-radius:12px; padding:10px 12px; }
}

@media (max-width: 520px){
  .chips{ padding-top: 6px; }
}

html, body {
  background-color: #070b14;
}

body{
  overscroll-behavior: none;
}


html, body{
  background: #070b14;
}


.topbar{
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
}


.container{
  padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
}


@media (max-width: 520px){


  .container{
    padding-top: 12px;
    padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
  }


  .hero{
    padding: 10px 0 8px;
  }
  .hero h1{
    margin: 6px 0 4px;
    font-size: 22px;
  }
  .sub{
    margin: 0 0 10px;
    font-size: 13px;
  }


  .searchRow{
    margin: 8px 0 10px;
    gap: 8px;
  }


  .chips{
    padding: 8px 0 8px;
    gap: 8px;
  }
  .chip{
    padding: 9px 11px;
    border-radius: 12px;
  }


  .menuRoot{ gap: 12px; }

  .sectionHeader{
    padding: 12px 12px 10px;
  }
}

@media (max-width: 520px){
  #clearBtn{
    padding: 10px 12px;
    font-weight: 800;
    opacity: .9;
  }
}
@media (max-width: 520px){
  .chipCount{ display:none; }
}
@media (max-width: 520px){
  .chip{
    padding: 8px 10px;
    font-size: 12.5px;
  }
}
@media (max-width: 520px){
  .chips{ gap: 6px; }
}


#menuTitle,
#menuSubtitle{
  text-align: center;
}

.price{
  color: var(--brand-gold);
}

body{
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(76,175,80,.12), transparent 60%),
    radial-gradient(800px 600px at 90% 0%, rgba(212,160,23,.08), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}
.hero {
  text-align: center;
}

.hero h1 {
  margin-bottom: 6px;
}

.hero .sub {
  color: var(--text-muted);
}
.footer {
  text-align: center;
}

@media (max-width: 640px) {
  .section {
    margin-bottom: 12px;
  }

  .item {
    padding: 12px 14px;
  }

  .items {
    gap: 6px;
  }
}

.catSvg{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: .95;
}

.chip{
  gap: 8px;
}

.sectionTitle{
  display:flex;
  align-items:center;
  gap: 10px;
}

.item{
  position: relative;
}

.item::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.05);
}
@media (hover: hover){
  .item:hover .price{
    color: #f1c85a;
  }
}
@media (max-width: 520px){
  .price{
    font-size: 13.5px;
  }
}

@media (max-width: 520px){
  .price{
    font-size: 13.5px;
    padding: 5px 9px;
    border-radius: 9px;
  }
}

.item:hover .price{
  background: rgba(255,255,255,.08);
}

.footerSocial{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.socialIcon{
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.75);
  transition: color .15s ease, transform .15s ease;
}

@media (hover: hover) and (pointer: fine){
  .socialIcon:hover{
    color: var(--brand-green);
    transform: translateY(-1px);
  }
}
.footerCTA{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.ctaBtn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 14px;

  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.45);

  color: #eafff3;
  font-weight: 700;
  font-size: 14px;
  text-align: center;

  transition: background .15s ease, transform .12s ease;
}

@media (hover: hover) and (pointer: fine){
  .ctaBtn:hover{
    background: rgba(34,197,94,.26);
    transform: translateY(-1px);
  }
}

@media (max-width: 520px){
  .logo{
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .logo span{
    font-size: 26px;
  }

  .logo img{
    display: block;
  }
}

.madeBy{
  font-size: 13px;
  opacity: .58;
  margin-top: 10px;
}

.madeBy a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}

@media (hover:hover){
  .madeBy a:hover{
    border-bottom-color: rgba(255,255,255,.32);
    opacity: .9;
  }
}


body.loading{ overflow:hidden; }


.app-loader{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(1200px 900px at 50% 10%, rgba(255,255,255,.10), rgba(0,0,0,0) 55%),
    radial-gradient(900px 700px at 20% 80%, rgba(255,255,255,.08), rgba(0,0,0,0) 60%),
    #070707;
  opacity:1;
  visibility:visible;
  transition:opacity .22s ease, visibility .22s ease;
}

.app-loader.hide{ opacity:0; visibility:hidden; pointer-events:none; }

.loader-card{
  width:min(420px, calc(100% - 42px));
  padding:22px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(16,16,16,.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.loader-logo{
  width:92px;
  height:92px;
  object-fit:contain;
  border-radius:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}

.loader-title{
  font-size:18px;
  color:#fff;
  letter-spacing:.4px;
  font-weight:700;
}

.loader-text{
  font-size:15px;
  color:rgba(255,255,255,.82);
  line-height:1.35;
}

.loader-sub{
  font-size:13px;
  color:rgba(255,255,255,.60);
  margin-top:2px;
}

.lang-select{
  display:flex;
  flex-direction:column;
  gap:10px;
  width:min(260px, 100%);
  margin-top:6px;
}

.lang-select button{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:15px;
  cursor:pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}

.lang-select button:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22); transform: translateY(-1px); }
.lang-select button:active{ transform: translateY(0px) scale(.99); }
.lang-select button.selected{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.30); }

.loader-spinner{
  width:34px;
  height:34px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.16);
  border-top-color: rgba(255,255,255,.92);
  animation:spin .8s linear infinite;
  margin-top:6px;
}

.hidden{ display:none; }

@keyframes spin{ to{ transform:rotate(360deg); } }
