:root {
      --red: #FF0000;
      --dark: #270404;
      --amber: #FFB000;
      --cream: #F4FAFF;
      --red-dark: #cc0000;
      --amber-dark: #e09900;
      --glass: rgba(255,255,255,0.07);
      --shadow: 0 8px 32px rgba(39,4,4,0.18);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ===== PRELOADER ===== */
    .preloader {
      position: fixed; inset: 0; z-index: 99999;
      background: linear-gradient(135deg, #270404 0%, #1a0303 50%, #0d0101 100%);
      display: flex; align-items: center; justify-content: center;
      opacity: 1; visibility: visible; transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-content { text-align: center; position: relative; }
    .preloader-logo-wrap { position: relative; display: inline-block; margin-bottom: 1.2rem; }
    .preloader-logo {
      width: 100px; height: 100px; object-fit: contain;
      border-radius: 22px; position: relative; z-index: 2;
      animation: preloaderPop 2s ease-in-out infinite;
    }
    @keyframes preloaderPop {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }
    .preloader-pulse {
      position: absolute; inset: -16px; border-radius: 38px;
      background: radial-gradient(circle, rgba(255,0,0,0.4) 0%, transparent 70%);
      animation: preloaderPulse 1.5s ease-in-out infinite;
      z-index: 1;
    }
    @keyframes preloaderPulse {
      0%,100% { transform: scale(0.92); opacity: 0.5; }
      50% { transform: scale(1.15); opacity: 1; }
    }
    .preloader-brand {
      font-size: 2.2rem; font-weight: 900; color: #fff;
      letter-spacing: 2px; margin-bottom: 0.2rem;
    }
    .preloader-brand span { color: var(--amber); }
    .preloader-tagline {
      font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.4);
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .preloader-dots { display: flex; justify-content: center; gap: 8px; }
    .preloader-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--amber);
      animation: dotBounce 1.2s ease-in-out infinite;
    }
    .preloader-dot:nth-child(1) { animation-delay: 0s; }
    .preloader-dot:nth-child(2) { animation-delay: 0.15s; }
    .preloader-dot:nth-child(3) { animation-delay: 0.3s; }
    @keyframes dotBounce {
      0%,80%,100% { transform: translateY(0); opacity: 0.4; }
      40% { transform: translateY(-14px); opacity: 1; }
    }

    /* ===== GLOBAL LOADING OVERLAY ===== */
    .global-loading-overlay {
      position: fixed; inset: 0; z-index: 99998;
      background: rgba(39,4,4,0.85); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .global-loading-overlay.show { opacity: 1; visibility: visible; pointer-events: all; }
    .global-loading-box { text-align: center; }
    .global-loading-spinner-wrap { position: relative; display: inline-block; margin-bottom: 1.2rem; }
    .global-loading-logo {
      width: 64px; height: 64px; object-fit: contain;
      border-radius: 14px; position: relative; z-index: 2;
    }
    .global-loading-spinner {
      position: absolute; inset: -12px; border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: var(--amber);
      border-right-color: var(--red);
      animation: globalSpin 0.8s linear infinite;
      z-index: 1;
    }
    @keyframes globalSpin { to { transform: rotate(360deg); } }
    .global-loading-text {
      font-size: 0.9rem; font-weight: 700; color: #fff;
      letter-spacing: 1px; text-transform: uppercase;
    }

    html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    button, a, .btn-cart, .btn-order-now, .tab-btn, .btn-add-cart, .qty-btn { 
      touch-action: manipulation; 
      -webkit-tap-highlight-color: transparent;
    }
    input, select, textarea { font-size: 16px !important; } /* prevents iOS zoom */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: var(--dark);
      padding: 0 2rem;
      height: 70px;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 2px 24px rgba(0,0,0,0.4);
      transition: all 0.3s ease;
    }
    #navbar.scrolled {
      height: 62px;
      background: rgba(39,4,4,0.97);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(255,0,0,0.4);
      transition: transform 0.3s;
      background: var(--dark);
    }
    .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
    .nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.08); }
    .nav-logo-text { color: #fff; font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
    .nav-logo-text span { color: var(--amber); }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.5px; text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--amber);
      transform: scaleX(0); transition: transform 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-actions { display: flex; align-items: center; gap: 1rem; }
    .btn-cart {
      background: var(--glass);
      border: 1.5px solid rgba(255,255,255,0.15);
      color: #fff; padding: 8px 16px;
      border-radius: 50px; cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.82rem;
      display: flex; align-items: center; gap: 8px;
      transition: all 0.3s; backdrop-filter: blur(8px);
    }
    .btn-cart:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
    .cart-count {
      background: var(--red); color: #fff;
      width: 20px; height: 20px; border-radius: 50%;
      font-size: 0.7rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s;
    }
    .cart-count.bump { animation: bump 0.3s ease; }
    @keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }
    .btn-order-now {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none;
      padding: 10px 22px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.85rem;
      cursor: pointer; text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 18px rgba(255,0,0,0.35);
      transition: all 0.3s;
    }
    .btn-order-now:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.45); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* ===== MOBILE DRAWER ===== */
    .mobile-drawer {
      position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px;
      height: 100vh; background: var(--dark);
      z-index: 1100; padding: 80px 2rem 2rem;
      transition: left 0.4s cubic-bezier(0.77,0,0.175,1);
      overflow-y: auto; box-shadow: 4px 0 40px rgba(0,0,0,0.5);
    }
    .mobile-drawer.open { left: 0; }
    .drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.6); z-index: 1050;
      opacity: 0; pointer-events: none; transition: opacity 0.4s;
    }
    .drawer-overlay.show { opacity: 1; pointer-events: all; }
    .drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .drawer-nav li a {
      display: block; color: rgba(255,255,255,0.85);
      text-decoration: none; font-size: 1rem; font-weight: 600;
      letter-spacing: 0.5px; padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s, padding-left 0.2s;
    }
    .drawer-nav li a:hover { color: var(--amber); padding-left: 8px; }
    .drawer-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
    .drawer-order-btn {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none; padding: 14px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.95rem;
      cursor: pointer; text-align: center; letter-spacing: 0.5px;
    }
    .drawer-contact { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-align: center; line-height: 1.8; }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      background: var(--dark);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding-top: 70px;
    }
    .hero-bg-gradient {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(255,0,0,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 10% 80%, rgba(255,176,0,0.08) 0%, transparent 50%),
                  linear-gradient(135deg, #270404 0%, #1a0303 50%, #0d0101 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto;
      padding: 4rem 2rem;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 1.5rem; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,176,0,0.15);
      border: 1px solid rgba(255,176,0,0.3);
      color: var(--amber); padding: 6px 16px;
      border-radius: 50px; font-size: 0.78rem;
      font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 1.2rem;
      backdrop-filter: blur(8px);
    }
    .hero-badge img.flag-icon {
      width: 22px; height: 16px;
      object-fit: cover; border-radius: 3px;
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 0.5rem;
    }
    .hero-title .brand { color: var(--amber); display: block; }
    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: var(--red); font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .hero-desc {
      color: rgba(255,255,255,0.65);
      font-size: 1rem; line-height: 1.8; font-weight: 400;
      margin-bottom: 2.5rem; max-width: 480px;
    }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none; padding: 16px 36px;
      border-radius: 50px; font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 0.95rem; cursor: pointer;
      text-transform: uppercase; letter-spacing: 1px;
      box-shadow: 0 6px 30px rgba(255,0,0,0.4); transition: all 0.3s;
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,0,0,0.5); }
    .btn-hero-secondary {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.3);
      padding: 14px 32px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.95rem; cursor: pointer;
      text-transform: uppercase; letter-spacing: 1px;
      transition: all 0.3s; backdrop-filter: blur(8px);
    }
    .btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }
    .hero-stats { display: flex; gap: 2.5rem; }
    .hero-stat { color: rgba(255,255,255,0.8); }
    .hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--amber); display: block; }
    .hero-stat-label { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); }
    .hero-image-wrapper {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .hero-glow {
      position: absolute; width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(255,0,0,0.3) 0%, transparent 70%);
      border-radius: 50%; animation: pulse-glow 3s ease-in-out infinite;
    }
    @keyframes pulse-glow { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.1);opacity:1} }
    .hero-food-img {
      width: 100%; max-width: 520px;
      border-radius: 24px; position: relative; z-index: 1;
      filter: drop-shadow(0 20px 60px rgba(255,0,0,0.3));
      animation: float 4s ease-in-out infinite;
      object-fit: cover; aspect-ratio: 1;
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
    .hero-floating-badge {
      position: absolute;
      background: linear-gradient(135deg, var(--amber), #e09900);
      color: var(--dark); padding: 10px 18px; border-radius: 16px;
      font-weight: 800; font-size: 0.85rem; z-index: 3;
      box-shadow: 0 6px 20px rgba(255,176,0,0.4);
      animation: float-badge 3.5s ease-in-out infinite;
    }
    .hero-floating-badge.top-right { top: 10%; right: 0; }
    .hero-floating-badge.bottom-left { bottom: 15%; left: 0; }
    @keyframes float-badge { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(2deg)} }

    /* ===== PROMO STRIP ===== */
    #promo-strip {
      background: linear-gradient(135deg, var(--red), #cc0000);
      padding: 1rem 0; overflow: hidden; position: relative;
    }
    .promo-track {
      display: flex; gap: 3rem;
      animation: scroll-promo 25s linear infinite;
      width: max-content;
    }
    #promo-strip:hover .promo-track { animation-play-state: paused; }
    @keyframes scroll-promo { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    .promo-item {
      display: flex; align-items: center; gap: 10px;
      white-space: nowrap; color: #fff;
      font-weight: 700; font-size: 0.88rem;
      letter-spacing: 0.5px; text-transform: uppercase;
    }
    .promo-item i { color: var(--amber); font-size: 0.9rem; }
    .promo-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

    /* ===== DEALS SECTION ===== */
    #deals {
      padding: 5rem 2rem;
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    #deals::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,176,0,0.06), transparent 70%);
      border-radius: 50%;
    }
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-tag {
      display: inline-block;
      background: rgba(255,0,0,0.15);
      border: 1px solid rgba(255,0,0,0.3); color: var(--red);
      padding: 5px 14px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900; color: #fff; line-height: 1.2;
    }
    .section-title span { color: var(--amber); }
    .section-title.dark { color: var(--dark); }
    .section-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; margin-top: 0.5rem; }
    .section-subtitle.dark { color: rgba(39,4,4,0.6); }
    .deals-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
    }
    .deal-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 1.5rem;
      display: flex; align-items: center; gap: 1.2rem;
      transition: all 0.3s; cursor: pointer;
      backdrop-filter: blur(10px);
      position: relative; overflow: hidden;
    }
    .deal-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,0,0,0.08), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .deal-card:hover { transform: translateY(-4px); border-color: rgba(255,176,0,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
    .deal-card:hover::before { opacity: 1; }
    .deal-img-wrap { width: 90px; height: 90px; border-radius: 16px; overflow: hidden; flex-shrink: 0; }
    .deal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .deal-info { flex: 1; }
    .deal-badge {
      background: var(--red); color: #fff;
      padding: 2px 10px; border-radius: 50px;
      font-size: 0.68rem; font-weight: 700;
      display: inline-block; margin-bottom: 0.4rem;
    }
    .deal-name { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
    .deal-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; }
    .deal-price { color: var(--amber); font-weight: 900; font-size: 1.1rem; margin-top: 0.4rem; }
    .deal-price span { text-decoration: line-through; color: rgba(255,255,255,0.3); font-size: 0.8rem; font-weight: 400; margin-left: 6px; }

    /* ===== MENU SECTION ===== */
    #menu { padding: 5rem 2rem; background: var(--cream); }
    .menu-container { max-width: 1200px; margin: 0 auto; }
    .category-tabs {
      display: flex; gap: 0.8rem; flex-wrap: wrap;
      margin-bottom: 2.5rem; justify-content: center;
    }
    .tab-btn {
      background: #fff; border: 2px solid rgba(39,4,4,0.1); color: var(--dark);
      padding: 10px 22px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem; font-weight: 700; cursor: pointer;
      transition: all 0.3s; display: flex; align-items: center; gap: 8px;
      letter-spacing: 0.3px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .tab-btn i { font-size: 0.85rem; }
    .tab-btn.active, .tab-btn:hover {
      background: var(--red); border-color: var(--red); color: #fff;
      box-shadow: 0 6px 20px rgba(255,0,0,0.3); transform: translateY(-2px);
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .food-card {
      background: #fff; border-radius: 24px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(39,4,4,0.08);
      transition: all 0.3s; position: relative; animation: fadeIn 0.4s ease;
    }
    @keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
    .food-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(39,4,4,0.14); }
    .food-card-img-wrap { height: 200px; overflow: hidden; position: relative; }
    .food-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .food-card:hover .food-card-img-wrap img { transform: scale(1.06); }
    .food-category-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--dark); color: var(--amber);
      padding: 4px 12px; border-radius: 50px;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.5px; text-transform: uppercase;
    }
    .food-hot-badge {
      position: absolute; top: 12px; right: 12px;
      background: var(--red); color: #fff;
      width: 34px; height: 34px; border-radius: 50%;
      font-size: 0.6rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      text-transform: uppercase;
    }
    .food-card-body { padding: 1.2rem; }
    .food-name { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.3; }
    .food-desc { font-size: 0.78rem; color: rgba(39,4,4,0.55); line-height: 1.6; margin-bottom: 1rem; }
    .food-card-footer { display: flex; align-items: center; justify-content: space-between; }
    .food-price { font-size: 1.3rem; font-weight: 900; color: var(--dark); }
    .food-price .currency { font-size: 0.85rem; color: var(--red); font-weight: 700; }
    .food-price .old-price { text-decoration: line-through; color: rgba(39,4,4,0.35); font-size: 0.8rem; font-weight: 500; margin-left: 6px; }
    .btn-add-cart {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none; width: 40px; height: 40px;
      border-radius: 12px; font-size: 1.1rem; cursor: pointer;
      transition: all 0.3s; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(255,0,0,0.3);
    }
    .btn-add-cart:hover { transform: scale(1.12); box-shadow: 0 8px 20px rgba(255,0,0,0.45); }
    .quantity-controls { display: flex; align-items: center; gap: 8px; }
    .qty-btn {
      width: 30px; height: 30px; border-radius: 8px; border: none;
      cursor: pointer; font-size: 1rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; transition: all 0.2s;
    }
    .qty-btn.minus { background: rgba(255,0,0,0.1); color: var(--red); }
    .qty-btn.plus { background: var(--red); color: #fff; }
    .qty-btn:hover { transform: scale(1.12); }
    .qty-num { font-weight: 800; font-size: 0.95rem; color: var(--dark); min-width: 20px; text-align: center; }

    /* ===== STICKY CART BAR ===== */
    #cart-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
      background: linear-gradient(135deg, var(--dark), #1a0303);
      border-top: 2px solid rgba(255,0,0,0.3);
      padding: 0.9rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
      box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    }
    #cart-bar.visible { transform: translateY(0); }
    .cart-bar-info { display: flex; align-items: center; gap: 1rem; }
    .cart-bar-icon {
      width: 44px; height: 44px; background: rgba(255,0,0,0.15);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.1rem;
    }
    .cart-bar-text { color: #fff; }
    .cart-bar-count { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
    .cart-bar-total { font-size: 1.1rem; font-weight: 900; }
    .cart-bar-total .cur { color: var(--amber); }
    .cart-bar-right { display: flex; align-items: center; gap: 1rem; }
    .btn-view-cart {
      background: rgba(255,255,255,0.1); color: #fff;
      border: 1.5px solid rgba(255,255,255,0.2);
      padding: 10px 20px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.82rem; cursor: pointer; transition: all 0.3s;
    }
    .btn-view-cart:hover { background: rgba(255,255,255,0.18); }
    .btn-checkout-bar {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none; padding: 10px 24px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.85rem; cursor: pointer;
      box-shadow: 0 4px 18px rgba(255,0,0,0.4); transition: all 0.3s;
      display: flex; align-items: center; gap: 8px;
    }
    .btn-checkout-bar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.5); }

    /* ===== CART SIDEBAR ===== */
    .cart-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1200;
      opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(4px);
    }
    .cart-overlay.show { opacity: 1; pointer-events: all; }
    #cart-sidebar {
      position: fixed; top: 0; right: -100%;
      width: 440px; max-width: 100vw; height: 100vh;
      background: #fff; z-index: 1300;
      transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
      display: flex; flex-direction: column;
      box-shadow: -8px 0 40px rgba(0,0,0,0.2); overflow: hidden;
    }
    #cart-sidebar.open { right: 0; }
    .cart-header {
      background: var(--dark); padding: 1.2rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
    }
    .cart-header h3 { color: #fff; font-size: 1.1rem; font-weight: 800; }
    .cart-header h3 span { color: var(--amber); }
    .close-cart {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(255,255,255,0.1); border: none; color: #fff;
      cursor: pointer; font-size: 1rem;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s;
    }
    .close-cart:hover { background: rgba(255,0,0,0.3); }
    .cart-tabs { display: flex; border-bottom: 1px solid rgba(39,4,4,0.1); flex-shrink: 0; }
    .cart-tab {
      flex: 1; padding: 12px; border: none; background: #fff;
      font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
      color: rgba(39,4,4,0.4); cursor: pointer;
      border-bottom: 3px solid transparent; transition: all 0.3s;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .cart-tab.active { color: var(--red); border-bottom-color: var(--red); }
    .cart-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 1rem 1.5rem; }
    .cart-empty {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      height: 100%; color: rgba(39,4,4,0.35); text-align: center;
    }
    .cart-empty i { font-size: 4rem; margin-bottom: 1rem; color: rgba(39,4,4,0.15); }
    .cart-empty p { font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; }
    .cart-empty small { font-size: 0.8rem; }
    .cart-item {
      display: flex; gap: 1rem; align-items: center;
      padding: 1rem 0; border-bottom: 1px solid rgba(39,4,4,0.07);
      animation: fadeIn 0.3s ease;
    }
    .cart-item-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
    .cart-item-details { flex: 1; }
    .cart-item-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 3px; }
    .cart-item-price { color: var(--red); font-weight: 800; font-size: 0.88rem; }
    .cart-item-controls { display: flex; align-items: center; gap: 6px; }
    .cart-qty-btn {
      width: 26px; height: 26px; border-radius: 7px; border: none;
      cursor: pointer; font-weight: 700; font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center; transition: all 0.2s;
    }
    .cart-qty-btn.minus { background: rgba(255,0,0,0.1); color: var(--red); }
    .cart-qty-btn.plus { background: var(--red); color: #fff; }
    .cart-qty-btn:hover { transform: scale(1.1); }
    .cart-qty-num { font-weight: 800; font-size: 0.88rem; min-width: 18px; text-align: center; }
    .cart-item-remove {
      background: none; border: none; color: rgba(39,4,4,0.3);
      cursor: pointer; font-size: 0.9rem; padding: 4px; transition: color 0.2s;
    }
    .cart-item-remove:hover { color: var(--red); }
    .cart-summary-box {
      background: rgba(39,4,4,0.04); border-radius: 16px; padding: 1rem; margin-top: 1rem;
    }
    .cart-summary-row {
      display: flex; justify-content: space-between;
      font-size: 0.85rem; padding: 4px 0; color: rgba(39,4,4,0.65);
    }
    .cart-summary-row.total {
      font-size: 1rem; font-weight: 900; color: var(--dark);
      border-top: 1px solid rgba(39,4,4,0.12); margin-top: 6px; padding-top: 10px;
    }
    .cart-summary-row.total span:last-child { color: var(--red); }
    .checkout-form { padding-bottom: 1rem; }
    .form-section-title {
      font-size: 0.82rem; font-weight: 800; color: var(--dark);
      text-transform: uppercase; letter-spacing: 0.5px;
      margin: 1.2rem 0 0.8rem; display: flex; align-items: center; gap: 6px;
    }
    .form-section-title i { color: var(--red); }
    .form-group { margin-bottom: 0.8rem; }
    .form-group label {
      display: block; font-size: 0.75rem; font-weight: 700;
      color: rgba(39,4,4,0.6); margin-bottom: 5px;
      text-transform: uppercase; letter-spacing: 0.3px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 2px solid rgba(39,4,4,0.1); border-radius: 12px;
      font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
      color: var(--dark); outline: none; transition: border-color 0.3s; background: #fff;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,0,0,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 70px; }
    .cart-footer {
      padding: 1rem 1.5rem; border-top: 1px solid rgba(39,4,4,0.08);
      flex: 0 0 auto; flex-shrink: 0; background: #fff; position: relative; z-index: 2;
    }
    .btn-whatsapp-order {
      width: 100%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff; border: none; padding: 14px; border-radius: 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 0.95rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      box-shadow: 0 6px 24px rgba(37,211,102,0.35); transition: all 0.3s;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .btn-whatsapp-order:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
    .btn-whatsapp-order i { font-size: 1.2rem; }
    .mobile-send-order { display: none; }

    /* ===== ABOUT SECTION ===== */
    #about { padding: 5rem 2rem; background: var(--dark); position: relative; overflow: hidden; }
    .about-container { max-width: 1200px; margin: 0 auto; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-img-stack { position: relative; height: 420px; }
    .about-img-main {
      position: absolute; width: 78%; height: 320px;
      border-radius: 24px; object-fit: cover; right: 0; top: 0;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .about-img-secondary {
      position: absolute; width: 55%; height: 200px;
      border-radius: 20px; object-fit: cover; left: 0; bottom: 0;
      box-shadow: 0 16px 40px rgba(0,0,0,0.5); border: 4px solid var(--dark);
    }
    .about-floater {
      position: absolute; right: -10px; bottom: 60px;
      background: var(--amber); color: var(--dark);
      padding: 12px 16px; border-radius: 16px;
      font-weight: 900; font-size: 0.88rem;
      box-shadow: 0 8px 24px rgba(255,176,0,0.4); z-index: 2;
    }
    .about-floater small { display: block; font-size: 0.65rem; font-weight: 600; color: rgba(39,4,4,0.6); }
    .about-logo-icon {
      width: 64px; height: 64px; border-radius: 18px; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.08); margin-bottom: 1rem;
    }
    .about-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
    .about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
    .about-feature {
      display: flex; gap: 1rem; align-items: flex-start; padding: 1rem;
      background: rgba(255,255,255,0.04); border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.07); transition: all 0.3s;
    }
    .about-feature:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,176,0,0.2); }
    .feature-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, rgba(255,0,0,0.2), rgba(255,0,0,0.1));
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.1rem; flex-shrink: 0;
    }
    .feature-text h4 { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
    .feature-text p { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; }

    /* ===== CONTACT SECTION ===== */
    #contact { padding: 5rem 2rem; background: var(--cream); }
    .contact-container { max-width: 800px; margin: 0 auto; }
    .contact-cards {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem; margin-bottom: 3rem;
    }
    .contact-card {
      background: #fff; border-radius: 20px; padding: 1.5rem; text-align: center;
      box-shadow: 0 4px 20px rgba(39,4,4,0.07); cursor: pointer;
      transition: all 0.3s; border: 2px solid transparent;
    }
    .contact-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 12px 40px rgba(255,0,0,0.12); }
    .contact-card-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin: 0 auto 1rem;
    }
    .contact-card-icon.green { background: rgba(37,211,102,0.1); color: #25D366; }
    .contact-card-icon.red { background: rgba(255,0,0,0.1); color: var(--red); }
    .contact-card-icon.amber { background: rgba(255,176,0,0.1); color: var(--amber); }
    .contact-card h4 { font-weight: 800; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.3rem; }
    .contact-card p { font-size: 0.78rem; color: rgba(39,4,4,0.55); line-height: 1.6; }
    .feedback-form-wrap {
      background: #fff; border-radius: 24px; padding: 2rem;
      box-shadow: 0 4px 30px rgba(39,4,4,0.08);
    }
    .feedback-form-wrap h3 {
      font-size: 1.2rem; font-weight: 900; color: var(--dark);
      margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px;
    }
    .feedback-form-wrap h3 i { color: var(--red); }
    .feedback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feedback-full { grid-column: span 2; }
    .btn-feedback-submit {
      background: linear-gradient(135deg, var(--red), #cc0000);
      color: #fff; border: none; padding: 13px 32px; border-radius: 12px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.9rem; cursor: pointer;
      transition: all 0.3s; display: flex; align-items: center; gap: 8px; margin-top: 0.5rem;
    }
    .btn-feedback-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.35); }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
      padding: 1rem; backdrop-filter: blur(6px);
    }
    .modal-overlay.show { opacity: 1; pointer-events: all; }
    .modal-box {
      background: #fff; border-radius: 28px;
      max-width: 500px; width: 100%; overflow: hidden;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
      max-height: 90vh; overflow-y: auto;
    }
    .modal-overlay.show .modal-box { transform: scale(1) translateY(0); }
    .receipt-header {
      background: linear-gradient(135deg, var(--dark), #1a0303);
      padding: 2rem; text-align: center;
    }
    .receipt-logo { color: var(--amber); font-size: 2rem; font-weight: 900; letter-spacing: 2px; }
    .receipt-logo small { display: block; color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 400; letter-spacing: 1px; }
    .receipt-check {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.6rem; margin: 0 auto 1rem;
    }
    .receipt-body { padding: 1.5rem; }
    .receipt-order-id { text-align: center; margin-bottom: 1.5rem; }
    .receipt-order-id small { font-size: 0.75rem; color: rgba(39,4,4,0.5); display: block; margin-bottom: 4px; }
    .receipt-order-id strong { font-size: 1.2rem; color: var(--dark); }
    .receipt-items { margin-bottom: 1rem; }
    .receipt-item {
      display: flex; justify-content: space-between;
      padding: 6px 0; font-size: 0.85rem;
      border-bottom: 1px dashed rgba(39,4,4,0.1);
    }
    .receipt-item span:first-child { color: rgba(39,4,4,0.7); }
    .receipt-item span:last-child { font-weight: 700; color: var(--dark); }
    .receipt-total {
      display: flex; justify-content: space-between;
      font-size: 1rem; font-weight: 900; color: var(--dark); padding: 10px 0 0;
    }
    .receipt-total span:last-child { color: var(--red); }
    .receipt-customer { background: rgba(39,4,4,0.04); border-radius: 12px; padding: 1rem; margin: 1rem 0; }
    .receipt-customer-row { font-size: 0.8rem; color: rgba(39,4,4,0.65); margin-bottom: 4px; }
    .receipt-customer-row strong { color: var(--dark); }
    .receipt-whatsapp-btn {
      width: 100%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff; border: none; padding: 14px; border-radius: 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 0.9rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 1rem; transition: all 0.3s;
    }
    .receipt-whatsapp-btn:hover { transform: translateY(-2px); }

    /* ===== FOOTER ===== */
    #footer { background: var(--dark); padding: 4rem 2rem 0; position: relative; overflow: hidden; }
    #footer::before {
      content: ''; position: absolute; top: -80px; left: 50%;
      transform: translateX(-50%); width: 600px; height: 200px;
      background: radial-gradient(circle, rgba(255,0,0,0.08), transparent 70%);
    }
    .footer-container { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
    .footer-logo-icon {
      width: 52px; height: 52px; border-radius: 14px; overflow: hidden;
      background: rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(255,0,0,0.2);
    }
    .footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
    .footer-logo-name { color: #fff; font-size: 1.6rem; font-weight: 900; }
    .footer-logo-name span { color: var(--amber); }
    .footer-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; text-decoration: none; transition: all 0.3s;
    }
    .social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); }
    .footer-col h4 {
      color: #fff; font-size: 0.88rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem;
      position: relative; padding-bottom: 10px;
    }
    .footer-col h4::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 30px; height: 2px; background: var(--red);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a {
      color: rgba(255,255,255,0.45); text-decoration: none;
      font-size: 0.82rem; font-weight: 500; transition: all 0.2s;
      display: flex; align-items: center; gap: 6px;
    }
    .footer-links a:hover { color: var(--amber); padding-left: 6px; }
    .footer-links a i { font-size: 0.65rem; color: var(--red); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.9rem; }
    .footer-contact-icon {
      width: 32px; height: 32px; background: rgba(255,0,0,0.1);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 0.8rem; flex-shrink: 0; margin-top: 1px;
    }
    .footer-contact-text { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; }
    .footer-contact-text strong { color: rgba(255,255,255,0.8); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 2px; }
    .footer-delivery {
      background: linear-gradient(135deg, rgba(255,176,0,0.1), rgba(255,176,0,0.05));
      border: 1px solid rgba(255,176,0,0.2); border-radius: 16px; padding: 1rem; margin-top: 1rem;
    }
    .footer-delivery h5 { color: var(--amber); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
    .footer-delivery p { color: rgba(255,255,255,0.5); font-size: 0.75rem; line-height: 1.6; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
    .footer-bottom a { color: var(--amber); text-decoration: none; }
    .footer-bottom-right { display: flex; gap: 1rem; }
    .footer-bottom-right a { color: rgba(255,255,255,0.3); font-size: 0.75rem; text-decoration: none; transition: color 0.2s; }
    .footer-bottom-right a:hover { color: #fff; }

    /* ===== TOAST ===== */
    .toast {
      position: fixed; bottom: 90px; right: 20px;
      background: var(--dark); color: #fff; padding: 12px 20px;
      border-radius: 14px; font-size: 0.85rem; font-weight: 600;
      z-index: 5000; display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
      transform: translateX(120%);
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
      border-left: 3px solid var(--amber); max-width: 300px;
    }
    .toast.show { transform: translateX(0); }
    .toast i { color: var(--amber); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 480px) {
      .preloader-logo { width: 70px; height: 70px; border-radius: 16px; }
      .preloader-brand { font-size: 1.6rem; }
      .preloader-tagline { font-size: 0.7rem; letter-spacing: 2px; }
      .preloader-dot { width: 7px; height: 7px; }
      .global-loading-logo { width: 48px; height: 48px; border-radius: 10px; }
    }

    @media (max-width: 1200px) {
      .hero-glow { width: 340px; height: 340px; }
    }
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-img-stack { height: 280px; }
      .hero-content { gap: 2rem; }
      .hero-food-img { max-width: 420px; }
      .about-features { gap: 0.7rem; }
      .hero-stats { gap: 1.5rem; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-actions .btn-order-now { display: none; }
      .hamburger { display: flex; }
      #navbar { padding: 0 1.2rem; height: 64px; }
      .hero-content { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.2rem; }
      .hero-image-wrapper { order: -1; margin-top: 1rem; }
      .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
      .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
      .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
      .hero-food-img { max-width: 280px; }
      .hero-glow { width: 260px; height: 260px; }
      .hero-floating-badge { font-size: 0.72rem; padding: 8px 12px; }
      .hero-floating-badge.top-right { right: 2%; top: 5%; }
      .hero-floating-badge.bottom-left { left: 2%; bottom: 10%; }
      .hero-desc { margin: 0 auto 2rem; }
      .hero-title { font-size: clamp(2rem, 7vw, 3.2rem); }
      #deals, #menu, #about, #contact { padding: 3.5rem 1.2rem; }
      .about-img-stack { height: 220px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .feedback-grid { grid-template-columns: 1fr; }
      .feedback-full { grid-column: span 1; }
      .category-tabs { gap: 0.5rem; }
      .tab-btn { padding: 8px 14px; font-size: 0.75rem; }
      .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
      .deals-grid { grid-template-columns: 1fr; }
      .deal-card { flex-direction: column; text-align: center; }
      .deal-img-wrap { width: 100%; height: 160px; }
      .food-card-img-wrap { height: 170px; }
      .contact-cards { grid-template-columns: 1fr; }
      .section-title { font-size: 1.6rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom-right { justify-content: center; }

      /* Cart sidebar full-width on tablet */
      #cart-sidebar { width: 100%; max-width: 100vw; }
      .cart-bar-right .btn-view-cart { display: none; }
      .cart-tab { font-size: 0.7rem; padding: 10px 6px; }
      .cart-bar-total { font-size: 0.95rem; }
      .btn-checkout-bar { padding: 8px 16px; font-size: 0.75rem; }
      .cart-header { padding: 1rem 1.2rem; }
      .cart-body { padding: 0.8rem 1.2rem; }
      .cart-footer { padding: 0.8rem 1.2rem; }
      .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 12px 14px; }
      .checkout-form { padding-bottom: 0.5rem; }
      .form-section-title { font-size: 0.76rem; margin: 1rem 0 0.6rem; }

      /* Receipt modal */
      #receiptModal .modal-box { margin: 0 0.5rem; max-height: 85vh; border-radius: 20px; }
      .receipt-header { padding: 1.2rem; }
      .receipt-body { padding: 1rem; }
      .receipt-logo { font-size: 1.5rem; }
    }
    @media (max-width: 480px) {
      #navbar { padding: 0 0.8rem; height: 60px; }
      .nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; }
      .nav-logo-icon img { object-fit: contain; }
      .nav-logo-text { font-size: 1.2rem; }
      .hero-title { font-size: 1.9rem; }
      .hero-content { padding: 1.5rem 0.8rem; }
      .hero-food-img { max-width: 220px; }
      .hero-glow { width: 200px; height: 200px; }
      .hero-floating-badge { font-size: 0.65rem; padding: 6px 10px; border-radius: 10px; }
      .hero-floating-badge.top-right { right: 0; top: 2%; }
      .hero-floating-badge.bottom-left { left: 0; bottom: 8%; }
      .hero-stats { gap: 1rem; }
      .hero-stat-num { font-size: 1.4rem; }
      .hero-stat-label { font-size: 0.65rem; }
      .hero-desc { font-size: 0.85rem; }
      .deals-grid { grid-template-columns: 1fr; }
      .food-card-img-wrap { height: 150px; }
      .food-card-body { padding: 1rem; }
      .food-name { font-size: 0.9rem; }
      .food-desc { font-size: 0.72rem; }
      .food-price { font-size: 1.1rem; }
      .about-img-stack { height: 180px; }
      .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .footer-logo-name { font-size: 1.3rem; }
      .footer-delivery { padding: 0.8rem; }
      .btn-hero-primary, .btn-hero-secondary { font-size: 0.82rem; padding: 12px 20px; }
      .promo-item { font-size: 0.72rem; }
      .menu-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
      .category-tabs { gap: 0.35rem; }
      .tab-btn { padding: 7px 10px; font-size: 0.68rem; }
      .section-title { font-size: 1.4rem; }
      .section-tag { font-size: 0.65rem; }
      .contact-card { padding: 1rem; }
      .modal-box { border-radius: 20px; }

      /* === CART SIDEBAR MOBILE === */
      #cart-sidebar { width: 100%; max-width: 100vw; height: 100dvh; min-height: 100svh; border-radius: 0; }
      .cart-header { padding: 1rem; }
      .cart-header h3 { font-size: 1rem; }
      .cart-body { padding: 0.6rem 1rem; }
      .cart-tab { font-size: 0.68rem; padding: 10px 4px; letter-spacing: 0; }
      .cart-item { gap: 0.7rem; padding: 0.8rem 0; }
      .cart-item-img { width: 52px; height: 52px; border-radius: 10px; }
      .cart-item-name { font-size: 0.8rem; }
      .cart-item-price { font-size: 0.8rem; }
      .cart-qty-btn { width: 24px; height: 24px; border-radius: 6px; font-size: 0.75rem; }
      .cart-qty-num { font-size: 0.8rem; }
      .cart-item-remove { font-size: 0.8rem; }
      .cart-summary-box { padding: 0.8rem; border-radius: 12px; }
      .cart-summary-row { font-size: 0.78rem; }
      .cart-footer { padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom)); }
      .btn-whatsapp-order { padding: 12px; font-size: 0.85rem; border-radius: 12px; }
      .checkout-form { padding-bottom: 1rem; }
      .mobile-send-order {
        display: flex; width: 100%; margin-top: 1rem; padding: 14px;
        align-items: center; justify-content: center; gap: 10px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #fff; border: none; border-radius: 12px;
        font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
        font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
        box-shadow: 0 6px 24px rgba(37,211,102,0.35);
      }
      .form-group { margin-bottom: 0.6rem; }
      .form-group label { font-size: 0.7rem; }
      .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 11px 12px; border-radius: 10px; }
      .form-section-title { font-size: 0.72rem; margin: 0.8rem 0 0.5rem; }

      /* === STICKY CART BAR MOBILE === */
      #cart-bar { padding: 0.7rem 0.8rem; }
      #cart-bar.visible { padding-bottom: calc(0.7rem + env(safe-area-inset-bottom)); z-index: 1400; }
      .cart-bar-info { gap: 0.5rem; }
      .cart-bar-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 0.9rem; }
      .btn-checkout-bar { padding: 7px 12px; font-size: 0.7rem; }
      .btn-checkout-bar i { font-size: 0.7rem; }
      .cart-bar-count { font-size: 0.7rem; }
      .cart-bar-total { font-size: 0.88rem; }

      /* === PAYMENT MODAL MOBILE === */
      .pay-modal-box { max-width: 100%; margin: 0; border-radius: 24px 24px 16px 16px; max-height: 93vh; }
      .pay-amount-value { font-size: 2rem; }
      .pay-amount-card { margin: 0.8rem 1rem; padding: 1rem; }
      .pay-header { padding: 1rem 1rem 0; }
      .pay-body { padding: 0.3rem 1rem 0.8rem; }
      .pay-pin-grid { gap: 10px; }
      .pay-pin-cell { width: 44px; height: 50px; font-size: 1.2rem; border-radius: 12px; }
      .pay-num-input { font-size: 0.95rem; }
      .pay-action-btn { padding: 14px; font-size: 0.9rem; border-radius: 14px; }
      .pay-spinner { width: 52px; height: 52px; border-width: 4px; }
      .pay-push-icon { font-size: 1.6rem; }

      /* === RECEIPT MOBILE === */
      #receiptModal .modal-box { margin: 0 auto; width: 95%; max-height: 88vh; border-radius: 20px; }
      .receipt-header { padding: 1rem; }
      .receipt-check { width: 48px; height: 48px; font-size: 1.3rem; }
      .receipt-body { padding: 0.8rem 1rem; }
      .receipt-item { font-size: 0.8rem; }
      .receipt-whatsapp-btn { padding: 12px; font-size: 0.85rem; }
    }
    @media (max-width: 380px) {
      .menu-grid { grid-template-columns: 1fr; }
      .hero-food-img { max-width: 170px; }
      .hero-title { font-size: 1.65rem; }
      .hero-subtitle { font-size: 0.8rem; }
      .tab-btn { padding: 6px 9px; font-size: 0.62rem; }
      .food-card-img-wrap { height: 180px; }
      .cart-tab { font-size: 0.62rem; padding: 8px 2px; }
      .pay-pin-cell { width: 40px; height: 46px; font-size: 1.1rem; gap: 8px; }
      .pay-pin-grid { gap: 7px; }
      .pay-amount-value { font-size: 1.7rem; }
    }
    @media (max-width: 320px) {
      .pay-pin-cell { width: 36px; height: 42px; font-size: 1rem; border-radius: 10px; }
      .pay-pin-grid { gap: 6px; }
      .cart-tab { font-size: 0.58rem; padding: 8px 1px; }
    }
    .slide-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
    .slide-up.visible { opacity: 1; transform: translateY(0); }

    /* ===== PAYMENT METHOD SELECTOR ===== */
    .pay-option {
      display: flex; align-items: center; gap: 0;
      cursor: pointer; border: 2px solid rgba(39,4,4,0.1);
      border-radius: 14px; overflow: hidden; transition: all 0.25s;
    }
    .pay-option:hover { border-color: rgba(39,4,4,0.25); box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
    .pay-option input[type="radio"] { display: none; }
    .pay-option input[type="radio"]:checked + .pay-badge + .pay-info + .pay-tick i { display: block; }
    .pay-badge {
      width: 52px; padding: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
    }
    .pay-info { padding: 10px 14px; flex: 1; }
    .pay-info strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); }
    .pay-info small { font-size: 0.73rem; color: rgba(39,4,4,0.5); }
    .pay-tick { padding: 0 14px; font-size: 1rem; }

    /* ===== PAYMENT MODAL — JUMIA / KiKUU STYLE ===== */
    .pay-modal-box {
      background: #fff; border-radius: 24px; max-width: 440px; width: calc(100% - 2rem);
      overflow: hidden; transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
      max-height: 95vh; overflow-y: auto;
      box-shadow: 0 25px 70px rgba(0,0,0,0.4);
      margin: 0 auto;
    }
    .modal-overlay.show .pay-modal-box { transform: scale(1) translateY(0); }
    .pay-top-bar {
      height: 6px; transition: background 0.3s;
    }
    .pay-close-btn {
      position: absolute; top: 16px; right: 16px; z-index: 5;
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(0,0,0,0.07); border: none; cursor: pointer;
      font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .pay-close-btn:hover { background: rgba(0,0,0,0.15); transform: scale(1.05); }
    .pay-header {
      display: flex; align-items: center; gap: 10px;
      padding: 1.2rem 1.5rem 0;
    }
    .pay-brand-icon {
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(0,0,0,0.07);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
    }
    .pay-brand-name { font-size: 1rem; font-weight: 800; color: var(--dark); flex:1; }
    .pay-brand-badge {
      font-size: 0.6rem; font-weight: 800; letter-spacing: 1px;
      padding: 4px 10px; border-radius: 50px;
      background: #25D366; color: #fff;
    }
    .pay-amount-card {
      margin: 1rem 1.5rem; padding: 1.2rem;
      background: linear-gradient(145deg, #fafafa, #f0f0f0);
      border: 1px solid rgba(39,4,4,0.06); border-radius: 20px;
      text-align: center;
    }
    .pay-amount-label { font-size: 0.65rem; font-weight: 700; color: rgba(39,4,4,0.35); letter-spacing: 2px; margin-bottom: 2px; }
    .pay-amount-value { font-size: 2.4rem; font-weight: 900; color: var(--dark); letter-spacing: -1px; line-height: 1.1; }
    .pay-amount-detail { font-size: 0.78rem; color: rgba(39,4,4,0.5); margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
    .pay-amount-detail strong { color: var(--dark); }
    .pay-amount-dot { opacity: 0.4; }
    .pay-ref { font-size: 0.7rem; color: rgba(39,4,4,0.4); margin-top: 8px; padding-top: 8px; border-top: 1px dashed rgba(39,4,4,0.1); }
    .pay-ref strong { color: var(--red); }
    .pay-body { padding: 0.5rem 1.5rem 1rem; }

    /* Steps */
    .pay-step { margin-bottom: 0.8rem; }
    .pay-step-title {
      font-size: 0.82rem; font-weight: 700; color: var(--dark);
      display: flex; align-items: center; gap: 10px; margin-bottom: 0.7rem;
    }
    .pay-step-num {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--dark); color: var(--amber);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 900; flex-shrink: 0;
    }
    .pay-input-wrap {
      display: flex; align-items: center; border: 2px solid rgba(39,4,4,0.12);
      border-radius: 14px; overflow: hidden; transition: border-color 0.3s;
    }
    .pay-input-wrap:focus-within { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(255,176,0,0.1); }
    .pay-input-prefix {
      padding: 14px 12px; font-size: 0.9rem; font-weight: 700;
      color: rgba(39,4,4,0.4); background: rgba(39,4,4,0.03);
      border-right: 1px solid rgba(39,4,4,0.08); flex-shrink: 0;
    }
    .pay-num-input {
      flex: 1; border: none; border-radius: 0; padding: 14px 14px;
      font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600;
      color: var(--dark); outline: none; background: #fff;
    }
    .pay-step-hint { font-size: 0.7rem; color: rgba(39,4,4,0.4); margin-top: 8px; padding-left: 2px; }
    .pay-step-hint span { font-weight: 700; color: rgba(39,4,4,0.55); }

    /* MoMo notice */
    .pay-momo-notice {
      background: linear-gradient(135deg, rgba(255,176,0,0.06), rgba(255,176,0,0.02));
      border: 1.5px solid rgba(255,176,0,0.2); border-radius: 16px;
      padding: 1rem; text-align: center; margin-bottom: 0.5rem;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .pay-momo-icon { font-size: 1.6rem; color: var(--amber); }
    .pay-momo-text { font-size: 0.78rem; color: rgba(39,4,4,0.6); line-height: 1.7; }
    .pay-momo-text strong { color: var(--dark); }

    /* PIN grid — 4 cells like Jumia/KiKUU */
    .pay-pin-grid {
      display: flex; justify-content: center; gap: 12px; margin-bottom: 0.5rem;
    }
    .pay-pin-cell {
      width: 50px; height: 56px; border: 2px solid rgba(39,4,4,0.15);
      border-radius: 14px; text-align: center;
      font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900;
      color: var(--dark); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-text-security: disc;
    }
    .pay-pin-cell:focus {
      border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,176,0,0.12);
    }
    .pay-pin-cell.filled { border-color: var(--amber); background: rgba(255,176,0,0.06); }
    .pay-pin-hint { text-align: center; font-size: 0.68rem; color: rgba(39,4,4,0.35); margin-top: 6px; }

    /* Status */
    .pay-status { text-align: center; font-size: 0.8rem; font-weight: 600; margin: 0.5rem 0; min-height: 20px; color: var(--red); }
    .pay-status.ok { color: #25D366; }

    /* Buttons */
    .pay-btn-row { display: flex; flex-direction: column; gap: 8px; margin-top: 0.3rem; }
    .pay-action-btn {
      width: 100%; padding: 15px; border: none; border-radius: 16px;
      font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
      font-weight: 800; cursor: pointer; letter-spacing: 0.5px;
      transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px;
      background: linear-gradient(135deg, var(--amber), #e09900);
      color: var(--dark); box-shadow: 0 6px 20px rgba(255,176,0,0.3);
    }
    .pay-action-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,176,0,0.4); }
    .pay-action-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
    .pay-footer-text {
      text-align: center; font-size: 0.65rem; color: rgba(39,4,4,0.3);
      margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(39,4,4,0.06);
    }
    .pay-footer-text i { margin-right: 3px; }

    /* Processing */
    .pay-processing { text-align: center; padding: 2rem 0 1.5rem; }
    .pay-spinner-wrap { position: relative; margin: 0 auto 1.5rem; }
    .pay-spinner {
      width: 64px; height: 64px; border: 5px solid rgba(39,4,4,0.06);
      border-top-color: var(--amber); border-radius: 50%;
      margin: 0 auto;
      animation: spin 0.7s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .pay-bank-icons {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 12px; font-size: 0.75rem; font-weight: 700; color: rgba(39,4,4,0.4);
    }
    .pay-bank-icons span:first-child { background: rgba(39,4,4,0.06); padding: 4px 10px; border-radius: 6px; }
    .pay-bank-icons span:last-child { background: var(--red); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; }
    .pay-processing-text { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .pay-processing-sub { font-size: 0.78rem; color: rgba(39,4,4,0.45); }

    /* Result */
    .pay-result { text-align: center; padding: 1rem 0; }
    .pay-result-icon { font-size: 3.5rem; margin-bottom: 0.8rem; }
    .pay-result.success .pay-result-icon { color: #25D366; animation: popIn 0.5s ease; }
    .pay-result.fail .pay-result-icon { color: var(--red); }
    @keyframes popIn { 0%{transform:scale(0) rotate(-10deg);opacity:0} 60%{transform:scale(1.2) rotate(2deg)} 100%{transform:scale(1) rotate(0);opacity:1} }
    .pay-result-title { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
    .pay-result-msg { font-size: 0.82rem; color: rgba(39,4,4,0.55); line-height: 1.7; }

    /* ===== UNAVAILABLE CARD ===== */
    .food-card.unavailable {
      opacity: 0.75;
      pointer-events: none;
    }
    .food-card.unavailable .food-card-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(39,4,4,0.35);
      pointer-events: none;
    }
    .food-unavailable-badge {
      position: absolute;
      bottom: 12px; left: 50%; transform: translateX(-50%);
      background: rgba(39,4,4,0.85); color: var(--amber);
      padding: 6px 16px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      white-space: nowrap;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,176,0,0.3);
      pointer-events: none;
    }
    .btn-unavailable {
      background: rgba(39,4,4,0.12);
      color: rgba(39,4,4,0.3); border: none;
      width: 40px; height: 40px; border-radius: 12px;
      font-size: 1rem; cursor: not-allowed;
      display: flex; align-items: center; justify-content: center;
      pointer-events: auto;
    }
