    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Two faces, each doing one job.
       *
       * Oswald is condensed and vertical — the proportions of real street
       * signage, which is what the neon in the hero photo actually is. It
       * carries names, prices and buttons.
       *
       * Golos Text was drawn for Cyrillic rather than extended into it, so
       * Kazakh sets far more evenly than a Latin-first face does. It carries
       * everything meant to be read: ingredients, addresses, hours. */
      --font-display: 'Oswald', 'Arial Narrow', sans-serif;
      --font-body: 'Golos Text', system-ui, sans-serif;

      --orange: #FF6B00;
      --orange-glow: rgba(255, 107, 0, 0.55);
      --red: #E8001D;
      --yellow: #FFD600;
      --dark: #0a0a0a;
      --dark2: #111111;
      --glass: rgba(255,255,255,0.04);
      --glass-border: rgba(255,107,0,0.25);
      --text: #f0f0f0;
      --muted: rgba(255,255,255,0.55);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── BACKGROUND GLOW ─────────────────────── */
    body::before {
      content: '';
      position: fixed;
      top: -200px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: '';
      position: fixed;
      bottom: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,0,29,0.14) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ─── HEADER ──────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 48px;
      background: rgba(10,10,10,0.72);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,107,0,0.15);
    }

    .logo-wrap img {
      height: 56px;
      transition: opacity .3s;
    }
    .logo-wrap img:hover { opacity: .85; }

    nav { display: flex; gap: 36px; }
    nav a {
      font-family: var(--font-display);
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color .25s;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform .25s;
    }
    nav a:hover { color: #fff; }
    nav a:hover::after { transform: scaleX(1); }

    .header-icons { display: flex; gap: 20px; align-items: center; }
    .icon-btn {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50%;
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .25s, box-shadow .25s;
      color: var(--muted);
      font-size: 17px;
    }
    .icon-btn:hover {
      background: rgba(255,107,0,0.15);
      box-shadow: 0 0 14px var(--orange-glow);
      color: #fff;
    }
    .cart-badge { position: relative; }
    .cart-badge .badge {
      position: absolute;
      top: -5px; right: -5px;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      border-radius: 50%;
      width: 17px; height: 17px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ─── HERO ────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 48px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,107,0,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 20%, rgba(232,0,29,0.10) 0%, transparent 60%),
        #0a0a0a;
      z-index: 0;
    }

    /* Decorative food ring */
    .hero-food-ring {
      position: absolute;
      right: 3%;
      top: 50%;
      transform: translateY(-50%);
      /* .hero reserves 120px of top padding for the fixed header, but an
       * absolutely positioned child centres on the whole box and ignores that
       * padding, so on a short laptop viewport a 560px frame reached up under
       * the header. Being centred, the clearance is symmetric — capping the
       * size keeps the top edge down.
       *
       * The reserve is 280px rather than 240px because pulseRing also lifts
       * the frame at its peak: scale(1.015) adds half of 1.5% to the top edge
       * and translateY(-52%) raises it another 2% of its own height. The extra
       * 40px covers that with room to spare. Above ~840px tall the 560px
       * design size wins and nothing changes from before. */
      width: min(560px, calc(100vh - 280px));
      height: min(560px, calc(100vh - 280px));
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      animation: pulseRing 5s ease-in-out infinite;
    }

    .hero-food-ring::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 30px;
      border: 2px solid rgba(255,107,0,0.35);
      box-shadow: 0 0 28px rgba(255,107,0,0.16), inset 0 0 30px rgba(255,107,0,0.05);
    }

    .hero-food-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 26px;
      display: block;
    }

    @keyframes pulseRing {
      0%, 100% { box-shadow: 0 0 26px rgba(255,107,0,0.14); transform: translateY(-50%) scale(1); }
      50% { box-shadow: 0 0 44px rgba(255,107,0,0.26); transform: translateY(-52%) scale(1.015); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
    }

    .hero-title {
      font-family: var(--font-display);
      /* Larger than before because a condensed face at the same point size
       * simply occupies less of the line. The negative tracking that suited
       * Montserrat's wide geometry is gone for the same reason — Oswald is
       * already narrow, and pulling it tighter only crowded it. */
      font-size: clamp(34px, 5.6vw, 74px);
      font-weight: 700;
      /* Kazakh capitals carry marks above them — the breve on Й, the bar on Ү —
       * and Oswald sets a tall ascent. At 1.04 the first line's ink rose out of
       * the box and the Ү was clipped at the top. */
      line-height: 1.16;
      letter-spacing: 0;
      margin-bottom: 22px;
    }

    .hero-desc {
      color: var(--muted);
      font-size: 16.5px;
      line-height: 1.65;
      max-width: 40ch;
      margin-bottom: 34px;
    }

    .btn-primary {
      font-family: var(--font-display);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--orange), #ff3d00);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 30px rgba(255,107,0,0.55), 0 4px 20px rgba(255,107,0,0.3);
      transition: box-shadow .3s, transform .2s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    }
    .btn-primary:hover {
      box-shadow: 0 0 50px rgba(255,107,0,0.80), 0 6px 28px rgba(255,107,0,0.45);
      transform: translateY(-2px);
    }

    /* These replaced three stat tiles reading "4+ / 30 мин / 10–24". Two of
     * those numbers were not facts: there were exactly four sets, not "4+",
     * and the 30-minute delivery was a promise nobody had made. A term above
     * its value states the same kind of thing without dressing it as a
     * metric, and the label is the small part because the answer is what
     * the reader came for. */
    .hero-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 34px;
      margin-top: 44px;
    }
    .fact {
      border-left: 1px solid rgba(255,107,0,0.28);
      padding-left: 16px;
    }
    .fact dt {
      font-family: var(--font-display);
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fact dd {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      margin-top: 3px;
      white-space: nowrap;
    }

    /* ─── SECTION COMMON ──────────────────────── */
    section { position: relative; z-index: 1; }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 3.6vw, 46px);
      font-weight: 600;
      letter-spacing: 0.5px;
      line-height: 1.1;
      display: inline-block;
      padding-bottom: 14px;
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 54px;
      height: 3px;
      border-radius: 2px;
      background: var(--orange);
    }

    /* ─── MENU SECTION ────────────────────────── */
    #menu {
      padding: 100px 48px;
      background: linear-gradient(180deg, var(--dark) 0%, #0d0d0d 100%);
    }

    .menu-status {
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
      padding: 60px 20px;
    }
    .menu-status a {
      color: var(--orange);
      font-weight: 700;
      text-decoration: none;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .card {
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,107,0,0.18);
      border-radius: 20px;
      padding: 0;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(255,107,0,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(255,107,0,0.22), 0 0 0 1px rgba(255,107,0,0.35);
      border-color: rgba(255,107,0,0.45);
    }

    .card-head {
      padding: 28px 24px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid rgba(255,107,0,0.12);
      background: linear-gradient(180deg, rgba(255,107,0,0.08) 0%, transparent 100%);
    }

    .card-icon {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      animation: floatCard 4s ease-in-out infinite;
      /* --i is set per card by menu.js; 0s, .7s, 1.4s, 2.1s, ... */
      animation-delay: calc(var(--i, 0) * .7s);
    }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-5px) scale(1.015); }
    }

    .card-badge {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--orange);
      background: rgba(255,107,0,0.12);
      border: 1px solid rgba(255,107,0,0.25);
      border-radius: 20px;
      padding: 3px 12px;
    }

    .card-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center;
      color: #fff;
    }

    .card-price {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: -0.5px;
    }

    .card-body {
      padding: 18px 22px;
    }

    .card-desc {
      font-size: 12.5px;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .card-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .card-items li {
      font-size: 12.5px;
      color: rgba(255,255,255,0.72);
      display: flex;
      align-items: baseline;
      gap: 6px;
      line-height: 1.4;
    }
    .card-items li::before {
      content: '—';
      color: rgba(255,107,0,0.45);
      flex-shrink: 0;
      font-size: 10px;
    }

    .card-divider {
      margin: 10px 22px;
      border: none;
      border-top: 1px dashed rgba(255,107,0,0.15);
    }

    .card-cola {
      padding: 0 22px 8px;
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .card-footer {
      padding: 16px 22px 22px;
      margin-top: auto;
    }

    .btn-card {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid var(--orange);
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      padding: 12px 20px;
      border-radius: 50px;
      cursor: pointer;
      transition: all .3s;
      font-family: var(--font-display);
    }
    .btn-card:hover {
      background: linear-gradient(135deg, var(--orange), #ff3d00);
      color: #fff;
      transform: scale(1.02);
    }

    .service-badge {
      font-family: var(--font-display);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      align-self: flex-start;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .4px;
    }

    /* ─── CONTACT SECTION ─────────────────────── */
    #contact {
      padding: 80px 48px 0;
    }

    .contact-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .contact-card {
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,107,0,0.18);
      border-radius: 20px;
      padding: 32px 28px;
      backdrop-filter: blur(12px);
      transition: border-color .3s, box-shadow .3s;
    }
    .contact-card:hover {
      border-color: rgba(255,107,0,0.40);
      box-shadow: 0 10px 40px rgba(255,107,0,0.14);
    }
    /* These were emoji: a clock face frozen at a random time, a pink handset,
     * a pink pin and — for the delivery card — a rocket. Besides reading as
     * clip art, none of them were the brand's colour. Line icons inherit
     * currentColor, so they simply are the brand's colour. */
    .contact-icon {
      width: 26px;
      height: 26px;
      display: block;
      margin-bottom: 16px;
      color: var(--orange);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .contact-card h4 {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }
    .contact-card p, .contact-card a {
      font-size: 15px;
      color: var(--text);
      text-decoration: none;
      line-height: 1.7;
    }
    .contact-card a:hover { color: var(--orange); }
    .contact-note { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
    .contact-link { border-bottom: 1px solid rgba(255,107,0,0.3); }

    .wa-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      font-size: 14px !important;
      font-weight: 500;
      color: var(--muted) !important;
    }
    .wa-link:hover { color: #25D366 !important; }
    .wa-glyph {
      width: 17px;
      height: 17px;
      flex: none;
      fill: #25D366;
    }

    .service-list { display: flex; flex-direction: column; gap: 8px; }

    .fab-icon {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .wa-glyph-btn { width: 18px; height: 18px; fill: currentColor; flex: none; }

    /* The dots were a yellow circle emoji and a blue one. Kept as dots, but
     * now in the two services' actual brand colours, so they identify rather
     * than decorate. */
    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex: none;
    }
    .dot-yandex { background: #FCE000; }
    .dot-wolt   { background: #009DE0; }

    /* ─── FOOTER ──────────────────────────────── */
    footer {
      margin-top: 80px;
      padding: 32px 48px;
      border-top: 1px solid rgba(255,107,0,0.15);
      background: rgba(10,10,10,0.90);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-logo img {
      height: 40px;
    }

    .footer-links {
      display: flex;
      gap: 28px;
    }
    .footer-links a {
      font-family: var(--font-display);
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: color .25s;
    }
    .footer-links a:hover { color: var(--orange); }

    .footer-copy {
      color: rgba(255,255,255,0.28);
      font-size: 12px;
    }

    /* ─── FLOATING CART ───────────────────────── */
    .floating-cart {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 0;
      pointer-events: none;
    }

    .cart-total-bubble {
      background: rgba(20,20,20,0.92);
      border: 1px solid rgba(255,107,0,0.40);
      border-right: none;
      border-radius: 50px 0 0 50px;
      padding: 0 20px 0 18px;
      height: 56px;
      display: flex;
      align-items: center;
      font-size: 15px;
      font-weight: 700;
      color: var(--yellow);
      backdrop-filter: blur(12px);
      white-space: nowrap;
      max-width: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-width .4s ease, opacity .4s ease, padding .4s ease;
      pointer-events: auto;
    }
    .cart-total-bubble.visible {
      max-width: 220px;
      opacity: 1;
      padding: 0 20px 0 18px;
    }

    .cart-fab {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), #ff3d00);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 0 24px rgba(255,107,0,0.45), 0 4px 16px rgba(0,0,0,0.4);
      transition: box-shadow .3s, transform .2s;
      position: relative;
      pointer-events: auto;
      flex-shrink: 0;
    }
    .cart-fab:hover {
      box-shadow: 0 0 50px rgba(255,107,0,0.80), 0 6px 24px rgba(0,0,0,0.5);
      transform: scale(1.08);
    }
    .cart-fab .fab-badge {
      position: absolute;
      top: -4px; right: -4px;
      background: var(--yellow);
      color: #000;
      font-size: 11px;
      font-weight: 700;
      border-radius: 50%;
      width: 20px; height: 20px;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .cart-fab .fab-badge.show { display: flex; }

    /* ─── CART MODAL ─────────────────────────── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(6px);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }
    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-panel {
      position: fixed;
      bottom: 0; right: 0;
      width: 380px;
      max-height: 85vh;
      background: #141414;
      border: 1px solid rgba(255,107,0,0.25);
      border-radius: 24px 24px 0 0;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      transform: translateY(100%);
      transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1);
      box-shadow: 0 -20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,107,0,0.10);
    }
    .cart-panel.open {
      transform: translateY(0);
    }

    .cart-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px 16px;
      border-bottom: 1px solid rgba(255,107,0,0.12);
    }
    .cart-panel-header h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .cart-panel-header h3 span { color: var(--orange); }
    .cart-close {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 50%;
      width: 34px; height: 34px;
      cursor: pointer;
      color: var(--muted);
      font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, color .2s;
    }
    .cart-close:hover { background: rgba(255,107,0,0.15); color: #fff; }

    .cart-items-list {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cart-empty {
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      padding: 40px 0;
    }
    .cart-empty span { font-size: 40px; display: block; margin-bottom: 12px; }

    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,107,0,0.12);
      border-radius: 14px;
      padding: 14px 16px;
      gap: 12px;
    }
    .cart-item-name {
      font-size: 14px;
      font-weight: 700;
      flex: 1;
    }
    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .qty-btn {
      background: rgba(255,107,0,0.12);
      border: 1px solid rgba(255,107,0,0.25);
      border-radius: 8px;
      width: 28px; height: 28px;
      color: var(--orange);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
      line-height: 1;
    }
    .qty-btn:hover { background: rgba(255,107,0,0.28); }
    .qty-num {
      font-size: 15px;
      font-weight: 700;
      min-width: 20px;
      text-align: center;
    }
    .cart-item-price {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      color: var(--yellow);
      white-space: nowrap;
    }

    .cart-panel-footer {
      padding: 16px 24px 24px;
      border-top: 1px solid rgba(255,107,0,0.12);
    }
    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      font-size: 16px;
      font-weight: 700;
    }
    .cart-total-row .total-sum {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--yellow);
    }
    .btn-whatsapp {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 15px 24px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-family: var(--font-display);
      box-shadow: 0 0 24px rgba(37,211,102,0.35);
      transition: box-shadow .3s, transform .2s;
    }
    .btn-whatsapp:hover {
      box-shadow: 0 0 40px rgba(37,211,102,0.55);
      transform: translateY(-1px);
    }

    /* ─── TOAST ───────────────────────────────── */
    .toast {
      position: fixed;
      bottom: 100px;
      right: 30px;
      background: rgba(20,20,20,0.95);
      border: 1px solid rgba(255,107,0,0.35);
      color: #fff;
      padding: 14px 22px;
      border-radius: 14px;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      transform: translateY(20px);
      opacity: 0;
      transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 998;
      display: flex;
      align-items: center;
      gap: 8px;
      pointer-events: none;
    }
    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    /* ─── SCROLL BAR ──────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.4); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,107,0,0.7); }

    /* ─── BURGER MENU ────────────────────────── */
    .burger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 200;
    }
    .burger-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s;
    }
    .burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger-btn.open span:nth-child(2) { opacity: 0; }
    .burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 150;
    }
    .mobile-nav-overlay.open { display: block; }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 62px;
      left: 0; right: 0;
      background: rgba(12,12,12,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,107,0,0.20);
      z-index: 160;
      flex-direction: column;
      padding: 8px 0 16px;
      transform: translateY(-10px);
      opacity: 0;
      transition: transform .3s, opacity .3s;
    }
    .mobile-nav.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-nav a {
      padding: 16px 24px;
      color: var(--muted);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,107,0,0.08);
      transition: color .2s, background .2s;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--orange); background: rgba(255,107,0,0.06); }

    /* ─── HERO MOBILE IMAGE ───────────────────── */
    .hero-mobile-img-wrap {
      display: none;
      margin: 16px 16px 0;
      border-radius: 22px;
      border: 1.5px solid rgba(255,107,0,0.35);
      box-shadow: 0 0 24px rgba(255,107,0,0.14);
      overflow: hidden;
      animation: floatMobile 4s ease-in-out infinite;
    }
    .hero-mobile-img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    @keyframes floatMobile {
      0%, 100% { transform: translateY(0); box-shadow: 0 0 24px rgba(255,107,0,0.14); }
      50% { transform: translateY(-8px); box-shadow: 0 10px 32px rgba(255,107,0,0.24); }
    }

    /* ─── RESPONSIVE ──────────────────────────── */

    /* Tablet */
    @media (max-width: 1100px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-food-ring {
        width: min(400px, calc(100vh - 280px));
        height: min(400px, calc(100vh - 280px));
      }
    }

    /* Mobile */
    @media (max-width: 768px) {

      /* Header */
      header { padding: 10px 16px; }
      .logo-wrap img { height: 42px; }
      nav { display: none; }
      .burger-btn { display: flex; }

      /* Hero — hide desktop image, show mobile image block */
      .hero {
        min-height: auto;
        padding: 80px 16px 40px;
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-food-ring { display: none; }
      .hero-mobile-img-wrap { display: block; }
      .hero-content { max-width: 100%; width: 100%; }
      .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: -0.5px;
        margin-bottom: 14px;
      }
      .hero-desc { font-size: 14px; margin-bottom: 24px; }
      .btn-primary { font-size: 13px; padding: 14px 28px; }
      /* Three facts side by side would wrap mid-address on a phone, so they
       * stack instead — the address is the longest and needs a full line. */
      .hero-facts {
        gap: 12px;
        margin-top: 30px;
        flex-direction: column;
      }
      .fact dd { font-size: 13.5px; white-space: normal; }

      /* Section title */
      .section-title {
        font-size: clamp(16px, 5vw, 22px);
        padding: 10px 18px;
        letter-spacing: 0;
        white-space: normal;
        word-break: keep-all;
        max-width: calc(100vw - 40px);
      }
      .section-title::before,
      .section-title::after { display: none; }
      .section-header { margin-bottom: 32px; }

      /* Menu section */
      #menu {
        padding: 60px 16px 60px;
      }
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .card-icon { height: 160px; }

      /* Contact */
      #contact { padding: 60px 16px 0; }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .contact-card { padding: 22px 20px; }
      .contact-card-icon { font-size: 28px; margin-bottom: 10px; }

      /* Footer */
      footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
        gap: 16px;
      }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

      /* Cart panel — full width */
      .cart-panel {
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
      }

      /* Floating cart */
      .floating-cart { bottom: 20px; right: 16px; }
      .cart-fab { width: 52px; height: 52px; font-size: 22px; }
      .cart-total-bubble { font-size: 13px; height: 52px; }

      /* Toast */
      .toast {
        bottom: 90px;
        right: 16px;
        left: 16px;
        font-size: 12px;
        padding: 12px 16px;
      }
    }

    /* Very small screens */
    @media (max-width: 380px) {
      .hero-title { font-size: 26px; }

    }
