    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:       #0C0B09;
      --fire:     #E8420A;
      --gold:     #F5A623;
      --cream:    #F0EAD6;
      --dark2:    #171510;
      --dark3:    #1F1C14;
      --fd:       rgba(232,66,10,.14);
      --gd:       rgba(245,166,35,.11);
    }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--cream); font-family: 'Nunito', sans-serif; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; inset-inline: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 5%;
      background: rgba(12,11,9,.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(245,166,35,.07);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-circle {
      width: 42px; height: 42px; border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0 18px rgba(245,166,35,.45);
      animation: glow 3s ease-in-out infinite;
      flex-shrink: 0;
    }
    .logo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
    @keyframes glow {
      0%,100% { box-shadow: 0 0 18px rgba(245,166,35,.45); }
      50%      { box-shadow: 0 0 32px rgba(245,166,35,.75); }
    }
    .nav-brand { font-family:'Montserrat',sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); }
    .nav-brand em { color: var(--gold); font-style: normal; }
    .nav-tagline { font-size: .65rem; color: rgba(240,234,214,.45); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; }

    .nav-links { display: flex; gap: 26px; list-style: none; }
    .nav-links a { color: rgba(240,234,214,.6); text-decoration: none; font-size: .83rem; font-weight: 500; letter-spacing: .4px; text-transform: uppercase; transition: color .2s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--fire) !important; color: var(--cream) !important; padding: 8px 20px; border-radius: 50px; }
    .nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 110px 5% 70px; position: relative; overflow: hidden;
    }
    .hero-glow {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 65% 55% at 50% 45%, rgba(232,66,10,.2) 0%, transparent 65%),
        radial-gradient(ellipse 35% 35% at 75% 75%, rgba(245,166,35,.12) 0%, transparent 60%);
    }
    .hero-dots {
      position: absolute; inset: 0; opacity: .03;
      background-image: radial-gradient(circle, rgba(240,234,214,.8) 1px, transparent 1px);
      background-size: 36px 36px;
    }
    .badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; animation: fadeUp .7s ease both; }
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 16px; border-radius: 50px; font-size: .72rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
    }
    .badge-halal { background: var(--gd); border: 1px solid rgba(245,166,35,.3); color: var(--gold); }
    .badge-fire  { background: var(--fd); border: 1px solid rgba(232,66,10,.3); color: #ff8060; }

    .hero-logo-big {
      width: 160px; height: 160px; border-radius: 50%;
      overflow: hidden; margin: 0 auto 28px;
      box-shadow: 0 0 60px rgba(245,166,35,.35), 0 0 120px rgba(232,66,10,.2);
      animation: fadeUp .75s .05s ease both, glow 3s ease-in-out infinite;
    }
    .hero-logo-big img { width: 100%; height: 100%; object-fit: cover; display: block; }

    h1.hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(3rem, 9vw, 7rem); font-weight: 900; line-height: 1;
      color: var(--cream); animation: fadeUp .8s .1s ease both;
    }
    h1.hero-title .fire { color: var(--fire); }
    h1.hero-title .gold { color: var(--gold); }

    .hero-cats {
      display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
      margin: 20px 0 0; animation: fadeUp .8s .18s ease both;
    }
    .hero-cat {
      display: flex; align-items: center; gap: 7px;
      font-size: .9rem; font-weight: 600; color: rgba(240,234,214,.7);
      letter-spacing: .5px; text-transform: uppercase;
    }
    .hero-cat::before { content: '●'; color: var(--fire); font-size: .4rem; }

    .hero-slogan {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      color: rgba(240,234,214,.55); line-height: 1.7;
      max-width: 500px; margin: 26px auto 0;
      animation: fadeUp .8s .25s ease both;
      font-style: italic;
    }

    .hero-btns {
      display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
      margin-top: 36px; animation: fadeUp .8s .32s ease both;
    }
    .btn-fire {
      background: linear-gradient(135deg, var(--fire), #b83208);
      color: var(--cream); text-decoration: none;
      padding: 14px 34px; border-radius: 50px; font-weight: 700; font-size: .95rem;
      box-shadow: 0 8px 28px rgba(232,66,10,.4);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-fire:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,66,10,.55); }
    .btn-outline {
      background: transparent; border: 1.5px solid rgba(245,166,35,.45);
      color: var(--gold); text-decoration: none;
      padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: .95rem;
      transition: background .2s, border-color .2s;
    }
    .btn-outline:hover { background: var(--gd); border-color: var(--gold); }

    .hero-info-strip {
      display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
      margin-top: 60px; animation: fadeUp .8s .42s ease both;
    }
    .hi {
      display: flex; align-items: center; gap: 10px;
      font-size: .88rem; color: rgba(240,234,214,.55);
    }
    .hi-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--fd); border: 1px solid rgba(232,66,10,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem; color: var(--fire);
    }
    .hi strong { color: var(--cream); display: block; font-size: .95rem; }

    .scroll-arrow {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
      color: rgba(240,234,214,.25); animation: bob 2.5s ease infinite;
    }
    @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

    /* ── SECTION COMMONS ── */
    .sec { padding: 56px 5%; }
    .sec-alt { background: var(--dark2); }
    .sec-head { text-align: center; margin-bottom: 28px; }
    .sec-title { font-family:'Montserrat',sans-serif; font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; color: var(--cream); }
    .sec-title span { color: var(--gold); }
    .sec-sub { color: rgba(240,234,214,.5); margin-top: 12px; font-size: .92rem; line-height: 1.7; }

    /* ── ABOUT ── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-card {
      background: var(--dark3); border: 1px solid rgba(245,166,35,.1);
      border-radius: 24px; padding: 44px 38px; position: relative; overflow: hidden;
    }
    .about-card::after {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
    }
    .about-card h3 { font-family:'Montserrat',sans-serif; font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
    .about-card p { color: rgba(240,234,214,.6); line-height: 1.8; font-size: .93rem; }
    .chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
    .chip {
      display: flex; align-items: center; gap: 8px;
      background: var(--fd); border: 1px solid rgba(232,66,10,.2);
      border-radius: 10px; padding: 12px 14px;
      font-size: .83rem; font-weight: 500; color: var(--cream);
    }
    .about-text h2 { font-family:'Montserrat',sans-serif; font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 900; color: var(--cream); line-height: 1.25; margin-bottom: 18px; }
    .about-text h2 span { color: var(--gold); }
    .about-text p { color: rgba(240,234,214,.6); line-height: 1.85; margin-bottom: 14px; font-size: .93rem; }
    .check-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
    .check-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(240,234,214,.8); font-size: .92rem; }
    .check-list li::before {
      content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
      background: linear-gradient(135deg, var(--fire), var(--gold))
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
        center/13px no-repeat;
    }

    /* ── MENU ── */
    .cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
    .tab {
      background: transparent; border: 1.5px solid rgba(240,234,214,.1);
      color: rgba(240,234,214,.5);
      padding: 9px 22px; border-radius: 50px; font-size: .83rem; font-weight: 600;
      cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 6px;
    }
    .tab.on, .tab:hover { background: var(--fire); border-color: var(--fire); color: var(--cream); }

    .menu-section { margin-bottom: 32px; }
    .menu-section-title {
      display: flex; align-items: center; gap: 14px;
      font-family:'Montserrat',sans-serif; font-size: 1.7rem; font-weight: 900;
      color: var(--cream); margin-bottom: 24px; padding-bottom: 14px;
      border-bottom: 1px solid rgba(245,166,35,.12);
    }
    .menu-section-title span { color: var(--gold); }

    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
    .mcard {
      background: var(--dark3); border: 1px solid rgba(240,234,214,.06);
      border-radius: 16px; overflow: hidden;
      position: relative;
      display: flex; flex-direction: column;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .mcard:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.5); border-color: rgba(232,66,10,.3); }
    .mcard-img {
      aspect-ratio: 3 / 2; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #1c1710, #241d10);
      display: flex; align-items: center; justify-content: center;
    }
    .mcard-img img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; z-index: 1;
      transition: transform .45s ease;
    }
    .mcard:hover .mcard-img img { transform: scale(1.07); }
    .mcard-img .img-fade {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to bottom, transparent 35%, rgba(12,11,9,.65) 100%);
      pointer-events: none;
    }
    .mbadge {
      background: var(--fire); color: var(--cream);
      font-size: .63rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; letter-spacing: .5px;
      position: absolute; top: 10px; right: 10px; z-index: 3;
    }
    .mbadge.new { background: var(--gold); color: var(--bg); }
    .mcard-body { padding: 14px 18px 18px; flex: 1; display: flex; flex-direction: column; }

    /* gallery strip */
    .gallery-strip {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 3px;
      height: 200px;
    }
    .gallery-item { overflow: hidden; position: relative; cursor: pointer; }
    .gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item .glabel {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 28px 14px 12px;
      background: linear-gradient(to top, rgba(12,11,9,.85) 0%, transparent 100%);
      font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: var(--cream); text-align: center;
    }

    /* hero bg img */
    .hero-bg-img {
      position: absolute; inset: 0; width:100%; height:100%;
      object-fit: cover; opacity: .07; filter: saturate(.4);
      pointer-events: none;
    }
    .mcard-body h4 { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
    .mcard-body p {
      font-size: .78rem; color: rgba(240,234,214,.45); line-height: 1.55; margin-bottom: 14px;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .mcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
    .mprice { font-size: 1.15rem; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }
    .morder {
      background: var(--fd); border: 1px solid rgba(232,66,10,.25);
      color: var(--fire); padding: 6px 14px; border-radius: 50px;
      font-size: .78rem; font-weight: 600; cursor: pointer;
      transition: background .2s, color .2s;
    }
    .morder:hover { background: var(--fire); color: var(--cream); }

    /* list variant (for combo/drinks) */
    .mlist { display: flex; flex-direction: column; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(240,234,214,.06); }
    .mrow {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 18px; background: var(--dark3);
      border-bottom: 1px solid rgba(240,234,214,.05);
      transition: background .2s;
    }
    .mrow:last-child { border-bottom: none; }
    .mrow:hover { background: rgba(36,28,20,.9); }
    .mrow-left { display: flex; align-items: center; gap: 12px; }
    .mrow h4 { font-size: 1rem; font-weight: 700; color: var(--cream); }
    .mrow p  { font-size: .77rem; color: rgba(240,234,214,.4); margin-top: 2px; }
    .mrow-right { display: flex; align-items: center; gap: 14px; }
    .mrow-price { font-size: 1.05rem; font-weight: 700; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }

    /* ── INFO CARDS ── */
    .info-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
    .icard {
      background: var(--dark3); padding: 44px 32px; text-align: center;
      border: 1px solid rgba(240,234,214,.04);
    }
    .icard:first-child { border-radius: 20px 0 0 20px; }
    .icard:last-child  { border-radius: 0 20px 20px 0; }
    .iicon {
      width: 58px; height: 58px; border-radius: 14px; margin: 0 auto 16px;
      background: var(--gd); border: 1px solid rgba(245,166,35,.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--gold);
    }
    .icard h3 { font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
    .icard p { font-size: .97rem; color: var(--cream); line-height: 1.75; }
    .icard a { color: var(--cream); text-decoration: none; }
    .icard a:hover { color: var(--gold); }

    /* ── CONTACT ── */
    .contact-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 52px; align-items: start; }
    .cblock { display: flex; flex-direction: column; gap: 28px; }
    .citem { display: flex; gap: 16px; align-items: flex-start; }
    .cicon {
      width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px;
      background: var(--fd); border: 1px solid rgba(232,66,10,.22);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--fire);
    }
    .citem h4 { font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fire); font-weight: 700; margin-bottom: 5px; }
    .citem p, .citem a { color: var(--cream); text-decoration: none; font-size: .95rem; line-height: 1.7; }
    .citem a:hover { color: var(--gold); }
    .social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
    .sbtn {
      display: flex; align-items: center; gap: 8px;
      background: var(--dark3); border: 1px solid rgba(240,234,214,.1);
      color: var(--cream); text-decoration: none;
      padding: 10px 18px; border-radius: 50px; font-size: .84rem; font-weight: 500;
      transition: border-color .2s, color .2s, background .2s;
    }
    .sbtn:hover { border-color: var(--gold); color: var(--gold); background: var(--gd); }
    .sbtn svg { width: 17px; height: 17px; }

    .map-box { border-radius: 22px; overflow: hidden; border: 1px solid rgba(245,166,35,.12); box-shadow: 0 20px 56px rgba(0,0,0,.5); }
    .map-preview {
      width: 100%; height: 400px; background: var(--dark3);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
      position: relative; overflow: hidden;
    }
    .map-preview::before {
      content: '';
      position: absolute; inset: 0;
      background:
        repeating-linear-gradient(0deg, rgba(245,166,35,.03) 0px, rgba(245,166,35,.03) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, rgba(245,166,35,.03) 0px, rgba(245,166,35,.03) 1px, transparent 1px, transparent 48px);
    }
    .map-preview .map-pin { font-size: 3.5rem; animation: pinBounce 2s ease-in-out infinite; position: relative; }
    @keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    .map-preview h4 { font-family:'Montserrat',sans-serif; font-size: 1.1rem; color: var(--cream); text-align:center; position:relative; }
    .map-preview p { font-size: .82rem; color: rgba(240,234,214,.5); text-align:center; position:relative; }
    .map-open-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, #1a6aff, #0f4fd4);
      color: white; text-decoration: none;
      padding: 12px 28px; border-radius: 50px;
      font-size: .88rem; font-weight: 700;
      box-shadow: 0 6px 20px rgba(26,106,255,.35);
      transition: transform .2s, box-shadow .2s;
      position: relative;
    }
    .map-open-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,106,255,.5); }
    .map-caption { background: var(--dark3); padding: 14px 20px; display:flex; gap:8px; align-items:center; font-size:.84rem; color:rgba(240,234,214,.65); border-top: 1px solid rgba(245,166,35,.08); }
    .map-caption span { color: var(--fire); }

    /* ── FOOTER ── */
    footer { background: #070706; border-top: 1px solid rgba(245,166,35,.07); padding: 44px 5% 28px; }
    .ft-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
    .ft-brand { font-family:'Montserrat',sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); }
    .ft-brand em { color: var(--gold); font-style: normal; }
    .ft-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .ft-links a { color: rgba(240,234,214,.4); text-decoration: none; font-size: .82rem; transition: color .2s; }
    .ft-links a:hover { color: var(--gold); }
    .ft-bottom { border-top: 1px solid rgba(240,234,214,.05); padding-top: 20px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
    .ft-bottom p { font-size: .76rem; color: rgba(240,234,214,.28); }
    .halal-pill { background: var(--gd); border: 1px solid rgba(245,166,35,.22); color: var(--gold); font-size: .73rem; font-weight: 700; letter-spacing: 1px; padding: 5px 14px; border-radius: 50px; }

    /* ── CART ── */
    .cart-fab {
      position: fixed; bottom: 96px; right: 28px; z-index: 200;
      background: var(--fire); color: white;
      padding: 13px 18px; border-radius: 50px;
      font-size: .9rem; font-weight: 700; cursor: pointer;
      box-shadow: 0 8px 24px rgba(232,66,10,.45);
      transition: transform .2s, box-shadow .2s;
      display: flex; align-items: center; gap: 7px;
      border: none;
    }
    .cart-fab:hover { transform: scale(1.07); box-shadow: 0 12px 32px rgba(232,66,10,.6); }
    #cart-count {
      background: white; color: var(--fire);
      border-radius: 50%; width: 22px; height: 22px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .78rem; font-weight: 900;
    }
    .cart-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.55); z-index: 299;
    }
    .cart-panel {
      position: fixed; right: -420px; top: 0; bottom: 0; width: 390px;
      background: var(--dark2); z-index: 300;
      display: flex; flex-direction: column;
      border-left: 1px solid rgba(245,166,35,.15);
      transition: right .3s cubic-bezier(.4,0,.2,1);
      box-shadow: -12px 0 48px rgba(0,0,0,.6);
    }
    .cart-panel.open { right: 0; }
    .cart-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 24px; border-bottom: 1px solid rgba(240,234,214,.08);
    }
    .cart-head h3 { font-size: 1.15rem; font-weight: 700; color: var(--cream); }
    .cart-close {
      background: rgba(240,234,214,.07); border: none; color: rgba(240,234,214,.6);
      font-size: 1rem; cursor: pointer; padding: 6px 10px; border-radius: 8px;
      transition: background .2s, color .2s;
    }
    .cart-close:hover { background: rgba(240,234,214,.14); color: var(--cream); }
    .cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
    .cart-empty { color: rgba(240,234,214,.3); text-align: center; margin-top: 50px; font-size: .9rem; line-height: 1.8; }
    .cart-item {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 0; border-bottom: 1px solid rgba(240,234,214,.06);
    }
    .cart-item-name { color: var(--cream); font-size: .88rem; font-weight: 500; flex: 1; line-height: 1.4; }
    .cart-item-qty {
      display: flex; align-items: center; gap: 6px;
      background: var(--dark3); border-radius: 8px; padding: 4px 6px;
      border: 1px solid rgba(240,234,214,.06);
    }
    .cart-qty-btn {
      background: transparent; border: none; color: var(--gold);
      font-size: 1.1rem; cursor: pointer; width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center; font-weight: 900;
      border-radius: 4px; transition: background .15s;
    }
    .cart-qty-btn:hover { background: rgba(245,166,35,.15); }
    .cart-qty-num { color: var(--cream); font-weight: 700; min-width: 22px; text-align: center; font-size: .9rem; }
    .cart-foot { padding: 20px 24px; border-top: 1px solid rgba(240,234,214,.08); }
    .cart-order-btn {
      width: 100%; padding: 15px; border: none; cursor: pointer;
      font-size: .95rem; border-radius: 14px; font-weight: 700;
      background: linear-gradient(135deg, #25D366, #1aa84f);
      color: white; display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: 0 6px 20px rgba(37,211,102,.35);
      transition: transform .2s, box-shadow .2s;
      font-family: 'Nunito', sans-serif;
    }
    .cart-order-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }
    @media(max-width:440px){ .cart-panel { width: 100%; right: -100%; } }

    /* ── WA FLOAT ── */
    .wa-fab {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,.4); text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.6); }
    .wa-fab svg { width: 28px; height: 28px; fill: white; }

    /* ── REVEAL ── */
    .reveal { opacity:0; transform:translateY(30px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.on { opacity:1; transform:translateY(0); }

    /* ── KEYFRAMES ── */
    @keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }

    /* ── RESPONSIVE ── */
    @media(max-width:900px){
      .about-grid,.contact-wrap{grid-template-columns:1fr;gap:36px;}
      .info-row{grid-template-columns:1fr;}
      .icard:first-child{border-radius:20px 20px 0 0;}
      .icard:last-child{border-radius:0 0 20px 20px;}
      .gallery-strip{grid-template-columns:repeat(2,1fr);height:320px;}
    }
    @media(max-width:680px){
      .sec{padding:40px 5%;}
      .nav-links{display:none;}
      .hamburger{display:flex;}
      .chips{grid-template-columns:1fr;}
      .hero-info-strip{gap:22px;}
      .gallery-strip{grid-template-columns:repeat(2,1fr);height:280px;}
    }

/* Санат ішіндегі топтар: «Қуырдақ Донер» / «Куринный Донер» */
.msub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.msub-title {
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--fire); font-weight: 700; margin-bottom: 14px;
}
.mlist--boxed {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(240,234,214,.06);
}
@media (max-width: 720px) {
  .msub-grid { grid-template-columns: 1fr; }
}

