.menu-hero{
  position:relative;
  overflow:hidden;
  padding:0;
  min-height:420px;
}

.menu-hero-image{
  min-height:420px;
  border:none;
  border-radius:inherit;
}

.menu-hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:20px;
  text-align:center;
  background:linear-gradient(180deg, rgba(34,25,20,.10) 0%, rgba(34,25,20,.08) 18%, rgba(239,231,214,.12) 44%, rgba(239,231,214,.24) 100%);
}

.menu-lang{
  align-self:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(239,231,214,.92);
  border:1px solid rgba(74,58,49,.16);
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}

.menu-logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 20px;
  border-radius:999px;
  background:rgba(239,231,214,.62);
  border:1px solid rgba(74,58,49,.10);
  box-shadow:var(--shadow);
  backdrop-filter:blur(6px);
  margin:auto 0 34px;
}

.menu-logo-image{
  display:block;
  width:min(340px, 54vw);
  max-width:100%;
  height:auto;
}

.section-tools{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(10px);
  background:rgba(221,215,203,.92);
  padding:16px;
  margin:12px 0 10px;
}

.section-tools-head{
  margin-bottom:12px;
}

.section-tools-head h1{
  margin:0;
  font-size:clamp(34px,5vw,60px);
  line-height:.96;
}

.filters{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:4px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.filters::-webkit-scrollbar{
  display:none;
}

.filters .chip{
  flex:0 0 auto;
  white-space:nowrap;
}

@media (max-width:900px){
  .filters{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:8px;
    flex-wrap:initial;
    overflow:visible;
    padding-bottom:0;
  }

  .filters .chip{
    width:100%;
    min-width:0;
    white-space:normal;
    text-align:center;
  }
}

.sections{
  display:grid;
  gap:16px;
}

.section{
  padding:16px;
}

.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.section-header h2{
  font-size:clamp(26px,3vw,36px);
  line-height:1;
}

.section-subtitle{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}

.items{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.item{
  background:var(--card-2);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  display:grid;
  gap:12px;
}

.item-photo{
  min-height:220px;
  border-radius:16px;
}

.item-top{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:start;
}

.item-name{
  margin:0;
  font-size:22px;
  line-height:1.05;
}

.item-price{
  font-size:24px;
  font-weight:700;
  white-space:nowrap;
}

.item-desc{
  margin:0;
  color:var(--muted);
  line-height:1.48;
  font-size:14px;
}

.item-note{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:#8a7666;
  border-top:1px dashed rgba(74,58,49,.14);
  padding-top:10px;
}

.item-meta-pill{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(74,58,49,.06);
}

.item-meta-pill strong{
  color:#6f5b4b;
}

.item-meta-pill.sold-out{
  background:rgba(162,70,59,.12);
  color:#8d3e35;
}

.item-meta-text{
  width:100%;
  line-height:1.45;
}

.badges{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-top:8px;
}

.badge{
  font-size:11px;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.04em;
  padding:5px 8px;
  border-radius:999px;
}

.badge.hit{
  background:rgba(169,122,168,.18);
  color:#7c517c;
}

.badge.new{
  background:rgba(200,138,61,.16);
  color:#8f5d22;
}

.badge.time{
  background:rgba(74,58,49,.08);
  color:#6f5b4b;
}

.coffee-addons{
  margin-top:16px;
  padding-top:14px;
  border-top:1px dashed rgba(74,58,49,.16);
}

.coffee-addons-label{
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.coffee-addons-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.coffee-addon-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(74,58,49,.06);
  border:1px solid var(--line);
}

.coffee-addon-pill strong{
  color:var(--accent-2);
}

@media (max-width:720px){
  .section{
    padding:14px;
  }

  .items{
    grid-template-columns:1fr;
  }

  .menu-hero,
  .menu-hero-image{
    min-height:320px;
  }

  .menu-hero-overlay{
    padding:14px;
  }

  .menu-lang{
    padding:7px 10px;
    font-size:13px;
  }

  .menu-logo-link{
    padding:10px 12px;
    margin:auto 0 20px;
  }

  .menu-logo-image{
    width:min(220px, 62vw);
  }

  .section-tools{
    padding:12px;
  }

  .filters{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .section-tools-head h1{
    font-size:40px;
  }

  .item-name{
    font-size:20px;
  }

  .item-price{
    font-size:22px;
  }

  .item-photo{
    min-height:190px;
  }
}
