body {
    background: #241609;
    background-image:
      radial-gradient(circle at 15% 0%, rgba(212,162,83,0.08), transparent 40%),
      radial-gradient(circle at 90% 10%, rgba(212,162,83,0.06), transparent 35%),
      linear-gradient(180deg, #2a1a0d 0%, #201306 55%, #1c1006 100%);
    color: #f2e9dc;
    min-height: 100vh;
  }

  /* ---------- scroll progress bar (CSS-only, scroll-driven animation) ---------- */
  .menu1-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #d4a253, #f0cf8e, #d4a253);
    transform-origin: 0 50%;
    transform: scaleX(0);
    animation: grow-progress auto linear;
    animation-timeline: scroll(root);
    z-index: 2000;
  }
  @keyframes grow-progress { to { transform: scaleX(1); } }

  /* ---------- hero ---------- */
  .menu1-hero { padding-top: 72px; padding-bottom: 48px; }

  .menu1-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    color: #d4a253;
    letter-spacing: .35em;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .menu1-eyebrow::before, .menu1-eyebrow::after {
    content: "";
    width: 34px; height: 1px;
    background: linear-gradient(90deg, transparent, #d4a253);
  }
  .menu1-eyebrow::after { background: linear-gradient(90deg, #d4a253, transparent); }

  .menu1-hero h1 {
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: .01em;
    color: #fbf6ec;
    background: linear-gradient(100deg, #fff9ee 0%, #f2e6c9 25%, #d4a253 50%, #f2e6c9 75%, #fff9ee 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s linear infinite;
    margin-bottom: 18px;
  }
  @keyframes shine { to { background-position: -250% center; } }

  .menu1-hero p.menu1-subtitle {
    color: #c9b9a3;
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 auto 36px;
  }

  /* ---------- search bar (glassmorphism) ---------- */
  .menu1-search-wrap {
    max-width: 760px;
    margin: 0 auto 34px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 8px 8px 8px 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }
  .menu1-search-wrap i.bi-search { color: #8a7e6e; font-size: 1.1rem; }
  .menu1-search-wrap input {
    border: none; outline: none; flex: 1;
    background: transparent;
    font-size: 1rem;
    color: #3a2c1c;
    padding: 12px 0;
  }
  .menu1-search-wrap input::placeholder { color: #a89a86; }
  .menu1-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: #a89a86;
    font-size: 1.15rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
  }
  .menu1-search-clear:hover { color: #cf9748; transform: scale(1.1); }
  .menu1-search-clear.menu1-show { display: inline-flex; }
  .menu1-btn-search {
    background: linear-gradient(135deg, #e0b464, #cf9748);
    color: #2a1a0d;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .menu1-btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(207,151,72,0.45);
    color: #201306;
  }

  /* ---------- filter pills ---------- */
  .menu1-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 8px; }
  .menu1-filter-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
    color: #eee1d0;
    cursor: pointer;
    transition: all .25s ease;
  }
  .menu1-filter-pill:hover {
    border-color: #d4a253;
    background: rgba(212,162,83,0.12);
    transform: translateY(-2px);
  }
  .menu1-filter-pill.menu1-active {
    background: linear-gradient(135deg, #e0b464, #cf9748);
    color: #241608;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(207,151,72,0.4);
  }

  /* ---------- language switcher ---------- */
  .menu1-lang-switch {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }
  .menu1-lang-switch-label {
    color: #a8967c;
    font-size: .8rem;
    letter-spacing: .04em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .menu1-lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    color: #c9b9a3;
    cursor: pointer;
    transition: all .25s ease;
  }
  .menu1-lang-btn:hover {
    border-color: #7fae63;
    background: rgba(127,174,99,0.12);
  }
  .menu1-lang-btn.menu1-active {
    background: linear-gradient(135deg, #8fbf72, #5f9a48);
    color: #12210b;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(95,154,72,0.4);
  }

  /* ---------- scroll reveal (CSS-only, view() timeline) ---------- */
  .menu1-food-card {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
  @keyframes reveal-up {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .menu1-food-card { animation: none; }
  }

  /* ---------- food cards ---------- */
  .menu1-menu-section { padding-top: 10px; padding-bottom: 60px; }

  .menu1-food-card {
    background: linear-gradient(160deg, #3c2a19, #33230f);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding-right: 18px;
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  }
  .menu1-food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0,0,0,0.4);
    background: linear-gradient(160deg, #453220, #3a2812);
  }

  .menu1-thumb-wrap {
    position: relative;
    width: 126px;
    min-width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  }
  .menu1-thumb-wrap img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .menu1-food-card:hover .menu1-thumb-wrap img { transform: scale(1.14); }

  .menu1-cat-badge {
    position: absolute;
    top: -8px; left: -8px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #241608;
    border: 2px solid #4a3620;
    display: flex; align-items: center; justify-content: center;
    color: #d4a253;
    font-size: .8rem;
    z-index: 2;
  }

  .menu1-food-info { padding-top: 10px; }
  .menu1-food-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fbf6ec;
    margin-bottom: 0;
    line-height: 1.25;
  }
  .menu1-food-info p {
    font-size: .84rem;
    color: #b3a48f;
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .menu1-food-info p.menu1-lang-en {
    font-size: .84rem;
    color: #c9b9a3;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .menu1-food-info p.menu1-lang-extra {
    font-size: .78rem;
    color: #9c8f7c;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .menu1-food-info .menu1-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: #e3b768;
  }

  #no-results {
    color: #c9b9a3;
  }
  #no-results i { font-size: 2.2rem; color: #d4a253; }