@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap");

:root{
  --bg:#111216;
  --card:#1d1f25;
  --blue:#13bbed;
  --orange:#ff9d12;
  --muted:#b9c2cc;
  --line:rgba(255,255,255,.12);
  --text:#fff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Montserrat",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(19,187,237,.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,157,18,.12), transparent 35%),
    var(--bg);
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(17,18,22,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.navbar{
  height:82px;
  max-width:1180px;
  margin:auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{height:58px;display:block}
.right-tools{display:flex;gap:10px;align-items:center}

.lang-btn{
  border:1px solid rgba(19,187,237,.35);
  background:rgba(255,255,255,.08);
  color:white;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}

.lang-btn.active{
  background:var(--blue);
  color:#071116;
}

.hero{
  min-height:72vh;
  display:grid;
  place-items:center;
  text-align:center;
  background:
    linear-gradient(135deg,rgba(0,0,0,.76),rgba(0,0,0,.50)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-content{padding:35px 20px;max-width:860px}
.hero-logo{width:min(420px,90vw);filter:drop-shadow(0 15px 25px rgba(0,0,0,.55))}
.subtitle{color:var(--orange);font-size:22px;font-weight:900;letter-spacing:3px;margin:8px 0}
.hero h1{font-size:clamp(40px,7vw,76px);margin:0 0 14px;text-shadow:0 5px 0 rgba(19,187,237,.35)}
.hero p{color:#eef7fb;line-height:1.7;font-size:18px}
.primary-btn{
  display:inline-flex;
  padding:14px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),#078db5);
  color:white;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 15px 30px rgba(19,187,237,.28);
}

.menu-shell{
  max-width:1180px;
  margin:auto;
  padding:70px 22px;
}

.section-head{text-align:center;margin-bottom:26px}
.section-head p{color:var(--orange);font-weight:900;letter-spacing:3px;margin:0 0 7px;text-transform:uppercase}
.section-head h2{font-size:clamp(34px,5vw,58px);margin:0;text-shadow:3px 3px 0 rgba(19,187,237,.5)}
.section-head span{display:block;color:var(--muted);margin-top:12px}

.search-box{max-width:720px;margin:0 auto 22px}
.search-box input{
  width:100%;
  padding:17px 20px;
  border-radius:18px;
  border:1px solid rgba(19,187,237,.45);
  background:#0e1015;
  color:white;
  font-size:16px;
  outline:none;
}

.breadcrumb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin:10px auto 22px;
}

.breadcrumb button{
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  color:white;
  border-radius:999px;
  padding:9px 14px;
  font-weight:800;
  cursor:pointer;
}

.breadcrumb span{color:var(--muted);font-weight:800}

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

.category-card{
  min-height:185px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  cursor:pointer;
  isolation:isolate;
  box-shadow:0 18px 38px rgba(0,0,0,.25);
  transform:translateY(0);
  transition:.22s ease;
  background:#222;
}

.category-card:hover{
  transform:translateY(-4px);
  border-color:rgba(19,187,237,.55);
}

.category-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--bg-image);
  background-size:cover;
  background-position:center;
  filter:blur(2.5px);
  transform:scale(1.08);
  opacity:.62;
  z-index:-2;
}

.category-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.78), rgba(0,0,0,.38)),
    radial-gradient(circle at top right, rgba(19,187,237,.27), transparent 45%);
  z-index:-1;
}