/* Тар экранда тапсырыс батырмасы «+» мен «Қосу» болып екі жолға бөлініп кететін —
   24 тізім жолының 12-сінде. Батырма мен баға енді қысылмайды, олардың орнына
   тағамның атауы тасымалданады. .mrow-price-та nowrap дәл осы себеппен тұрған. */
.morder { white-space: nowrap; }
.mrow-right { flex-shrink: 0; }

/* Спрайттағы иконкалар. Өлшемі ата-ана элементтің font-size-нан алынады,
   түсі currentColor арқылы — эмодзи қалдырған орындарға дәл сол қалыпта түседі. */
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex: none; }

/* Қозғалысты азайтуды сұраған қолданушыға анимация көрсетілмейді. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* Тіл ауыстырғыш. Екі күй ғана бар, сондықтан ашылмалы тізім емес — екі
   батырма: бір рет басу жеткілікті, әрі қай тілде тұрғаныңыз бірден көрінеді. */
.lang-switch { display: flex; gap: 2px; background: rgba(240,234,214,.06); border-radius: 50px; padding: 3px; }
.lang-switch button {
  border: none; background: none; cursor: pointer;
  color: rgba(240,234,214,.5); font-family: inherit;
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  padding: 5px 11px; border-radius: 50px; transition: background .2s, color .2s;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.on { background: var(--fire); color: #fff; }

/* Мәзір жүктелмей тұрғандағы немесе бос болғандағы хабар. */
.menu-status { text-align: center; padding: 40px 0; color: rgba(240,234,214,.55); }
.menu-status a { color: var(--gold); }

@media(max-width:680px){
  .lang-switch { order: -1; margin-left: auto; margin-right: 12px; }
}


/* ── ТЕЛЕФОНДА ТАҒАМ СУРЕТТЕРІ КӨРСЕТІЛМЕЙДІ ──
   Қазіргі суреттер Unsplash-тен алынған, кафенің өз тағамдары емес. Кішкене
   экранда олар бетті екі есе ұзартады да, ештеңе айтпайды: мәзірді атау, баға
   және сипаттама көтеріп тұр. Иесінің нақты фотолары дайын болғанда бұл блокты
   алып тастау жеткілікті — қалған разметка сол күйінде қалады.

   Суреттердің бәрі loading="lazy", ал жасырылған lazy сурет жүктелмейді,
   сондықтан бұл трафикті де үнемдейді. */
@media (max-width: 680px) {
  .mcard-img { display: none; }

  /* Сурет жоғалғанда белгі карточканың бұрышында атаудың үстіне түсер еді.
     Телефонда ол абсолют емес, қатардағы элемент болады — жабысу мүмкін емес. */
  .mbadge {
    position: static; align-self: flex-start;
    margin: 14px 18px -4px;
  }

  /* Галерея жолағы — сол төрт стоктық фотоның үлкейтілген түрі. */
  .gallery-strip { display: none; }

  /* Карта астындағы жазу үш тар бағанға қысылып, әр сөз бөлек жолға түсіп
     кететін. Енді элементтер қысылмайды, орын жетпесе жаңа жолға көшеді. */
  .map-caption { flex-wrap: wrap; row-gap: 2px; line-height: 1.45; }
  .map-caption > span, .map-caption > a { flex-shrink: 0; }
  .map-caption > a { flex-basis: 100%; }
}
