:root{
    --bg: #16120e;
    --bg-alt: #1d1712;
    --surface: #241c15;
    --surface-2: #2c221a;
    --cream: #f6efe1;
    --cream-dim: #d8cbb6;
    --muted: #9c8f7c;
    --gold: #cda15e;
    --gold-bright: #e3bd7c;
    --line: #3a3025;
    --veg: #5f9a63;
    --veg-bg: rgba(95,154,99,0.14);
    --nonveg: #c1594a;
    --nonveg-bg: rgba(193,89,74,0.14);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background: var(--bg);
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    padding-bottom: 84px;
    -webkit-font-smoothing: antialiased;
  }
  img{max-width:100%; display:block;}

  a{color:inherit; text-decoration:none;}
  ::selection{ background: var(--gold); color:#1a1410; }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:
      radial-gradient(120% 90% at 50% -10%, rgba(205,161,94,0.16), transparent 55%),
      linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 34px 20px 26px;
    text-align:center;
    border-bottom: 1px solid var(--line);
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-60px; right:-60px;
    width:220px; height:220px;
    border:1px solid rgba(205,161,94,0.25);
    border-radius:50%;
  }
  .hero::after{
    content:"";
    position:absolute;
    top:-30px; right:-30px;
    width:160px; height:160px;
    border:1px solid rgba(205,161,94,0.18);
    border-radius:50%;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:11px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color: var(--gold);
    font-weight:700;
    margin-bottom:14px;
  }
  .eyebrow::before,.eyebrow::after{
    content:"";
    width:18px; height:1px;
    background: var(--gold);
    opacity:.7;
  }
  .brand-name{
    font-family:'Fraunces', serif;
    font-optical-sizing:auto;
    font-weight:600;
    font-size: clamp(28px, 7.5vw, 42px);
    line-height:1.1;
    letter-spacing:.01em;
    color: var(--cream);
    margin-bottom:6px;
  }
  .brand-name .accent{ color: var(--gold-bright); font-style:italic; font-weight:600;}
  .tagline{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:16px;
    color: var(--gold-bright);
    margin-bottom:10px;
    letter-spacing:.02em;
  }
  .highlights{
    font-size:12.5px;
    color: var(--muted);
    letter-spacing:.03em;
    margin-bottom:22px;
  }
  .highlights span{ color: var(--cream-dim); }
  .dot{ margin:0 6px; color: var(--gold); }

  .hero-actions{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:14px;
  }
  .hbtn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:11px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.02em;
    border:1px solid var(--line);
    background: var(--surface);
    color: var(--cream);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
  }
  .hbtn svg{width:15px; height:15px; flex:none;}
  .hbtn.primary{
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color:#20180f;
    border-color: transparent;
  }
  .hbtn.whatsapp{
    background: rgba(95,154,99,0.14);
    border-color: rgba(95,154,99,0.4);
    color: #9fd39f;
  }
  .hbtn:active{ transform: scale(.97); }

  .address-line{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:6px;
    font-size:12px;
    color: var(--muted);
    max-width:340px;
    margin:0 auto;
    line-height:1.5;
  }
  .address-line svg{ width:14px; height:14px; flex:none; margin-top:2px; color: var(--gold); }

  /* ---------- CONTROLS (search + filter) ---------- */
  .controls{
    position:sticky;
    top:0;
    z-index:30;
    background: rgba(22,18,14,0.92);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
    padding:12px 16px 10px;
  }
  .search-row{
    display:flex;
    gap:8px;
    margin-bottom:10px;
  }
  .search-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:8px;
    background: var(--surface);
    border:1px solid var(--line);
    border-radius:11px;
    padding:10px 12px;
  }
  .search-box svg{ width:16px; height:16px; color: var(--muted); flex:none; }
  .search-box input{
    flex:1;
    background:transparent;
    border:none;
    outline:none;
    color: var(--cream);
    font-family:'Manrope',sans-serif;
    font-size:14px;
  }
  .search-box input::placeholder{ color: var(--muted); }
  .clear-btn{
    display:none;
    color: var(--muted);
    font-size:16px;
    padding:0 4px;
    line-height:1;
  }
  .clear-btn.show{ display:block; }

  .filter-row{
    display:flex;
    gap:8px;
  }
  .filter-chip{
    flex:1;
    text-align:center;
    padding:8px 6px;
    border-radius:9px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.03em;
    border:1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
  }
  .filter-chip .swatch{ width:8px; height:8px; border-radius:50%; }
  .filter-chip[data-filter="veg"] .swatch{ background: var(--veg); }
  .filter-chip[data-filter="nonveg"] .swatch{ background: var(--nonveg); }
  .filter-chip[data-filter="all"] .swatch{ background: var(--gold); }
  .filter-chip.active{
    background: var(--surface-2);
    color: var(--cream);
    border-color: var(--gold);
  }

  .cat-nav{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding:10px 16px 4px;
    scrollbar-width:none;
  }
  .cat-nav::-webkit-scrollbar{ display:none; }
  .cat-chip{
    flex:none;
    padding:8px 14px;
    font-size:12.5px;
    font-weight:600;
    border-radius:999px;
    background: var(--surface);
    border:1px solid var(--line);
    color: var(--cream-dim);
    white-space:nowrap;
  }
  .cat-chip.active{
    background: var(--gold);
    color:#20180f;
    border-color: var(--gold);
    font-weight:700;
  }

  /* ---------- MENU ---------- */
  main{ max-width:640px; margin:0 auto; padding: 6px 16px 20px; }

  .category-section{ padding-top:22px; scroll-margin-top:190px; }
  .category-header{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    margin-bottom:12px;
    padding-bottom:8px;
    border-bottom:1px solid var(--line);
  }
  .category-title{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:19px;
    color: var(--gold-bright);
    display:flex;
    align-items:center;
    gap:8px;
  }
  .cat-tag{
    width:10px; height:10px;
    border-radius:3px;
    display:inline-block;
  }
  .cat-tag.veg{ background: var(--veg); }
  .cat-tag.nonveg{ background: var(--nonveg); }
  .category-count{ font-size:11px; color: var(--muted); font-weight:600; }

  .item-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:12px 4px;
    border-bottom:1px dashed var(--line);
  }
  .item-row:last-child{ border-bottom:none; }
  .item-left{ display:flex; align-items:center; gap:10px; min-width:0; }
  .item-mark{
    flex:none;
    width:13px; height:13px;
    border-radius:3px;
    border:1.5px solid var(--veg);
    display:flex; align-items:center; justify-content:center;
  }
  .item-mark::after{ content:""; width:6px; height:6px; border-radius:50%; background: var(--veg); }
  .item-mark.nonveg{ border-color: var(--nonveg); }
  .item-mark.nonveg::after{ background: var(--nonveg); border-radius:0; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); width:7px; height:7px;}
  .item-name{
    font-size:14.5px;
    font-weight:600;
    color: var(--cream);
    line-height:1.35;
  }
  .item-price{
    flex:none;
    font-family:'Manrope', sans-serif;
    font-weight:800;
    font-size:14.5px;
    color: var(--gold-bright);
    white-space:nowrap;
  }
  .item-price .sep{ color: var(--muted); font-weight:500; margin:0 2px; font-size:12px;}

  .no-results{
    text-align:center;
    padding: 60px 20px;
    color: var(--muted);
    font-size:14px;
  }
  .no-results .big{
    font-family:'Fraunces', serif;
    font-size:20px;
    color: var(--cream-dim);
    margin-bottom:6px;
    display:block;
  }

  /* ---------- FOOTER ---------- */
  footer{
    text-align:center;
    padding: 34px 20px 30px;
    border-top:1px solid var(--line);
    background: var(--bg-alt);
  }
  footer .f-name{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:19px;
    color: var(--gold-bright);
    margin-bottom:4px;
  }
  footer .f-tag{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:13px;
    color: var(--muted);
    margin-bottom:12px;
  }
  footer .f-line{
    font-size:12.5px;
    color: var(--cream-dim);
    margin-bottom:6px;
  }
  footer .f-small{
    font-size:11px;
    color: var(--muted);
    margin-top:10px;
    letter-spacing:.02em;
  }

  /* ---------- BOTTOM BAR ---------- */
  .bottom-bar{
    position:fixed;
    bottom:0; left:0; right:0;
    z-index:40;
    display:flex;
    background: var(--surface);
    border-top:1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
  }
  .bar-btn{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    padding:10px 6px 12px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.02em;
    color: var(--cream-dim);
    border-right:1px solid var(--line);
  }
  .bar-btn:last-child{ border-right:none; }
  .bar-btn svg{ width:19px; height:19px; }
  .bar-btn.call{ color: var(--gold-bright); }
  .bar-btn.whatsapp{ color: #9fd39f; }

  @media (min-width:640px){
    .hero{padding:48px 20px 34px;}
    .hbtn{padding:12px 20px; font-size:14px;}
    main{padding-top:10px;}
  }
