    :root {
      --primary: #e74c3c;
      --secondary: #2c3e50;
      --accent: #f39c12;
      --light: #f8f9fa;
      --dark: #2c3e50;
      --transition: all 0.3s ease;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 12px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
      border: 2px solid #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
    
    /* Firefox Scrollbar */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--primary) #f1f1f1;
    }
    
    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      background-color: #f8f9fa;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    /* Navbar */
    .navbar {
      padding: 15px 0;
      transition: var(--transition);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    .navbar-brand img {
      border: 2px solid var(--accent);
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    /* Order Hero */
    .order-hero {
      min-height: 30vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 100px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&h=900&q=80');
      background-size: cover;
      background-position: center;
      color: white;
    }
    
    /* Menu Cards */
    .menu-card {
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      height: 100%;
      cursor: pointer;
    }
    
    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .menu-card img {
      transition: var(--transition);
      height: 200px;
      object-fit: cover;
    }
    
    .menu-card:hover img {
      transform: scale(1.05);
    }
    
    .menu-card.selected {
      border: 2px solid var(--accent);
      background-color: rgba(243, 156, 18, 0.05);
    }
    
    .menu-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 2;
    }
    
    /* Quantity Selector */
    .quantity-selector {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
    }
    
    .quantity-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    
    .quantity-input {
      width: 40px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 5px;
      margin: 0 10px;
      padding: 5px;
    }
    
    /* Order Summary */
    .order-summary {
      position: sticky;
      top: 100px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    
    .summary-item {
      border-bottom: 1px solid #eee;
      padding: 10px 0;
    }
    
    .summary-item:last-child {
      border-bottom: none;
    }
    
    .empty-cart {
      text-align: center;
      padding: 20px;
      color: #6c757d;
    }
    
    /* Form Styling */
    .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
    }
    
    /* Category Filter */
    .category-filter {
      margin-bottom: 20px;
    }
    
    /* Footer */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 40px 0 20px;
    }
    
    /* Checkout Button */
    .checkout-btn {
      background-color: var(--accent);
      border: none;
      padding: 12px 20px;
      font-weight: 600;
      transition: var(--transition);
    }
    
    .checkout-btn:hover {
      background-color: var(--primary);
      transform: translateY(-2px);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .order-summary {
        position: relative;
        top: 0;
        margin-top: 30px;
      }
      
      /* Adjust scrollbar for mobile */
      ::-webkit-scrollbar {
        width: 6px;
      }
    }