<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255, 190, 90, 0.22), transparent 34%),
        linear-gradient(135deg, #fff7ec 0%, #ffffff 45%, #fff2df 100%);
      color: #1f160f;
      min-height: 100vh;
    }

    .page {
      width: min(1100px, calc(100% - 28px));
      margin: 0 auto;
      padding: 24px 0 40px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(28, 17, 10, 0.92), rgba(104, 52, 18, 0.92)),
        url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1400&q=80") center/cover;
      color: white;
      box-shadow: 0 22px 60px rgba(70, 32, 10, 0.24);
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 52px;
    }

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

    .logo {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #ffb84d, #ff7a1a);
      color: #201006;
      font-weight: 900;
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
    }

    .brand small {
      display: block;
      color: rgba(255,255,255,0.72);
      margin-top: 3px;
    }

    .lang-switch {
      display: flex;
      gap: 8px;
      padding: 6px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(14px);
    }

    .lang-switch button {
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      padding: 10px 14px;
      color: white;
      background: transparent;
      font-weight: 800;
    }

    .lang-switch button.active {
      background: white;
      color: #2c1609;
    }

    .hero h1 {
      font-size: clamp(38px, 7vw, 76px);
      line-height: 0.95;
      max-width: 720px;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .hero p {
      max-width: 620px;
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255,255,255,0.82);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 900;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, #ffbd4a, #ff7a1a);
      color: #241006;
      box-shadow: 0 14px 30px rgba(255, 122, 26, 0.28);
    }

    .btn-light {
      background: rgba(255,255,255,0.13);
      color: white;
      border: 1px solid rgba(255,255,255,0.22);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: end;
      margin: 34px 0 18px;
    }

    .section-head h2 {
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1px;
    }

    .section-head p {
      color: #776454;
      margin-top: 6px;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card {
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(94, 50, 18, 0.1);
      border-radius: 26px;
      padding: 14px;
      box-shadow: 0 16px 40px rgba(80, 44, 16, 0.08);
    }

    .food-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .food-title {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
    }

    .food-title h3 {
      font-size: 19px;
    }

    .price {
      font-weight: 950;
      color: #c55b12;
      white-space: nowrap;
    }

    .desc {
      min-height: 46px;
      color: #786655;
      line-height: 1.45;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .add-btn {
      width: 100%;
      border: 0;
      cursor: pointer;
      border-radius: 16px;
      padding: 13px;
      font-weight: 900;
      color: #231107;
      background: #ffbd4a;
    }

    .order-panel {
      position: sticky;
      bottom: 16px;
      z-index: 10;
      margin-top: 28px;
      border-radius: 28px;
      padding: 16px;
      background: rgba(31, 22, 15, 0.92);
      color: white;
      box-shadow: 0 18px 60px rgba(20, 10, 4, 0.35);
      backdrop-filter: blur(16px);
    }

    .order-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-bottom: 12px;
    }

    .order-top h3 {
      font-size: 20px;
    }

    .table-input {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }

    .table-input input {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 16px;
      padding: 13px 14px;
      color: white;
      background: rgba(255,255,255,0.08);
      outline: none;
    }

    .table-input input::placeholder {
      color: rgba(255,255,255,0.54);
    }

    .cart-list {
      display: grid;
      gap: 8px;
      margin-bottom: 12px;
      max-height: 140px;
      overflow: auto;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 9px 10px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
    }

    .cart-item button {
      border: 0;
      background: rgba(255,255,255,0.14);
      color: white;
      cursor: pointer;
      border-radius: 999px;
      width: 28px;
      height: 28px;
    }

    .order-actions {
      display: flex;
      gap: 10px;
    }

    .send-whatsapp {
      flex: 1;
      background: #25d366;
      color: #04160b;
    }

    .clear-btn {
      background: rgba(255,255,255,0.12);
      color: white;
    }

    .empty {
      color: rgba(255,255,255,0.58);
      font-size: 14px;
      padding: 6px 2px;
    }

    .footer {
      text-align: center;
      color: #8a7664;
      padding: 30px 0 10px;
      font-size: 14px;
    }

    @media (max-width: 850px) {
      .menu-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 620px) {
      .page {
        width: min(100% - 18px, 1100px);
        padding-top: 10px;
      }

      .hero {
        padding: 20px;
        border-radius: 26px;
      }

      .topbar {
        margin-bottom: 42px;
      }

      .brand small {
        display: none;
      }

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

      .food-img {
        height: 210px;
      }

      .section-head {
        display: block;
      }

      .order-actions {
        flex-direction: column;
      }
    }
  </style>