.card-content{
  height:100%;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.card-content small{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:8px;
}

.card-content h3{
  margin:0;
  font-size:clamp(23px,3vw,36px);
  line-height:1.05;
  text-shadow:2px 2px 0 rgba(19,187,237,.45);
}

.card-content p{
  color:#eaf6fb;
  margin:10px 0 0;
  font-weight:700;
  font-size:14px;
}

.menu-list{
  display:grid;
  gap:14px;
}

.back-btn{
  width:max-content;
  border:1px solid rgba(19,187,237,.4);
  background:rgba(19,187,237,.12);
  color:white;
  border-radius:999px;
  padding:10px 15px;
  font-weight:900;
  cursor:pointer;
  margin-bottom:8px;
}

.list-title{
  font-size:clamp(28px,5vw,50px);
  margin:0 0 8px;
  text-shadow:3px 3px 0 rgba(19,187,237,.45);
}

.subsection{
  background:linear-gradient(180deg,#1d1f25,#262932);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}

.subsection-title{
  width:100%;
  border:0;
  background:transparent;
  color:white;
  padding:21px 23px;
  font-size:clamp(22px,4vw,34px);
  text-align:left;
  font-weight:900;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-shadow:2px 2px 0 rgba(19,187,237,.45);
}

.subsection-title::after{content:"+";color:var(--orange);font-size:34px;text-shadow:none}
.subsection.open .subsection-title::after{content:"−"}

.subsection-content{display:none;padding:0 23px 22px}
.subsection.open .subsection-content{display:grid;gap:10px;animation:fade .22s ease}

.menu-item{
  display:grid;
  grid-template-columns:1fr 110px;
  gap:16px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px dashed rgba(255,255,255,.14);
}

.menu-item h3{font-size:18px;line-height:1.25;margin:0 0 4px;font-weight:900}
.menu-item p{color:var(--muted);font-size:13px;font-weight:600;margin:0;line-height:1.45}
.price{min-height:34px;border:2px solid var(--blue);background:white;border-radius:12px}

.note{
  color:#f4f6f8;
  background:rgba(19,187,237,.12);
  border:1px solid rgba(19,187,237,.25);
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  margin-top:8px;
}

.search-results-note{
  text-align:center;
  color:var(--muted);
  margin:12px 0 18px;
  font-weight:800;
}

footer{
  border-top:1px solid var(--line);
  text-align:center;
  padding:35px 20px;
  color:var(--muted);
}
footer img{height:70px;width:auto;margin-bottom:12px}

@keyframes fade{
  from{opacity:0;transform:translateY(-6px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:900px){
  .card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:760px){
  .navbar{height:72px;padding:0 14px}
  .brand img{height:45px}
  .lang-btn{padding:8px 10px;font-size:12px}
  .hero{min-height:68vh}
  .subtitle{font-size:17px}
  .card-grid{grid-template-columns:1fr;gap:14px}
  .category-card{min-height:150px;border-radius:22px}
  .card-content{padding:19px}
  .menu-item{grid-template-columns:1fr 86px;gap:10px}
  .menu-item h3{font-size:15.5px}
  .menu-item p{font-size:12px}
  .price{min-height:30px}
}

/* v3 additions */
.price{
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
  padding:0 8px;
}
.price-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}
.price-option{border:1px solid rgba(19,187,237,.55);background:rgba(255,255,255,.06);border-radius:14px;padding:8px;}
.price-label{color:var(--muted);font-size:11px;font-weight:800;margin-bottom:5px;}
.price-box{min-height:32px;border:2px solid var(--blue);background:#fff;color:#111;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:13px;}
.menu-item.has-options{grid-template-columns:1fr minmax(180px,310px);align-items:start;}
.note-with-icon{display:flex;align-items:center;gap:14px;}
.note-with-icon img{width:64px;height:64px;object-fit:contain;flex-shrink:0;}
.note-with-icon span{font-weight:900;font-size:20px;}
.back-row{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px;}
.back-row.bottom{margin-top:16px;margin-bottom:0;}
.back-btn.secondary{opacity:.92;}
@media(max-width:760px){
  .menu-shell{padding-top:24px;}
  .menu-item.has-options{grid-template-columns:1fr;}
  .price-options{grid-template-columns:repeat(2,minmax(0,1fr));}
  .note-with-icon img{width:50px;height:50px;}
  .note-with-icon span{font-size:17px;}
}

/* v4 additions */
.clear-search{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  color:white;
  font-size:20px;
  font-weight:900;
  cursor:pointer;
  display:none;
}
.search-box{position:relative;}
.search-box.has-value .clear-search{display:block;}
.search-box input{padding-right:52px;}
@media(max-width:760px){.menu-shell{padding-top:24px;}}


/* v5 fixes */
.price{
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
  padding:0 8px;
}

.price-options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
}

.price-option{
  border:1px solid rgba(19,187,237,.55);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  padding:8px;
}

.price-label{
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  margin-bottom:5px;
}

.price-box{
  min-height:32px;
  border:2px solid var(--blue);
  background:white;
  color:#111;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
}

.menu-item.has-options{
  grid-template-columns:1fr minmax(180px, 310px);
  align-items:start;
}

.back-row{
  display:flex;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 14px;
}

.back-row.bottom{
  margin-top:18px;
  margin-bottom:0;
}

.note-with-icon{
  display:flex;
  align-items:center;
  gap:14px;
}

.note-with-icon img{
  width:64px;
  height:64px;
  object-fit:contain;
  flex-shrink:0;
}

.note-with-icon span{
  font-weight:900;
  font-size:20px;
}

.search-box{
  position:relative;
}

.search-box input{
  padding-right:52px;
}

.clear-search{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  color:white;
  font-size:20px;
  font-weight:900;
  cursor:pointer;
  display:none;
}

.search-box.has-value .clear-search{
  display:block;
}

@media(max-width:760px){
  .menu-shell{
    padding-top:24px;
  }

  .menu-item.has-options{
    grid-template-columns:1fr;
  }

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

  .note-with-icon img{
    width:50px;
    height:50px;
  }

  .note-with-icon span{
    font-size:17px;
  }
}
