  
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --green: #2a8c70;
      --green-dark: #1f6b55;
      --green-bg: #002010;
      --green-light: #3aad8a;
      --yellow: #f5c518;
      --cream: #f7f4ee;
      --cream-dark: #edeae2;
      --white: #ffffff;
      --text: #18241e;
      --muted: #5a7068;
      --wolt: #009de0;
      --bolt: #34d186;
    }

    body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
    h1, h2, h3 { font-family: 'Syne', sans-serif; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 5vw; height: 82px;
      display: flex; align-items: center; justify-content: space-between;
      background: var(--green-bg);
    }
    .nav-logo img { height: 56px; display: block; }
    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
    .nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .875rem; font-weight: 700; font-family: 'Syne', sans-serif; letter-spacing: .03em; transition: color .2s; }
    .nav-links a:hover { color: var(--white); }
    .btn-nav {
      background: var(--green); color: var(--white);
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: .875rem;
      padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      margin-top: 82px;
      min-height: 88vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-right {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .hero-left {
      position: relative; z-index: 1;
      padding: 80px 6vw 80px 8vw;
      max-width: 600px;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(42,140,112,.1); border: 1px solid rgba(42,140,112,.3);
      color: var(--green); font-size: .7rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px;
      border-radius: 4px; width: fit-content; margin-bottom: 24px;
    }
    .hero-tag::before {
      content: ''; width: 6px; height: 6px; background: var(--green);
      border-radius: 50%; animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }

    .hero h1 {
      font-size: clamp(2.6rem, 4.5vw, 5rem);
      line-height: 1.0; color: var(--text); font-weight: 800; margin-bottom: 20px;
    }
    .hero h1 em { font-style: normal; color: var(--green); }
    .hero-sub {
      font-size: 1.05rem; color: var(--muted); line-height: 1.7;
      max-width: 400px; margin-bottom: 40px;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }

    .btn-primary {
      background: var(--green); color: var(--white);
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
      padding: 15px 30px; border-radius: 8px; border: none; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,140,112,.35); }

    .btn-outline {
      background: transparent; color: var(--text);
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
      padding: 14px 26px; border-radius: 8px; border: 1.5px solid rgba(0,0,0,.15);
      cursor: pointer; transition: border-color .2s, background .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-outline:hover { border-color: var(--green); color: var(--green); }

    .hero-stats { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid rgba(0,0,0,.08); }
    .stat-val { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--green); }
    .stat-lab { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

    /* ─── STRIP ─── */
    .strip { background: var(--green); padding: 15px 0; overflow: hidden; }
    .strip-inner {
      display: flex; white-space: nowrap;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: .82rem;
      color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em;
      animation: marquee 22s linear infinite;
      will-change: transform;
    }
    .strip-set { display: flex; gap: 52px; padding-right: 52px; }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .strip-dot { color: rgba(255,255,255,.3); }

    /* ─── HOW ─── */
    .how { background: var(--cream); padding: 88px 5vw; text-align: center; }
    .eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
    .section-h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--text); margin-bottom: 52px; }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
    .step { background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: left; position: relative; overflow: hidden; }
    .step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); }
    .step-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--cream-dark); line-height: 1; margin-bottom: 14px; }
    .step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

    /* ─── MENU ─── */
    .menu-section { background: var(--white); padding: 88px 5vw; }
    .menu-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
    .menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
    .tab-btn {
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: .875rem;
      padding: 10px 20px; border-radius: 6px; border: 1.5px solid var(--cream-dark);
      background: transparent; color: var(--muted); cursor: pointer; transition: all .2s;
    }
    .tab-btn.active, .tab-btn:hover { background: var(--green); color: white; border-color: var(--green); }

    /* CARD GRID */
    .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
    .menu-category { margin-bottom: 48px; }
    .menu-category:last-child { margin-bottom: 0; }
    .menu-category-title {
      font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
      color: var(--text); text-transform: uppercase; letter-spacing: .08em;
      display: flex; align-items: center; gap: 10px;
      padding-bottom: 12px; border-bottom: 2px solid var(--green);
      margin-bottom: 20px;
    }
    .menu-category-title span { font-size: 1.2rem; }

    .dish-card {
      background: var(--white); border-radius: 14px; overflow: hidden;
      border: 1.5px solid var(--cream-dark);
      transition: box-shadow .25s, transform .2s, border-color .2s;
      cursor: default;
      display: flex; flex-direction: column;
    }
    .dish-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(42,140,112,.13); }

    .dish-card-img {
      width: 100%; aspect-ratio: 4/3; overflow: hidden;
      background: var(--cream);
      position: relative;
    }
    .dish-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
    .dish-card:hover .dish-card-img img { transform: scale(1.06); }

    /* placeholder for dishes without a photo */
    .dish-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #e8f5f0 0%, #d0ece3 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px;
    }
    .dish-placeholder-icon { font-size: 2.4rem; }
    .dish-placeholder-tag {
      font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
      color: var(--green); opacity: .7;
    }

    .dish-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
    .dish-card-name { font-size: .875rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 8px; flex: 1; }
    .dish-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
    .dish-card-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--green); }
    .dish-card-order {
      font-size: .72rem; font-weight: 600; color: var(--green); border: 1px solid var(--green);
      padding: 4px 10px; border-radius: 4px; cursor: pointer; background: none; transition: all .2s;
    }
    .dish-card-order:hover { background: var(--green); color: white; }

    /* LIST fallback for small categories */
    .menu-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 12px; }
    .menu-list-item {
      background: var(--cream); border-radius: 10px; padding: 16px 18px;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      border: 1.5px solid transparent; transition: all .2s;
    }
    .menu-list-item:hover { border-color: var(--green); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(42,140,112,.1); }
    .menu-list-name { font-size: .875rem; font-weight: 500; color: var(--text); line-height: 1.4; }
    .menu-list-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: .95rem; color: var(--green); white-space: nowrap; }

    /* ─── HIGHLIGHT ─── */
    .highlight { background: var(--green-bg); padding: 88px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .hl-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
    .hl-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
    .hl-img:hover img { transform: scale(1.04); }
    .hl-eyebrow { color: var(--green-light); }
    .hl-h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
    .hl-p { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.75; margin-bottom: 28px; }
    .value-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .value-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .875rem; }
    .value-list li::before {
      content: ''; width: 20px; height: 20px; flex-shrink: 0;
      background: var(--green); border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
      background-size: 11px; background-repeat: no-repeat; background-position: center;
    }

    /* ─── CORPORATE ─── */
    .corporate { background: var(--cream); padding: 100px 5vw; }
    .corporate-inner { max-width: 1100px; margin: 0 auto; }
    .corporate-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; }
    .corporate-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(42,140,112,.1); border: 1px solid rgba(42,140,112,.3);
      color: var(--green); font-size: .7rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px;
      border-radius: 4px; width: fit-content; margin-bottom: 20px;
    }
    .corporate-h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--text); line-height: 1.05; margin-bottom: 18px; }
    .corporate-h2 em { font-style: normal; color: var(--green); }
    .corporate-desc { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
    .corporate-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .corporate-stats { display: flex; flex-direction: column; gap: 20px; }
    .corp-stat-card {
      background: var(--white); border-radius: 14px; padding: 28px 30px;
      border: 1.5px solid var(--cream-dark);
      display: flex; align-items: center; gap: 20px;
      transition: box-shadow .2s, transform .15s;
    }
    .corp-stat-card:hover { box-shadow: 0 8px 28px rgba(42,140,112,.12); transform: translateY(-2px); }
    .corp-stat-icon { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; background: rgba(42,140,112,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
    .corp-stat-val { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--green); }
    .corp-stat-label { font-size: .8rem; color: var(--muted); margin-top: 2px; }
    .corporate-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .perk-card {
      background: var(--white); border-radius: 14px; padding: 30px 26px;
      border: 1.5px solid var(--cream-dark);
      transition: box-shadow .2s, transform .15s, border-color .2s;
    }
    .perk-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(42,140,112,.12); transform: translateY(-3px); }
    .perk-icon { font-size: 1.8rem; margin-bottom: 16px; }
    .perk-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .perk-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; }
    @media(max-width:960px){
      .corporate-top { grid-template-columns: 1fr; gap: 40px; }
      .corporate-perks { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width:580px){
      .corporate-perks { grid-template-columns: 1fr; }
    }

    /* ─── ORDER CTA ─── */
    .order-cta { background: var(--green); padding: 88px 5vw; text-align: center; }
    .order-cta h2 { font-size: clamp(1.8rem,3.5vw,3rem); color: var(--white); margin-bottom: 12px; }
    .order-cta p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 36px; }
    .order-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-wolt {
      background: var(--wolt); color: white; font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: .95rem; padding: 15px 28px; border-radius: 8px; border: none; cursor: pointer;
      text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: filter .2s, transform .15s;
    }
    .btn-bolt {
      background: var(--bolt); color: #000; font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: .95rem; padding: 15px 28px; border-radius: 8px; border: none; cursor: pointer;
      text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: filter .2s, transform .15s;
    }
    .btn-wolt:hover, .btn-bolt:hover { filter: brightness(1.1); transform: translateY(-2px); }
    .btn-phone {
      background: rgba(255,255,255,.15); color: white; font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: .95rem; padding: 14px 24px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.3);
      cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: background .2s;
    }
    .btn-phone:hover { background: rgba(255,255,255,.25); }

    /* ─── CONTACT ─── */
    .contact { background: var(--cream); padding: 88px 5vw; }
    .contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 880px; }
    .contact-card {
      background: var(--white); border-radius: 12px; padding: 26px 22px;
      text-decoration: none; color: var(--text); display: block;
      transition: box-shadow .2s, transform .15s;
    }
    .contact-card:hover { box-shadow: 0 8px 28px rgba(42,140,112,.15); transform: translateY(-3px); }
    .contact-icon { font-size: 1.3rem; margin-bottom: 12px; }
    .contact-label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .contact-value { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); }

    /* ─── FOOTER ─── */
    footer { background: var(--green-bg); padding: 28px 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .footer-logo img { height: 36px; display: block; }
    footer p { color: rgba(255,255,255,.25); font-size: .78rem; }
    .footer-links { display: flex; gap: 18px; }
    .footer-links a { color: rgba(255,255,255,.3); text-decoration: none; font-size: .78rem; transition: color .2s; }
    .footer-links a:hover { color: var(--green-light); }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--green-bg); border: 1px solid rgba(42,140,112,.35);
      border-radius: 16px; padding: 38px; max-width: 390px; width: 90%;
      animation: slideUp .25s ease;
    }
    @keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
    .modal h2 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
    .modal p { color: rgba(255,255,255,.4); font-size: .875rem; margin-bottom: 26px; }
    .modal-options { display: flex; flex-direction: column; gap: 11px; }
    .modal-opt {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 15px 20px; border-radius: 10px; font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer;
      border: none; transition: filter .2s, transform .15s;
    }
    .modal-opt:hover { filter: brightness(1.1); transform: translateY(-1px); }
    .modal-opt.wolt { background: var(--wolt); color: white; }
    .modal-opt.bolt { background: var(--bolt); color: #000; }
    .modal-opt.phone { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.2); }
    .modal-opt.phone:hover { border-color: rgba(255,255,255,.5); }
    .modal-close { margin-top: 14px; width: 100%; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.2); font-size: .78rem; padding: 8px; transition: color .2s; }
    .modal-close:hover { color: rgba(255,255,255,.5); }

    /* ─── RESPONSIVE ─── */
    @media(max-width:960px){
      .hero { min-height: 88svh; }
      .hero-left { padding: 48px 6vw; }
      .hero-right img { object-position: 60% center; }
      .highlight { grid-template-columns: 1fr; }
      .hl-img { order: -1; }
      .steps { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
    }
    @media(max-width:580px){
      .contact-grid { grid-template-columns: 1fr; }
      .card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    }

    @media(max-width:600px){
      .hero-right { display: none; }
      .hero {
        background: var(--green-bg);
        min-height: auto;
      }
      .hero-left {
        padding: 40px 6vw 52px;
        max-width: 100%;
      }
      .hero h1 { color: var(--white); font-size: clamp(2rem, 8vw, 2.8rem); }
      .hero h1 em { color: var(--green-light); }
      .hero-sub { color: rgba(255,255,255,.6); max-width: 100%; margin-bottom: 28px; }
      .hero-tag { background: rgba(58,173,138,.15); border-color: rgba(58,173,138,.4); margin-bottom: 16px; }
      .hero-ctas { margin-bottom: 32px; }
      .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
      .hero-stats { gap: 20px; border-top-color: rgba(255,255,255,.1); }
      .stat-val { font-size: 1.4rem; }
      .stat-lab { color: rgba(255,255,255,.5); }
    }
  
    /* ─── LANG SWITCHER ─── */
    .lang-switcher {
      position: relative;
      display: flex;
      align-items: center;
    }
    .lang-btn {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.75);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .06em;
      padding: 7px 12px;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background .2s, border-color .2s;
      white-space: nowrap;
    }
    .lang-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
    .lang-btn svg { transition: transform .2s; }
    .lang-btn.open svg { transform: rotate(180deg); }
    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #002010;
      border: 1px solid rgba(42,140,112,.3);
      border-radius: 8px;
      overflow: hidden;
      min-width: 130px;
      box-shadow: 0 8px 24px rgba(0,0,0,.4);
      z-index: 200;
    }
    .lang-dropdown.open { display: block; animation: fadeDropdown .15s ease; }
    @keyframes fadeDropdown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      transition: background .15s, color .15s;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      letter-spacing: .04em;
    }
    .lang-option:hover { background: rgba(42,140,112,.2); color: var(--white); }
    .lang-option.active { color: var(--green-light); }
    .lang-flag { font-size: 1.1rem; line-height: 1; }

    /* ── DISH DETAIL MODAL ── */
    .dish-detail-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.6); z-index: 1100;
      align-items: center; justify-content: center; padding: 16px;
    }
    .dish-detail-overlay.open { display: flex; }
    .dish-detail-modal {
      background: var(--white); border-radius: 18px;
      width: 100%; max-width: 480px; max-height: 90vh;
      overflow-y: auto; position: relative;
      box-shadow: 0 24px 60px rgba(0,0,0,.25);
    }
    .dish-detail-img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 18px 18px 0 0; display: block;
    }
    .dish-detail-body { padding: 24px; }
    .dish-detail-name {
      font-family: 'Syne', sans-serif; font-size: 1.2rem;
      font-weight: 700; color: var(--text); margin-bottom: 4px;
    }
    .dish-detail-price {
      font-size: 1.05rem; font-weight: 700;
      color: var(--green); margin-bottom: 20px;
    }
    .dish-detail-label {
      font-size: .72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .08em; color: var(--muted); margin-bottom: 6px;
    }
    .dish-detail-ingredients {
      font-size: .9rem; color: var(--text);
      line-height: 1.7; margin-bottom: 20px;
    }
    .dish-detail-allergen-box {
      background: #fff8e1; border: 1px solid #ffe082;
      border-radius: 10px; padding: 12px 16px;
      font-size: .8rem; color: #7a6000;
      margin-bottom: 20px; line-height: 1.6;
    }
    .dish-detail-order-btn { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }
    .dish-detail-close {
      position: absolute; top: 12px; right: 14px;
      background: rgba(0,0,0,.45); border: none; color: white;
      width: 32px; height: 32px; border-radius: 50%;
      font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; z-index: 10;
    }
    .dish-card { cursor: pointer; }


