.checkout-btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
  }
  .room-card .btn[data-room] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 0 auto;
    max-width: 200px;
  }
  /* === 1. FONT IMPORT & PREMIUM PALETTE === */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
  
  :root {
    /* Single Color Palette - Clean Blue Theme */
    --primary-color: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-very-light: #dbeafe;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --text-light: var(--white);
    
    /* Background Colors */
    --bg-primary: var(--gray-50);
    --bg-secondary: var(--white);
    --bg-card: var(--white);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Sizing */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Status Colors */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
  }
  
  /* === 2. GENERAL STYLES (Mobile First) === */
  * { box-sizing: border-box; }
  
  body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  .container {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
  }
  
  /* Full width container on mobile */
  @media (max-width: 767px) {
    .container {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  }
  
  .card {
    background: var(--bg-card);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
  }
  
  .btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
  }
  
  .btn:hover { 
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
  }
  
  .btn-light { 
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--gray-300);
  }
  
  .btn-light:hover { 
    background: var(--gray-50);
    border-color: var(--primary-color);
  }
  
  .btn-secondary { 
    background: var(--gray-600);
  }
  
  .btn-secondary:hover { 
    background: var(--gray-700);
  }
  
  .btn-danger { 
    background: var(--danger);
    color: var(--text-light);
  }
  
  .btn-danger:hover { 
    background: #dc2626;
  }
  
  .btn:disabled { 
    background: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.7;
  }
  
  h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-primary); }
  
  .loading-text, .placeholder-text { text-align: center; color: var(--text-secondary); padding: 2rem 0; }
  
  /* === 3. STUNNING HEADER DESIGN === */
  .page-header { 
    text-align: center; 
    margin-bottom: 4rem; 
    padding: 3rem 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
  }

  .page-header img { 
    max-width: 120px; 
    margin-bottom: 2rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
  }

  .page-header img:hover {
    transform: scale(1.05);
  }

  .page-header h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .page-header p { 
    font-size: 1.25rem; 
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* === 4. MENU & ORDERING STYLES (Mobile First) === */
  
  /* Menu Layout */
  .menu-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .menu-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .search-container input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    font-size: 1.1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  .search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .search-container input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
  }
  
  .search-container i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  /* Category Tabs */
  .categories-container {
    margin-bottom: 3rem;
    padding: 0;
    background: transparent;
  }
  
  .category-tabs {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .category-tab {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .category-tab:hover {
    background: var(--gold);
    color: var(--text-primary);
    border-color: var(--gold);
  }
  
  .category-tab.active {
    background: var(--gold);
    color: var(--text-primary);
    border-color: var(--gold);
  }

  /* Premium Image-based Category Tabs */
  .category-tab-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 140px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }

  .category-tab-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .category-tab-image:hover::before {
    transform: scaleX(1);
  }

  .category-tab-image:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .category-tab-image.active {
    border-color: var(--primary-color);
    background: var(--primary-very-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .category-tab-image.active::before {
    transform: scaleX(1);
  }

  .category-image-container {
    width: 90px;
    height: 90px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: var(--shadow-md);
  }

  .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }

  .category-tab-image:hover .category-image {
    transform: scale(1.1);
  }

  .category-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.3;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
  }

  .category-tab-image.active .category-label {
    color: var(--primary-color);
    font-weight: 700;
  }

  /* Responsive adjustments for category tabs */
  @media (min-width: 768px) {
    .category-tab-image {
      width: 160px;
      padding: 2rem 1.25rem;
    }
    
    .category-image-container {
      width: 110px;
      height: 110px;
    }
    
    .category-label {
      font-size: 1rem;
    }
  }

  @media (max-width: 767px) {
    .category-tabs {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 1rem;
    }
    
    .category-tab-image {
      width: 120px;
      padding: 1rem 0.75rem;
    }
    
    .category-image-container {
      width: 70px;
      height: 70px;
    }
    
    .category-label {
      font-size: 0.8rem;
    }

    /* Mobile: show the order card right after the header (before the menu) */
    .menu-layout .order-sidebar {
      order: -1;            /* move before main */
      position: static;     /* disable sticky on mobile */
      top: auto;
      margin-top: 0.5rem;   /* slight spacing under header */
    }
  }
  
  /* CSS Variables for easy adjustments */
  :root {
    --card-width: 100%;
    --card-height: 200px;
    --card-border-radius: 6px;
    --card-gap: 12px;
    --card-padding: 12px;
    --image-height-percent: 65%;
    --content-height-percent: 35%;
    --title-font-size: 16px;
    --price-font-size: 14px;
    --button-height: 32px;
    --button-width: 120px;
    --button-bg: #ffb200;
    --button-color: #111;
    --title-color: #222;
    --price-color: #0a7a00;
  }

  /* Premium Menu Grid */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--card-gap);
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Full width mobile grid */
  @media (max-width: 767px) {
    .menu-grid {
      gap: 0.5rem;
      padding: 0 0.25rem;
      margin-bottom: 2rem;
    }
  }
  
  /* Responsive grid for larger screens */
  @media (min-width: 768px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      padding: 0;
    }
  }
  
  @media (min-width: 1200px) {
    .menu-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }
  
  .menu-item {
    width: 100%;
    height: 200px;
    aspect-ratio: unset;
    background: var(--bg-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
  }
  
  .menu-item-image {
    height: 70% !important;
    width: 100%;
    overflow: hidden;
  }
  
  .menu-item-content {
    height: 30% !important;
    width: 100%;
  }
  
  .menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .menu-item-image {
    width: 100%;
    height: var(--image-height-percent);
    overflow: hidden;
    position: relative;
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
  }
  
  .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .menu-item:hover .menu-item-image img {
    transform: scale(1.05);
  }
  
  /* Mobile compact menu items like coffee shop grid */
  @media (max-width: 767px) {
    .menu-item {
      transform: none;
      transition: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      height: 300px;
      aspect-ratio: unset;
    }
    
    .menu-item:hover {
      transform: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .menu-item::before {
      display: none;
    }
    
    .menu-item-image {
      height: 180px;
      border-radius: 8px 8px 0 0;
    }
    
    .menu-item:hover .menu-item-image img {
      transform: none;
    }
    
    .menu-item-content {
      padding: 0.2rem 0.4rem 3.5rem 0.4rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      flex-grow: 1;
      position: relative;
      min-height: 90px;
    }
    
    .menu-item-name {
      font-size: 0.8rem !important;
      font-weight: 600 !important;
      margin: 0.1rem 0 0.2rem 0 !important;
      line-height: 1.1 !important;
      color: #333333 !important;
      background: rgba(255,255,255,0.95) !important;
      padding: 0.3rem 0.5rem !important;
      border: 1px solid rgba(0,0,0,0.2) !important;
      border-radius: 4px !important;
      display: block !important;
      text-align: left !important;
      width: calc(100% - 0.2rem) !important;
      box-sizing: border-box !important;
      text-shadow: none !important;
      height: 3rem !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      scrollbar-width: thin !important;
      scrollbar-color: rgba(0,0,0,0.3) transparent !important;
    }
    
    .menu-item-name::-webkit-scrollbar {
      width: 4px !important;
    }
    
    .menu-item-name::-webkit-scrollbar-track {
      background: transparent !important;
    }
    
    .menu-item-name::-webkit-scrollbar-thumb {
      background: rgba(0,0,0,0.3) !important;
      border-radius: 2px !important;
    }
    
    .menu-item-name::-webkit-scrollbar-thumb:hover {
      background: rgba(0,0,0,0.5) !important;
    }
    
    .menu-item-name-description {
      display: none !important; /* Hide description box completely */
      border-radius: 6px !important;
      margin: 0.2rem 0 0.4rem 0 !important;
      min-height: 1.5rem !important;
      max-height: 2.5rem !important;
      overflow-y: auto !important;
      scrollbar-width: thin !important;
      scrollbar-color: #ccc transparent !important;
      box-sizing: border-box !important;
    }
    
    .menu-item-name {
      font-size: 0.85rem !important;
      font-weight: 600 !important;
      margin: 0 0 0.3rem 0 !important;
      line-height: 1.1 !important;
      color: #333333 !important;
      background: none !important;
      padding: 0 !important;
      border: none !important;
      text-shadow: none !important;
    }
    
    .menu-item-description {
      font-size: 0.7rem !important;
      font-weight: 400 !important;
      margin: 0 !important;
      line-height: 1.3 !important;
      color: #666666 !important;
      background: none !important;
      padding: 0 !important;
      border: none !important;
      text-shadow: none !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      font-style: italic !important;
    }
    
    .menu-item-name-description::-webkit-scrollbar {
      width: 4px !important;
    }
    
    .menu-item-name-description::-webkit-scrollbar-track {
      background: transparent !important;
    }
    
    .menu-item-name-description::-webkit-scrollbar-thumb {
      background: #ccc !important;
      border-radius: 2px !important;
    }
    
    .menu-item-name-description::-webkit-scrollbar-thumb:hover {
      background: #999 !important;
    }
    
    .menu-item-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.003rem;
      margin-top: 0.003rem;
    }
    
    .menu-item-price {
      font-size: 0.7rem !important;
      font-weight: 600 !important;
      margin: 0.1rem 0 !important;
      color: var(--gold) !important;
      background: transparent !important;
      background-color: transparent !important;
      padding: 0 !important;
      border: none !important;
      text-align: center !important;
      display: block !important;
      text-shadow: none !important;
      width: 100% !important;
      box-shadow: none !important;
      position: absolute !important;
      bottom: 2.5rem !important;
      left: 0 !important;
      right: 0 !important;
    }
    
    .btn-add-to-order {
      width: calc(100% - 1rem) !important;
      padding: 0.3rem 0.5rem !important;
      font-size: 0.7rem !important;
      font-weight: 600 !important;
      border-radius: 3px !important;
      min-height: 26px !important;
      background-color: var(--gold) !important;
      color: #000000 !important;
      border: none !important;
      text-shadow: none !important;
      display: block !important;
      cursor: pointer !important;
      position: absolute !important;
      bottom: 0.5rem !important;
      left: 0.5rem !important;
      z-index: 10 !important;
    }
  }
  
  /* Extra small mobile phones */
  @media (max-width: 480px) {
    .menu-grid {
      gap: 0.4rem;
      padding: 0 0.2rem;
    }
    
    .menu-item {
      height: 280px;
      aspect-ratio: unset;
    }
    
    .menu-item-image {
      height: 160px;
    }
    
    .menu-item-content {
      padding: 0.2rem 0.3rem 3rem 0.3rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      flex-grow: 1;
      position: relative;
      min-height: 85px;
    }
    
    .menu-item-name {
      font-size: 0.7rem !important;
      font-weight: 600 !important;
      margin: 0.1rem 0 0.2rem 0 !important;
      line-height: 1.0 !important;
      color: #333333 !important;
      background: rgba(255,255,255,0.95) !important;
      padding: 0.25rem 0.4rem !important;
      border: 1px solid rgba(0,0,0,0.2) !important;
      border-radius: 3px !important;
      display: block !important;
      text-align: left !important;
      width: calc(100% - 0.2rem) !important;
      box-sizing: border-box !important;
      text-shadow: none !important;
      height: 2.7rem !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      scrollbar-width: thin !important;
      scrollbar-color: rgba(0,0,0,0.3) transparent !important;
    }
    
    .menu-item-price {
      font-size: 0.65rem !important;
      font-weight: 600 !important;
      margin: 0.1rem 0 !important;
      color: var(--gold) !important;
      background: transparent !important;
      background-color: transparent !important;
      padding: 0 !important;
      border: none !important;
      text-align: center !important;
      display: block !important;
      text-shadow: none !important;
      box-shadow: none !important;
      position: absolute !important;
      bottom: 2.2rem !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
    }
    
    .btn-add-to-order {
      width: calc(100% - 0.8rem) !important;
      padding: 0.25rem 0.4rem !important;
      font-size: 0.65rem !important;
      font-weight: 600 !important;
      border-radius: 3px !important;
      min-height: 24px !important;
      background-color: var(--gold) !important;
      color: #000000 !important;
      border: none !important;
      text-shadow: none !important;
      display: block !important;
      cursor: pointer !important;
      position: absolute !important;
      bottom: 0.4rem !important;
      left: 0.4rem !important;
      z-index: 10 !important;
    }
    
    .menu-item-footer {
      gap: 0.002rem;
      margin-top: 0.002rem;
    }
  }
  
  .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .menu-item:hover .menu-item-image img {
    transform: scale(1.1);
  }
  
  .menu-item-content {
    height: var(--content-height-percent);
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    min-height: 100px;
  }
  
  .menu-item-name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin: 0.2rem 0 0.3rem 0 !important;
    line-height: 1.1 !important;
    color: #333333 !important;
    background: rgba(255,255,255,0.95) !important;
    padding: 0.4rem 0.6rem !important;
    border: 1px solid rgba(0,0,0,0.2) !important;
    border-radius: 4px !important;
    display: block !important;
    text-align: left !important;
    width: calc(100% - 0.4rem) !important;
    box-sizing: border-box !important;
    text-shadow: none !important;
    height: 3.2rem !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(0,0,0,0.3) transparent !important;
  }
  
  .menu-item-name-description {
    display: none !important; /* Hide description box completely */
    border-radius: 6px !important;
    margin: 0.2rem 0 0.4rem 0 !important;
    min-height: 1.5rem !important;
    max-height: 2.5rem !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #ccc transparent !important;
    box-sizing: border-box !important;
    display: block !important;
    text-align: left !important;
    width: 100% !important;
  }
  
  .menu-item-name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.3rem 0 !important;
    line-height: 1.1 !important;
    color: #333333 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    text-shadow: none !important;
  }
  
  .menu-item-description {
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    color: #666666 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    text-shadow: none !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-style: italic !important;
  }
  
  .menu-item-name-description::-webkit-scrollbar {
    width: 4px !important;
  }
  
  .menu-item-name-description::-webkit-scrollbar-track {
    background: transparent !important;
  }
  
  .menu-item-name-description::-webkit-scrollbar-thumb {
    background: #ccc !important;
    border-radius: 2px !important;
  }
  
  .menu-item-name-description::-webkit-scrollbar-thumb:hover {
    background: #999 !important;
  }
  
  .menu-item-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: auto;
    padding-top: 0.5rem;
  }
  
  .menu-item-price {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin: 0.4rem 0 0.6rem 0 !important;
    color: var(--gold) !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: center !important;
    display: block !important;
    text-shadow: none !important;
    width: 100% !important;
    box-shadow: none !important;
  }
  
  .add-to-cart-btn, .btn-add-to-order {
    width: calc(100% - 1.5rem) !important;
    padding: 0.4rem 0.6rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    min-height: 28px !important;
    background-color: var(--gold) !important;
    color: #000000 !important;
    border: none !important;
    text-shadow: none !important;
    display: block !important;
    cursor: pointer !important;
    position: absolute !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    z-index: 10 !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 11px;
    white-space: nowrap;
    margin: 8px auto 4px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  
  .add-to-cart-btn:hover, .btn-add-to-order:hover {
    background: #e6a000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .unavailable {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 11px;
    text-align: center;
    margin: 6px auto 0 auto;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--card-gap);
      padding: 0.5rem;
    }
  }
  
  /* Premium Order Sidebar */
  .order-sidebar {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    height: fit-content;
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 2rem;
  }
  
  .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .order-header h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .clear-order-btn {
    background: var(--danger);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .clear-order-btn:hover {
    background: #c9302c;
  }
  
  .order-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .order-item:last-child {
    border-bottom: none;
  }
  
  .order-item-info {
    flex: 1;
  }
  
  .order-item-name {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .order-item-price {
    color: var(--gold);
    font-weight: 600;
  }
  
  .order-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .quantity-btn {
    background: var(--gold);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quantity-btn:hover {
    background: #b38e64;
  }
  
  .quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
  }

  /* Keep header on top in rare cases */
  .page-header { position: relative; z-index: 2; }
  
  .order-summary {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
  }
  
  .total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .place-order-btn {
    width: 100%;
    background: var(--gold);
    color: var(--text-primary);
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s ease;
  }
  
  .place-order-btn:hover:not(:disabled) {
    background: #b38e64;
  }
  
  .place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  
  .empty-cart {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
  }
  
  .no-items {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
  }
  
  .error {
    text-align: center;
    color: var(--danger);
    padding: 2rem;
  }
  
  /* Notification */
  .notification {
    animation: slideIn 0.3s ease;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* === 5. DASHBOARDS & PORTALS (Universal) === */
  .dashboard-body { background-color: #000000 !important; }
  .dashboard-body .page-header h1, .dashboard-body .page-header p, .dashboard-body .placeholder-text { color: white; }
  
  .dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
  
  .order-card { background: #3a3a3a; color: #f1f1f1; border-left: 8px solid var(--gold); border-radius: var(--border-radius); padding: 1.5rem; }
  .order-card.waiter-call { border-left-color: var(--danger); animation: pulse-red 1s infinite; }
  
  @keyframes pulse-red { 50% { box-shadow: 0 0 25px rgba(217, 83, 79, 0.7); } }
  
  .urgent-text { font-size: 1.5rem; font-weight: 500; text-align: center; }
  
  .sound-enabler { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; z-index: 9999; cursor: pointer; }
  .sound-enabler h1 { color: white; }
  
  .portal-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
  .portal-card { background: var(--surface); padding: 2rem; border-radius: var(--border-radius); text-decoration: none; color: var(--text-primary); text-align: center; transition: all 0.2s ease; box-shadow: var(--shadow); }
  .portal-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
  .portal-card i { font-size: 3rem; color: var(--gold); }
  .portal-card h2 { font-family: var(--font-heading); margin: 1rem 0 0.5rem; }
  
  .room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
  
  /* Wider room grid for room status dashboard */
  .room-grid-wide { 
      display: grid; 
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
      gap: 1.5rem; 
      padding: 1rem;
  }
  .room-card { background-color: var(--surface); border-radius: var(--border-radius); padding: 1.5rem 1rem; text-align: center; box-shadow: var(--shadow); border-top: 5px solid transparent; }
  .room-card h3 { margin: 0 0 0.5rem 0; font-size: 1.8rem; }
  .room-card.available { border-top-color: var(--success); }
  .room-card.occupied { border-top-color: var(--danger); }
  
  /* === 6. ADMIN PANEL (Universal) === */
  .form-group { margin-bottom: 1.5rem; }
  .form-group input { width: 100%; padding: 1rem; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1.1rem; font-family: var(--font-body); }
  
  .password-container { position: relative; display: flex; align-items: center; }
  .password-container i { position: absolute; right: 15px; cursor: pointer; color: var(--text-secondary); font-size: 1.2rem; }
  
  .sales-list { list-style: none; padding: 0; }
  .sales-list li { background-color: #f9f9f9; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; border-left: 5px solid var(--gold); }
  .sales-list small { color: var(--text-secondary); display: block; }
  
  .sales-controls { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
  
  .summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .summary-box p { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); }
  
  .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
  .modal-content { background-color: var(--surface); margin: 10% auto; padding: 2rem; border-radius: var(--border-radius); width: 90%; max-width: 500px; }
  .close-btn { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
  
  .editor-item { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 1rem; border-bottom: 1px solid var(--border-color); }
  .editor-item:last-child { border-bottom: none; }
  .editor-item-actions { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
  
  /* Compact admin action buttons on small screens */
  #menu-editor-list .editor-item-actions { gap: 0.5rem; flex-wrap: wrap; }
  #menu-editor-list .editor-item-actions .btn { width: auto; padding: 0.35rem 0.6rem; font-size: 0.85rem; border-radius: 6px; }
  #menu-editor-list .editor-item-actions .btn-light { padding: 0.3rem 0.5rem; }
  
  @media (max-width: 400px) {
    /* Extra compact for very small devices */
    #menu-editor-list .editor-item { padding: 0.75rem; }
    #menu-editor-list .editor-item-actions { gap: 0.4rem; }
    #menu-editor-list .editor-item-actions .btn { padding: 0.3rem 0.5rem; font-size: 0.8rem; }
    .toggle-switch { width: 46px; height: 24px; }
    .slider:before { width: 18px; height: 18px; }
    input:checked + .slider:before { transform: translateX(22px); }
  }
  
  .toggle-switch { position: relative; display: inline-block; width: 50px; height: 26px; }
  .toggle-switch input { opacity: 0; width: 0; height: 0; }
  .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 26px; }
  .slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
  input:checked + .slider { background-color: var(--success); }
  input:checked + .slider:before { transform: translateX(24px); }
  
  .drop-zone { border: 2px dashed #ccc; border-radius: var(--border-radius); padding: 2rem; text-align: center; color: var(--text-secondary); cursor: pointer; }
  .drop-zone.dragover { border-color: var(--gold); background-color: var(--off-white); }
  .drop-zone input[type="file"] { display: none; }
  
  /* === RESPONSIVE DESIGN (Tablet & Desktop) === */
  @media (min-width: 768px) {
    .container { padding: 2rem; }
    .card { padding: 2rem; }
    .btn { width: auto; }
    .page-header img { max-width: 120px; }
    .page-header h1 { font-size: 2.8rem; }
    .menu-details h3 { font-size: 1.3rem; }
    .portal-grid { grid-template-columns: 1fr 1fr; }
    .room-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .summary-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .editor-item { flex-wrap: nowrap; }
    .editor-item-actions { margin-top: 0; }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .full-width { grid-column: 1 / -1; }
    .menu-layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      align-items: start;
    }
    .order-summary-container { position: sticky; top: 2rem; }
  }
  
  @media (min-width: 992px) {
    .portal-grid { grid-template-columns: 1fr 1fr 1fr; }
  }
  
  /* === FINAL POLISH: ROYAL FORM & QR CARD === */
  .form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-body);
  }
  
  .qr-card {
    width: 420px;
    height: auto;
    min-height: 700px;
    background: var(--bg-card);
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    margin: 2rem auto 2rem auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  
  .qr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-dark);
    border-radius: 20px 20px 0 0;
  }
  
  .qr-card::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    pointer-events: none;
  }
  
  .qr-left-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .qr-right-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .qr-card-logo {
    width: 70px;
    height: auto;
    margin-bottom: 0.8rem;
    border-radius: 15px;
    box-shadow: 
      0 8px 20px rgba(0,0,0,0.3),
      0 3px 8px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.95);
    padding: 6px;
  }
  
  .qr-card h3 { 
    font-family: var(--font-heading); 
    text-align: center; 
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
  }
  
  #qr-code-container { 
    padding: 1rem; 
    background: var(--white);
    border-radius: 20px; 
    box-shadow: var(--shadow-lg);
    margin: 0.8rem 0;
    border: 1px solid var(--gray-200);
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #qr-code-container svg,
  #qr-code-container canvas {
    width: 180px !important;
    height: 180px !important;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  #qr-card-url { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 0.7rem; 
    color: #2c2c2c; 
    word-break: break-all; 
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid rgba(44,44,44,0.2);
    margin-top: 0.8rem;
    margin-bottom: 0.6rem; /* ensure bottom spacing so content stays inside card */
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 
      0 3px 10px rgba(0,0,0,0.1),
      inset 0 1px 0 rgba(255,255,255,0.8);
  }
  
  .qr-card-instructions {
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    border: 2px solid rgba(44,44,44,0.2);
    position: relative;
    box-shadow: 
      0 4px 15px rgba(0,0,0,0.1),
      inset 0 1px 0 rgba(255,255,255,0.8);
    width: 100%;
    box-sizing: border-box;
  }
  
  .qr-card-instructions::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-dark);
    box-shadow: var(--shadow-sm);
  }
  
  .qr-card-instructions .amharic-text {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    color: #2c2c2c;
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1.3;
  }
  
  .qr-card-instructions .english-text {
    font-size: 1rem;
    color: #2c2c2c;
    display: block;
    margin-top: 0.6rem;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .qr-card-instructions .wifi-info {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
  }
  
  /* === FINAL POLISH: LANGUAGE SWITCHER === */
  .goog-te-banner-frame.skiptranslate { display: none !important; }
  iframe.goog-te-banner-frame { display: none !important; height: 0 !important; visibility: hidden !important; }
  .goog-te-banner-frame { display: none !important; height: 0 !important; visibility: hidden !important; }
  .goog-te-balloon-frame { display: none !important; height: 0 !important; visibility: hidden !important; }
  #goog-gt-tt { display: none !important; visibility: hidden !important; }
  .skiptranslate iframe { display: none !important; height: 0 !important; visibility: hidden !important; }
  .skiptranslate { border: 0 !important; }
  html { margin-top: 0 !important; }
  body { top: 0px !important; position: static !important; }
  
  .language-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 99999;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--gold);
  }
  
  .goog-te-combo {
    padding: 0.5rem 1rem;
    padding-right: 2.5rem;
    border: none;
    background-color: var(--surface);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
  }
  
  #google_translate_element .goog-te-gadget {
    font-size: 0 !important;
    line-height: 0 !important;
  }