    /* ----- CSS RESET & GLOBAL VARIABLES ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #e63946;
      --primary-dark: #c1121f;
      --accent: #f4a261;
      --accent-glow: #e76f51;
      --bg-cream: #fefae0;
      --bg-soft: #fff9f2;
      --text-dark: #2b2d42;
      --text-muted: #555b6e;
      --white: #ffffff;
      --gold: #f4a261;
      --shadow-sm: 0 8px 20px rgba(0,0,0,0.05);
      --shadow-hover: 0 20px 30px rgba(0,0,0,0.1);
      --border-radius-card: 1.5rem;
      --border-radius-btn: 2.5rem;
      --transition: all 0.3s ease;
      --font-heading: 'Playfair Display', serif;
      --font-body: 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: linear-gradient(180deg, #fff7ed 0%, #fefae0 100%);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      font-size: 16px;
      width: 100%;
      max-width: 100vw;
    }

    h1, h2, h3, .logo, .fancy-title, .section-heading {
      font-family: var(--font-heading);
      font-weight: 600;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 1.2rem;
      width: 100%;
      overflow: hidden;
    }

    /* ----- ANIMATIONS ----- */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
    }
    @keyframes floatSlow {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
      100% { transform: translateY(0px); }
    }
    .floating-item {
      animation: float 4s ease-in-out infinite;
    }
    .floating-slow {
      animation: floatSlow 5s ease-in-out infinite;
    }

    /* ----- NAVBAR (Mobile First - Hamburger Menu) ----- */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      padding: 0.8rem 1.5rem;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(18px);
      border-radius: 3rem;
      margin: 0.8rem auto 0;
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0.6rem;
      z-index: 95;
      width: 100%;
    }

    .logo {
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      white-space: nowrap;
    }
    .logo i {
      font-size: 1.7rem;
      color: var(--accent);
    }

    /* Desktop navigation links */
    .nav-links {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.4rem 0;
      border-bottom: 2px solid transparent;
      font-size: 0.9rem;
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: var(--primary);
      border-bottom-color: var(--accent);
    }

    .nav-icons {
      display: flex;
      gap: 0.9rem;
      font-size: 1.1rem;
      color: var(--text-dark);
      align-items: center;
    }
    .nav-icons i {
      cursor: pointer;
      transition: var(--transition);
      background: white;
      padding: 0.55rem;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.04);
      position: relative;
      font-size: 1rem;
    }
    .nav-icons i:hover {
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 15px rgba(230,57,70,0.2);
    }
    .cart-count {
      position: absolute;
      top: -4px;
      right: -7px;
      background: var(--primary);
      color: white;
      font-size: 0.65rem;
      padding: 0.15rem 0.4rem;
      border-radius: 50%;
      font-weight: bold;
    }

    /* Hamburger button - hidden on desktop */
    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: var(--text-dark);
      cursor: pointer;
      padding: 0.3rem;
      line-height: 1;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 98;
    }
    .mobile-menu-overlay.active {
      display: block;
    }

    /* Mobile menu panel */
    .mobile-menu-panel {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      max-width: 85vw;
      height: 100vh;
      background: white;
      z-index: 99;
      transition: right 0.35s ease;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    .mobile-menu-panel.open {
      right: 0;
    }
    .mobile-menu-panel .close-btn {
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--text-dark);
    }
    .mobile-menu-panel a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 1.1rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .mobile-menu-panel a:hover {
      color: var(--primary);
    }

    /* Search Panel */
    .search-panel {
      display: none;
      margin: 0.7rem 0;
      animation: fadeSlide 0.3s ease;
    }
    .search-panel.active {
      display: block;
    }
    .search-input-group {
      display: flex;
      background: white;
      border-radius: 3rem;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .search-input-group input {
      flex: 1;
      padding: 0.8rem 1.3rem;
      border: none;
      font-size: 0.95rem;
      outline: none;
      min-width: 0;
    }
    .search-input-group button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0 1.6rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Cart Sidebar */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 380px;
      max-width: 92vw;
      height: 100vh;
      background: white;
      box-shadow: -10px 0 30px rgba(0,0,0,0.15);
      z-index: 1000;
      transition: right 0.4s ease;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    .cart-sidebar.open {
      right: 0;
    }
    .overlay {
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.4);
      z-index: 999;
      display: none;
    }
    .overlay.show {
      display: block;
    }

    /* User Modal */
    .modal {
      display: none;
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
      z-index: 1100;
      justify-content: center;
      align-items: center;
    }
    .modal.active {
      display: flex;
    }
    .modal-content {
      background: white;
      padding: 2rem;
      border-radius: 2rem;
      width: 340px;
      max-width: 90%;
      text-align: center;
      position: relative;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: 2rem 0 2.5rem;
      gap: 2rem;
    }
    .hero-text {
      flex: 1 1 360px;
    }
    .hero-text h1 {
      font-size: clamp(2.3rem, 6vw, 4rem);
      line-height: 1.15;
    }
    .highlight {
      color: var(--primary);
      position: relative;
    }
    .highlight::after {
      content: '';
      position: absolute;
      left: 0; bottom: 5px;
      width: 100%; height: 10px;
      background: var(--accent);
      opacity: 0.35;
      z-index: -1;
      border-radius: 20px;
    }
    .hero-image {
      flex: 1 1 300px;
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-image img {
      width: 100%;
      max-width: 420px;
      border-radius: 50% 30% 50% 30% / 40% 50% 40% 50%;
      box-shadow: 0 30px 40px rgba(0,0,0,0.2);
      object-fit: cover;
      aspect-ratio: 1/1;
    }
    .floating-badge {
      position: absolute;
      background: white;
      padding: 0.4rem 1rem;
      border-radius: 3rem;
      box-shadow: var(--shadow-hover);
      font-weight: 600;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
    }
    .badge-1 { top: 5%; left: -2%; }
    .badge-2 { bottom: 10%; right: -2%; }

    .btn {
      padding: 0.7rem 1.6rem;
      border-radius: var(--border-radius-btn);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
    }
    .btn-primary { background: var(--primary); color: white; }
    .btn-outline { background: transparent; border: 2px solid var(--text-dark); color: var(--text-dark); }
    .btn-outline:hover { background: var(--text-dark); color: white; }
    .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1.2rem;
    }

    /* Section Titles */
    .section-heading {
      text-align: center;
      margin: 2.8rem 0 1rem;
      font-size: 2rem;
      color: var(--text-dark);
    }
    .section-subtitle {
      text-align: center;
      color: var(--text-muted);
      margin-top: -0.3rem;
      margin-bottom: 1.8rem;
      font-size: 0.95rem;
    }

    /* Food & Deal Grids */
    .food-grid, .deals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin: 1.2rem 0 2rem;
    }
    .food-card {
      background: rgba(255,255,255,0.9);
      border-radius: var(--border-radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .food-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
    .card-img img {
      width: 100%; height: 190px; object-fit: cover;
    }
    .card-content {
      padding: 1rem;
      flex:1;
      display: flex;
      flex-direction: column;
    }
    .card-content h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-family: var(--font-heading);
    }
    .price {
      font-weight: 700;
      color: var(--primary);
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      font-size: 1.05rem;
    }
    .add-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0.45rem 1rem;
      border-radius: 2rem;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.8rem;
      transition: var(--transition);
    }
    .add-btn:hover { background: var(--primary-dark); }

    .deal-card {
      background: linear-gradient(135deg, #fff5f5, #ffffff);
      border-radius: 2rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid rgba(0,0,0,0.05);
      text-align: center;
    }
    .deal-card:hover { transform: translateY(-5px); }
    .deal-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.6rem; }
    .deal-card h3 { font-size: 1.3rem; margin: 0.5rem 0; }
    .deal-card h2 { color: var(--primary); font-size: 1.7rem; }

    /* Promo Banner */
    .promo-banner {
      background: linear-gradient(105deg, #e63946, #f4a261);
      border-radius: 2.5rem;
      padding: 1.5rem 1.8rem;
      margin: 2.2rem 0;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* About & Contact */
    .about-section {
      background: white;
      border-radius: 2.2rem;
      padding: 2rem;
      margin: 2rem 0;
      box-shadow: var(--shadow-sm);
    }
    .contact-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 1.2rem 0 2rem;
    }
    .contact-card {
      background: white;
      padding: 1.8rem;
      border-radius: 2rem;
      box-shadow: var(--shadow-sm);
    }
    .contact-card input, .contact-card textarea {
      width: 100%;
      padding: 0.7rem;
      margin: 0.5rem 0;
      border-radius: 2rem;
      border: 1px solid #ddd;
      font-family: var(--font-body);
    }
    .footer {
      text-align: center;
      padding: 2rem 1rem;
      background: #1e1e2f;
      color: #ddd;
      border-radius: 2.2rem 2.2rem 0 0;
      margin-top: 2rem;
      font-size: 0.9rem;
    }

    /* ----- RESPONSIVE BREAKPOINTS ----- */
    @media (min-width: 769px) {
      /* Show desktop nav, hide hamburger */
      .nav-links {
        display: flex !important;
      }
      .hamburger-btn {
        display: none !important;
      }
      .mobile-menu-panel {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1rem;
      }
      .navbar {
        padding: 0.7rem 1.2rem;
        border-radius: 2.5rem;
        justify-content: space-between;
      }
      /* Hide desktop links, show hamburger */
      .nav-links {
        display: none;
      }
      .hamburger-btn {
        display: block;
        order: 2;
      }
      .logo {
        order: 1;
        font-size: 1.5rem;
      }
      .nav-icons {
        order: 3;
      }
      .hero {
        flex-direction: column;
        text-align: center;
        margin: 1.5rem 0 2rem;
      }
      .hero-image {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
      }
      .hero-image img {
        max-width: 100%;
      }
      .floating-badge {
        position: relative;
        margin: 0.3rem;
        display: inline-flex;
      }
      .badge-1, .badge-2 {
        position: static;
      }
      .btn-group {
        justify-content: center;
      }
      .section-heading {
        font-size: 1.8rem;
      }
      .food-grid, .deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
      }
      .promo-banner {
        text-align: center;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 0.6rem 1rem;
        border-radius: 2rem;
      }
      .logo {
        font-size: 1.3rem;
      }
      .logo i {
        font-size: 1.3rem;
      }
      .hamburger-btn {
        font-size: 1.6rem;
      }
      .nav-icons i {
        padding: 0.5rem;
        font-size: 0.95rem;
      }
      .food-grid, .deals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .hero-text h1 {
        font-size: 2rem;
      }
      .cart-sidebar {
        width: 100%;
        max-width: 100%;
      }
      .btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.85rem;
      }
      .about-section {
        padding: 1.5rem;
      }
    }