    .no-print { display: none !important; }
    /* iOS AirPrint: hide BLE button on iOS, show AirPrint share button */
    .ios-only { display: none !important; }
    .ios-device .ios-only { display: flex !important; }
    .ios-device .hide-on-ios { display: none !important; }
    :root {
  --primary: #ff6b00;
  --secondary: #ff8c00;
  --bg: #0a0a0a;
  --s1: #141414;
  --s2: #1e1e1e;
  --s3: #282828;
  --b: #2e2e2e;
  --card-bg: rgba(20, 20, 20, 0.6);
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #ff6b00;
  --success: #00ff88;
  --danger: #ff3366;
  --warning: #ffcc00;

  /* Physics-aware motion curves & durations */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 350ms;
}

    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
    body { 
      font-family: 'Outfit', sans-serif; 
      background: var(--bg); 
      color: var(--text); 
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
      background: radial-gradient(circle at top right, #1a0f0a, #0a0a0b);
    }

    /* --- AUTH SCREEN --- */
    .auth-container { height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
    .auth-card {
      background: var(--card-bg);
      backdrop-filter: blur(20px);
      padding: 40px 30px;
      border-radius: 24px;
      border: 1px solid var(--border);
      width: 100%;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .auth-logo { width: 80px; height: auto; max-width: 100%; margin-bottom: 20px; filter: drop-shadow(0 0 10px var(--primary)); }
    .auth-input {
      width: 100%;
      background: var(--glass);
      border: 1px solid var(--border);
      padding: 15px;
      border-radius: 12px;
      color: white;
      margin-bottom: 15px;
      font-family: inherit;
      transition: all var(--duration-normal) var(--ease-out-expo);
    }
    .auth-input:focus { border-color: var(--primary); outline: none; background: rgba(255,77,0,0.05); }
    .btn-primary {
      width: 100%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border: none;
      padding: 15px;
      border-radius: 12px;
      font-weight: 800;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all var(--duration-normal) var(--ease-out-expo);
      box-shadow: none !important;
    }

    /* --- DASHBOARD LAYOUT --- */
    header {
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { width: 40px; height: auto; flex-shrink: 0; }
    .brand h2 { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.5px; }

    .sidebar-brand { display: none; }

    .container { padding: 20px; padding-bottom: 120px; max-width: 1200px; margin: 0 auto; }

    /* --- STATS GRID --- */
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 30px; }
    .stat-card { background: var(--card-bg); padding: 20px; border-radius: 20px; border: 1px solid var(--border); position: relative; overflow: hidden; }
    .stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; font-weight: 600; }
    .stat-value { font-size: 1.5rem; font-weight: 800; margin-top: 5px; }

    /* --- SECTION CARDS --- */
    .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .section-title { font-size: 1.2rem; font-weight: 800; }

    /* --- ORDER CARDS --- */
    .mobile-list { display: flex; flex-direction: column; gap: 15px; }
    .order-card { background: var(--card-bg); border-radius: 20px; padding: 20px; border: 1px solid var(--border); }
    .order-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
    .order-id { font-weight: 800; color: var(--primary); }
    .customer-info { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed var(--border); }
    .items-list { margin-bottom: 15px; }
    .order-footer { display: flex; justify-content: space-between; align-items: center; }
    .status-badge { padding: 6px 12px; border-radius: 10px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
    .badge-pending, .badge-warning { background: rgba(255,204,0,0.1); color: var(--warning); border: 1px solid var(--warning); }
    .badge-cooking { background: rgba(255,77,0,0.1); color: var(--primary); border: 1px solid var(--primary); }
    .badge-completed { background: rgba(0,255,136,0.1); color: var(--success); border: 1px solid var(--success); }
    .badge-cancelled { background: rgba(255,51,102,0.1); color: var(--danger); border: 1px solid var(--danger); }

    .action-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 15px; }
    .mini-btn { padding: 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--glass); color: white; font-size: 0.7rem; font-weight: 700; cursor: pointer; }
    .mini-btn.primary { background: var(--primary); border: none; }

    /* --- BOTTOM NAV --- */
    .bottom-nav {
      position: fixed; bottom: 20px; left: 20px; right: 20px;
      background: rgba(20, 20, 22, 0.9); backdrop-filter: blur(20px);
      border: 1px solid var(--border); border-radius: 24px;
      display: flex; justify-content: space-around; padding: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.6); z-index: 1000;
    }
    .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted); text-decoration: none; font-size: 0.65rem; font-weight: 600; padding: 10px; border-radius: 15px; transition: all var(--duration-normal) var(--ease-out-expo); cursor: pointer; }
    .nav-item.active { color: var(--primary); background: rgba(255,77,0,0.08); }
    .nav-icon { font-size: 1.3rem; }

    /* --- PRODUCT CARDS --- */
    .category-header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: rgba(14, 14, 16, 0.95);
      backdrop-filter: blur(12px);
      padding: 15px 0;
      margin: 20px 0 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .category-header h3 {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0;
    }
    .category-header .item-count {
      font-size: 0.7rem;
      background: rgba(255,255,255,0.05);
      padding: 4px 10px;
      border-radius: 10px;
      font-weight: 700;
      color: var(--muted);
    }
    .category-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: auto !important;
      gap: 15px;
      margin-bottom: 30px;
    }
    .product-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 15px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 15px;
      transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out-expo);
    }
    .product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
    .product-img { width: 80px; height: 80px; object-fit: cover; border-radius: 14px; background: #0a0a0b; flex-shrink: 0; }
    .product-emoji { width: 80px; height: 80px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }
    .product-card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }
    .product-card-title {
      font-size: 1.05rem;
      font-weight: 900;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .product-card-meta {
      font-size: 0.7rem;
      color: var(--muted);
      font-weight: 600;
    }
    .product-card-prices {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }
    .price-pill {
      font-size: 0.65rem;
      background: rgba(255,107,0,0.1);
      color: var(--primary);
      padding: 4px 8px;
      border-radius: 6px;
      font-weight: 700;
    }
    .price-pill b { opacity: 0.7; margin-right: 2px; }
    .product-card-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      width: max-content;
      min-width: auto;
      flex-shrink: 0;
      border-left: 1px solid var(--border);
      padding-left: 15px;
    }
    
    /* IMAGE UPLOADER */
    .image-upload-box {
      width: 100%;
      height: 140px;
      border: 1px dashed rgba(255,255,255,0.12);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      cursor: pointer;
      overflow: hidden;
      position: relative;
      background: rgba(255,255,255,0.01);
      transition: all 0.25s var(--ease-spring);
      isolation: isolate;
      transform: translateZ(0);
    }
    .image-upload-box:hover {
      border-color: var(--primary);
      border-style: solid;
      background: rgba(255,107,0,0.02);
      box-shadow: none !important;
    }
    .image-upload-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 16px;
      transition: transform 0.3s var(--ease-out-expo);
    }
    .image-upload-box:hover img {
      transform: scale(1.03);
    }
    .upload-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      color: var(--muted);
      pointer-events: none;
      z-index: 2;
      transition: all 0.2s;
    }
    .image-upload-box img:not(.hidden) + .upload-placeholder {
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 12px 24px;
      border-radius: 20px;
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.25s var(--ease-spring);
    }
    .image-upload-box:hover img:not(.hidden) + .upload-placeholder {
      opacity: 1;
      transform: scale(1);
    }

    .modal-input {
      padding: 12px 15px !important;
      font-size: 0.9rem !important;
      border-radius: 10px !important;
    }

    /* INLINE EMOJI INPUT GROUP */
    .input-group-emoji {
      display: flex;
      align-items: stretch;
      background: rgba(255, 255, 255, 0.015);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: all var(--duration-normal) var(--ease-out-expo);
      width: 100%;
      overflow: hidden;
      height: 48px;
    }
    .input-group-emoji:focus-within {
      border-color: var(--primary);
      background: rgba(255, 107, 0, 0.03);
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
    }
    .emoji-input-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      background: rgba(255, 255, 255, 0.015);
      border-right: 1px solid var(--border);
      flex-shrink: 0;
    }
    .emoji-field {
      width: 100% !important;
      height: 100% !important;
      text-align: center;
      background: transparent !important;
      border: none !important;
      font-size: 1.3rem !important;
      padding: 0 !important;
      margin-bottom: 0 !important;
      cursor: pointer;
    }
    .name-field {
      flex: 1;
      background: transparent !important;
      border: none !important;
      margin-bottom: 0 !important;
      padding: 12px 15px !important;
      color: white;
    }
    .name-field:focus {
      background: transparent !important;
      box-shadow: none !important;
      outline: none !important;
    }

    /* CUSTOM SELECT */
    select.auth-input {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 16px;
      padding-right: 40px !important;
      text-align: left;
      cursor: pointer;
    }
    select.auth-input:focus {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    }

    /* DIETARY SEGMENTED CONTROL */
    .segmented-control {
      position: relative;
      display: flex;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 3px;
      height: 48px;
      align-items: stretch;
    }
    .segmented-slider {
      position: absolute;
      top: 3px;
      left: 3px;
      width: calc(50% - 4.5px);
      height: calc(100% - 6px);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 9px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform var(--duration-normal) var(--ease-spring);
      z-index: 1;
      pointer-events: none;
    }
    .segmented-control.nonveg-active .segmented-slider {
      transform: translateX(calc(100% + 3px));
    }
    .segmented-btn {
      flex: 1;
      background: transparent !important;
      border: none !important;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.78rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s var(--ease-out-expo);
      border-radius: 9px;
      z-index: 2;
      position: relative;
    }
    .segmented-btn:hover {
      color: var(--text);
    }
    .segmented-btn:active {
      transform: scale(0.94);
      transition: transform 80ms var(--ease-out-expo);
    }
    #btnVeg.active {
      color: #22c55e !important;
    }
    #btnVeg.active .inner-diet-icon {
      background: #22c55e;
      box-shadow: none !important;
    }
    #btnNonVeg.active {
      color: #ef4444 !important;
    }
    #btnNonVeg.active .inner-diet-icon {
      background: #ef4444;
      box-shadow: none !important;
    }
    
    .outer-diet-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      border: 1.5px solid currentColor;
      border-radius: 4px;
    }
    .inner-diet-icon {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted);
      transition: all 0.2s;
    }
    #btnNonVeg .inner-diet-icon {
      width: 7px;
      height: 7px;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      border-radius: 0;
      background: var(--muted);
    }
    @keyframes pulseVeg {
      0% { transform: scale(0.9); opacity: 0.8; }
      100% { transform: scale(1.1); opacity: 1; }
    }

    /* TAG CHIPS INDIVIDUAL COLOR STATE */
    .tag-chip {
      padding: 5px 12px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.02);
      color: var(--muted);
      font-size: 0.7rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all 0.2s ease;
    }
    .tag-chip:hover {
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.12);
      color: var(--text);
      transform: translateY(-1px);
    }
    .tag-chip:active {
      transform: scale(0.95);
    }
    
    .tag-chip.active.spicy {
      background: rgba(239, 68, 68, 0.08) !important;
      border-color: rgba(239, 68, 68, 0.25) !important;
      color: #ef4444 !important;
      box-shadow: none !important;
    }
    .tag-chip.active.best-seller {
      background: rgba(234, 179, 8, 0.08) !important;
      border-color: rgba(234, 179, 8, 0.25) !important;
      color: #eab308 !important;
      box-shadow: none !important;
    }
    .tag-chip.active.new {
      background: rgba(59, 130, 246, 0.08) !important;
      border-color: rgba(59, 130, 246, 0.25) !important;
      color: #3b82f6 !important;
      box-shadow: none !important;
    }
    .tag-chip.active.popular {
      background: rgba(168, 85, 247, 0.08) !important;
      border-color: rgba(168, 85, 247, 0.25) !important;
      color: #a855f7 !important;
      box-shadow: none !important;
    }
    .tag-chip.active.special {
      background: rgba(236, 72, 153, 0.08) !important;
      border-color: rgba(236, 72, 153, 0.25) !important;
      color: #ec4899 !important;
      box-shadow: none !important;
    }

    /* BUILDER CONTAINER CARDS & Sleek builder row components */
    #sizesBuilderContainer, #addonsBuilderContainer {
      background: rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 12px;
      padding: 12px;
      transition: border-color 0.2s;
    }
    #sizesBuilderContainer:hover, #addonsBuilderContainer:hover {
      border-color: rgba(255, 255, 255, 0.08);
    }
    .builder-row input.auth-input {
      padding: 8px 12px !important;
      font-size: 0.82rem !important;
      border-radius: 8px !important;
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid rgba(255, 255, 255, 0.06) !important;
      color: white;
    }
    .builder-row input.auth-input:focus {
      border-color: var(--primary) !important;
      background: rgba(255, 107, 0, 0.02) !important;
      box-shadow: none !important;
    }
    .builder-row .price-symbol {
      position: absolute;
      left: 12px;
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 700;
      pointer-events: none;
    }
    .builder-row input.size-price, .builder-row input.addon-price {
      padding-left: 25px !important;
    }
    .builder-row .trash-btn {
      padding: 0;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.3);
      height: 34px;
      width: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .builder-row .trash-btn:hover {
      background: rgba(239, 68, 68, 0.08);
      color: #ef4444;
      transform: scale(1.05);
    }
    .builder-row .trash-btn:active {
      transform: scale(0.95);
    }
    
    .action-btn.add-btn {
      background: rgba(255, 107, 0, 0.05) !important;
      border: 1px solid rgba(255, 107, 0, 0.15) !important;
      color: var(--primary) !important;
      font-size: 0.72rem !important;
      font-weight: 800 !important;
      letter-spacing: 0.5px;
      padding: 6px 12px !important;
      border-radius: 20px !important;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    .action-btn.add-btn:hover {
      background: rgba(255, 107, 0, 0.1) !important;
      border-color: rgba(255, 107, 0, 0.3) !important;
      transform: translateY(-1px);
      box-shadow: none !important;
    }
    .action-btn.add-btn:active {
      transform: scale(0.97);
      box-shadow: none !important;
    }

    .product-modal-body .form-group {
      margin-bottom: 15px;
    }
    .product-modal-body .auth-input, 
    .product-modal-body select, 
    .product-modal-body textarea,
    .product-modal-body .input-group-emoji {
      margin-bottom: 0 !important;
    }
    .form-section-title {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 20px;
      margin-top: 10px;
    }

    .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
    .modal-content {
      background: radial-gradient(circle at top left, #1d1d22, #0d0d0f);
      padding: 30px;
      border-radius: 28px;
      width: 100%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      border: 1px solid var(--border);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    
    /* Product Modal Specifics */
    .product-modal-content {
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      max-width: 600px;
      height: 85vh;
      background: radial-gradient(circle at top left, #1d1d22, #0d0d0f) !important;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
      border: 1px solid var(--border);
    }
    .product-modal-header {
      padding: 22px 28px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
    }
    .product-modal-body {
      padding: 24px 28px;
      overflow-y: auto;
      flex: 1;
    }
    .product-modal-body::-webkit-scrollbar {
      width: 6px;
    }
    .product-modal-body::-webkit-scrollbar-track {
      background: transparent;
    }
    .product-modal-body::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
    }
    .product-modal-body::-webkit-scrollbar-thumb:hover {
      background: rgba(255,255,255,0.2);
    }
    .product-modal-footer {
      padding: 20px 28px;
      background: rgba(18, 18, 20, 0.95);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      display: flex;
      gap: 15px;
      align-items: center;
    }
    .json-area { width: 100%; height: 100px; background: #000; color: #0f0; padding: 10px; border-radius: 12px; font-family: monospace; font-size: 0.8rem; border: 1px solid var(--border); }
    
    /* TOGGLE SWITCH */
    .toggle-switch { position: relative; display: inline-block; width: 40px; height: 20px; }
    .toggle-switch input { opacity: 0; width: 0; height: 0; }
    .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--border); transition: .4s; border-radius: 34px; }
    .slider:before { position: absolute; content: ""; height: 14px; width: 14px; 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(20px); }

    .hidden { display: none; }

    /* POS Full Screen Overlay & Layout */
    #quickBillModal {
      padding: 0 !important;
      background: #0a0a0c !important;
      align-items: stretch !important;
      justify-content: stretch !important;
      backdrop-filter: none !important;
    }
    #quickBillModal .modal-content {
      width: 100vw !important;
      max-width: 100vw !important;
      height: 100vh !important;
      max-height: 100vh !important;
      border-radius: 0 !important;
      border: none !important;
      margin: 0 !important;
      padding: 20px !important;
      display: flex !important;
      flex-direction: column !important;
      background: #0a0a0c !important;
    }

    #posCategories {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 8px;
      margin-bottom: 12px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    #posCategories::-webkit-scrollbar {
      display: none;
    }

    #posItems {
      display: grid !important;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
      grid-auto-rows: max-content !important;
      gap: 12px !important;
      align-content: start !important;
    }
    @media (max-width: 600px) {
      #posItems {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 10px !important;
        padding: 10px !important;
      }
    }

    .pos-item-card {
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid var(--border) !important;
      border-radius: 16px !important;
      padding: 12px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      gap: 8px !important;
      transition: all 0.2s ease-in-out !important;
      cursor: pointer !important;
      position: relative !important;
      overflow: hidden !important;
    }
    .pos-item-card:hover {
      background: rgba(255, 255, 255, 0.05) !important;
      border-color: rgba(255, 107, 0, 0.3) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
    }

    .pos-size-btn {
      flex: 1 1 auto;
      min-width: calc(50% - 6px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 6px 4px;
      background: rgba(255, 107, 0, 0.06);
      border: 1px solid rgba(255, 107, 0, 0.15);
      border-radius: 8px;
      color: var(--text);
      cursor: pointer;
      transition: all 0.15s ease-in-out;
      font-family: inherit;
    }
    .pos-size-btn:hover {
      background: var(--primary) !important;
      color: white !important;
      border-color: var(--primary) !important;
    }
    .pos-size-btn:hover .pos-size-price {
      color: white !important;
    }
    .pos-size-name {
      font-size: 0.6rem;
      font-weight: 700;
      opacity: 0.75;
      text-transform: uppercase;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      max-width: 100%;
    }
    .pos-size-price {
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--primary);
      margin-top: 2px;
      transition: color 0.15s ease-in-out;
    }

    /* POS Split Layout Styles */
    .pos-main-layout {
      display: flex;
      flex: 1;
      gap: 20px;
      overflow: hidden;
      margin-top: 5px;
    }
    .pos-left-panel {
      flex: 1.6;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .pos-right-panel {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: rgba(255,255,255,0.01);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 18px;
    }
    .pos-cat-btn {
      padding: 8px 14px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--glass);
      color: var(--muted);
      font-size: 0.7rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
      font-family: inherit;
    }
    .pos-cat-btn.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      box-shadow: 0 4px 10px rgba(255,107,0,0.15);
    }
    .pos-cat-btn:hover:not(.active) {
      background: rgba(255,255,255,0.06);
      color: var(--text);
    }
    @media (max-width: 900px) {
      .pos-main-layout {
        flex-direction: column;
        overflow: hidden;
      }
      .pos-left-panel, .pos-right-panel {
        flex: 1 !important;
        overflow: hidden !important;
      }
      .pos-mobile-tabs {
        display: flex !important;
      }
      
      /* DEFAULT: Show menu, hide cart */
      .pos-main-layout:not(.mobile-cart-active) .pos-left-panel {
        display: flex !important;
      }
      .pos-main-layout:not(.mobile-cart-active) .pos-right-panel {
        display: none !important;
      }
      
      /* ACTIVE: Hide menu, show cart */
      .pos-main-layout.mobile-cart-active .pos-left-panel {
        display: none !important;
      }
      .pos-main-layout.mobile-cart-active .pos-right-panel {
        display: flex !important;
        margin-top: 0 !important;
        background: rgba(0,0,0,0.2) !important;
        border: none !important;
      }
    }

    /* Home Buttons */
    .home-link {
      display: inline-block;
      margin-top: 25px;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      transition: all var(--duration-normal) var(--ease-out-expo);
      border-bottom: 1px solid transparent;
    }
    .home-link:hover {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }
    .header-btns {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .icon-btn {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: var(--text);
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--duration-normal) var(--ease-out-expo);
      text-decoration: none;
    }
    .icon-btn i {
      width: 16px;
      height: 16px;
      color: var(--muted);
      transition: color 0.2s;
    }
    .icon-btn:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.12);
    }
    .icon-btn:hover i {
      color: var(--text);
    }
    
    /* --- RECEIPT MODAL AND THERMAL PAPER --- */
    #receiptPaper {
      background: #ffffff !important;
      color: #000000 !important;
      font-family: 'Courier New', Courier, monospace !important;
      font-size: 11px !important;
      line-height: 1.35 !important;
      width: 58mm !important;
      max-width: 58mm !important;
      box-sizing: border-box !important;
      padding: 15px 10px !important;
      border-top: 4px dotted #ccc !important;
      border-bottom: 4px dotted #ccc !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    }
    #receiptPaper .center { text-align: center !important; }
    #receiptPaper .bold { font-weight: bold !important; }
    #receiptPaper .separator { border: none !important; border-top: 1px dashed #000 !important; margin: 6px 0 !important; }
    #receiptPaper .double-separator { border: none !important; border-top: 2px solid #000 !important; margin: 6px 0 !important; }
    #receiptPaper .store-logo { width: 40px !important; height: auto !important; margin: 0 auto 4px !important; display: block !important; }
    #receiptPaper .store-name { font-size: 15px !important; font-weight: 900 !important; letter-spacing: 1px !important; margin-bottom: 2px !important; }
    #receiptPaper .store-tagline { font-size: 10px !important; margin-bottom: 2px !important; }
    #receiptPaper .store-address { font-size: 9px !important; color: #333 !important; line-height: 1.3 !important; }
    #receiptPaper .bill-info { display: flex !important; justify-content: space-between !important; font-size: 10px !important; margin: 2px 0 !important; }
    #receiptPaper .item-row { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; font-size: 11px !important; margin: 3px 0 !important; gap: 4px !important; }
    #receiptPaper .item-name { flex: 1 !important; word-break: break-word !important; text-align: left !important; }
    #receiptPaper .item-price { white-space: nowrap !important; font-weight: 600 !important; }
    #receiptPaper .total-row { display: flex !important; justify-content: space-between !important; font-size: 13px !important; font-weight: 900 !important; margin: 4px 0 !important; }
    #receiptPaper .customer-info { font-size: 10px !important; margin: 3px 0 !important; text-align: left !important; }
    #receiptPaper .tax-note { font-size: 9px !important; color: #555 !important; text-align: center !important; margin: 4px 0 !important; }
    #receiptPaper .footer { text-align: center !important; margin-top: 6px !important; }
    #receiptPaper .footer-thanks { font-size: 11px !important; font-weight: bold !important; margin-bottom: 2px !important; }
    #receiptPaper .footer-url { font-size: 8px !important; color: #666 !important; margin-bottom: 6px !important; }
    #receiptPaper .qr-code { width: 80px !important; height: 80px !important; margin: 4px auto !important; display: block !important; }
    
    #zReportPaper {
      background: #ffffff !important;
      color: #000000 !important;
      font-family: 'Courier New', Courier, monospace !important;
      font-size: 11px !important;
      line-height: 1.35 !important;
      width: 58mm !important;
      max-width: 58mm !important;
      box-sizing: border-box !important;
      padding: 15px 10px !important;
      border-top: 4px dotted #ccc !important;
      border-bottom: 4px dotted #ccc !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    }
    #zReportPaper .center { text-align: center !important; }
    #zReportPaper .bold { font-weight: bold !important; }
    #zReportPaper .separator { border: none !important; border-top: 1px dashed #000 !important; margin: 6px 0 !important; }
    #zReportPaper .double-separator { border: none !important; border-top: 2px solid #000 !important; margin: 6px 0 !important; }

    /* ===== DESKTOP SIDEBAR NAVIGATION (≥1024px) ===== */
    @media (min-width: 1024px) {
      .bottom-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: 220px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 16px;
        border-radius: 0;
        border: none;
        border-right: 1px solid var(--border);
        background: rgba(14, 14, 16, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 4px 0 30px rgba(0,0,0,0.3);
        gap: 6px;
        z-index: 1000;
      }
      .sidebar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 10px 20px;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border);
      }
      .sidebar-brand img { width: 40px; height: auto; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(255,107,0,0.3)); }
      .sidebar-brand h2 { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text); }
      
      header .brand { display: none; }
      header { justify-content: flex-end; }
      .nav-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 0.78rem;
        font-weight: 700;
        transition: all var(--duration-normal) var(--ease-out-expo);
      }
      .nav-item:hover {
        background: rgba(255,255,255,0.04);
        color: var(--text);
      }
      .nav-item.active {
        background: rgba(255,107,0,0.1);
        color: var(--primary);
        border: 1px solid rgba(255,107,0,0.15);
      }
      .nav-icon { font-size: 1.1rem; }

      /* Push main content right to make room for sidebar */
      #dashboard {
        margin-left: 220px;
      }
      .container {
        padding-bottom: 40px;
      }
    }

    /* Polished transitions and micro-interactions */
    .order-card { transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out-expo); }
    .order-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

    .product-card { transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out-expo); }
    .product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

    .stat-card { transition: transform 0.2s, border-color 0.2s; }
    .stat-card:hover { transform: translateY(-2px); border-color: rgba(255,107,0,0.2); }

    .btn-primary { transition: transform var(--duration-fast) var(--ease-out-back), filter var(--duration-fast) var(--ease-out-expo), opacity var(--duration-fast) var(--ease-out-expo); box-shadow: none !important; }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: none !important; filter: brightness(1.1); }
    .btn-primary:active { transform: scale(0.97); transition: transform 80ms var(--ease-out-expo); }

    .mini-btn { transition: transform var(--duration-fast) var(--ease-out-back), background var(--duration-fast) var(--ease-out-expo), border-color var(--duration-fast) var(--ease-out-expo); }
    .mini-btn:hover { transform: translateY(-1px); }
    .mini-btn:active { transform: scale(0.95); transition: transform 80ms var(--ease-out-expo); }

    /* Form group spacing polish */
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-label { font-size: 0.72rem; font-weight: 750; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; margin-bottom: 2px; }

    /* Toast animation */
    @keyframes slideInToast {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Empty state */
    .empty-state {
      text-align: center;
      padding: 40px 20px;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Scrollbar styling for dark theme */
    ::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--b); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

    /* ===== MOBILE-SPECIFIC FIXES (≤480px) ===== */
    @media (max-width: 480px) {
      /* Settings tabs: scrollable horizontal, smaller padding */
      .settings-tabs {
        gap: 4px !important;
        padding-bottom: 8px !important;
      }
      .settings-tab {
        padding: 8px 12px !important;
        font-size: 0.65rem !important;
      }

      /* Settings form grids: single column on tiny screens */
      #settingsTab-branding > div[style*="grid-template-columns: 1fr 1fr"],
      #settingsTab-ordering > div[style*="grid-template-columns: 1fr 1fr"],
      #settingsTab-hours > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
      }

      /* POS: Customer name + phone stack vertically */
      #quickBillModal .modal-content > div:nth-child(2) {
        grid-template-columns: 1fr !important;
      }

      /* POS: Discount row wraps */
      #quickBillModal div[style*="DISCOUNT"] {
        flex-wrap: wrap !important;
      }

      /* Smaller action row for order cards */
      .action-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
      }
      .action-row .mini-btn {
        font-size: 0.6rem !important;
        padding: 10px !important;
      }
    }

    /* ===== GENERAL MOBILE (≤768px) ===== */
    @media (max-width: 768px) {
      /* Hide shortcut key tooltips on touch devices */
      kbd, .shortcut-key { display: none !important; }

      /* Ensure container has proper padding for safe areas */
      .container {
        padding: 15px;
        padding-bottom: 100px;
      }

      /* Settings sections: tighter padding */
      .settings-tab-content {
        padding: 15px !important;
      }

      /* Stats grid: 2 columns on mobile */
      .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
      }


      /* Product modal bottom sheet on mobile */
      #productModal {
        align-items: flex-end;
        padding: 0;
      }
      #productModal .product-modal-content {
        border-radius: 24px 24px 0 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 90dvh !important;
        border: none;
        border-top: 1px solid var(--border);
      }
      #productModal .product-modal-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255,255,255,0.2);
        border-radius: 4px;
      }
      #productModal .product-modal-header {
        position: relative;
        padding: 16px 20px !important;
        padding-top: 25px !important;
      }
      #productModal .product-modal-body {
        padding: 20px 20px !important;
      }
      #productModal .product-modal-footer {
        padding: 15px 20px max(15px, env(safe-area-inset-bottom, 15px)) !important;
      }
      /* Order type buttons: slightly smaller */
      .order-type-btn {
        font-size: 0.68rem !important;
        padding: 9px 6px !important;
      }

      /* Section header: wrap if needed */
      .section-header {
        flex-wrap: wrap;
        gap: 10px;
      }

      /* Bill cards: tighter spacing */
      .order-card {
        padding: 15px !important;
      }

      /* Product modal: scroll fix */
      .modal-content {
        padding: 20px !important;
      }

      /* Auth input touch targets */
      .auth-input {
        min-height: 48px;
        font-size: 16px !important; /* prevents iOS zoom on focus */
      }

      /* Toggle switches: bigger touch target */
      .toggle-switch {
        width: 44px !important;
        height: 22px !important;
      }
      .slider:before {
        height: 16px !important;
        width: 16px !important;
      }

      /* Bottom nav safe area */
      .bottom-nav {
        bottom: max(12px, env(safe-area-inset-bottom, 12px)) !important;
        left: 12px !important;
        right: 12px !important;
      }
    }

    /* ===== TABLET / MEDIUM SCREENS ===== */
    @media (min-width: 768px) and (max-width: 1023px) {
      .container {
        max-width: 720px;
        margin: 0 auto;
        padding-bottom: 100px;
      }

      /* Product modal: centered on tablet */
      #productModal .product-modal-content {
        max-width: 600px !important;
        width: 600px !important;
        height: 85vh !important;
        max-height: 92vh !important;
        border-radius: 24px !important;
        margin: auto;
        border: 1px solid var(--border);
      }
      /* Stats: 4 columns on tablet */
      .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
      }
    }

    /* ===== RESPONSIVE MULTI-COLUMN FOR DESKTOP/TABLET ===== */
    @media (min-width: 768px) {
      .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      }
    }

    /* ===== RESPONSIVE TWEAKS FOR ONE-LINE LAYOUT (≤600px) ===== */
    @media (max-width: 600px) {
      .product-card {
        padding: 10px;
        gap: 10px;
      }
      .product-img, .product-emoji {
        width: 60px;
        height: 60px;
      }
      .product-card-actions {
        padding-left: 10px;
        width: auto;
      }
      .product-card-title {
        font-size: 0.95rem;
      }
      .mini-btn {
        padding: 6px 8px !important;
        font-size: 0.7rem !important;
      }
    }

    /* ===== ULTRA-NARROW PHONE RESPONSIVENESS (≤450px) ===== */
    @media (max-width: 450px) {
      .product-card {
        flex-wrap: wrap !important;
      }
      .product-card-actions {
        width: 100% !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-left: none !important;
        border-top: 1px dashed rgba(255,255,255,0.1) !important;
        padding-left: 0 !important;
        padding-top: 12px !important;
        gap: 15px !important;
      }
      .product-card-actions > div {
        margin-top: 0 !important;
        flex: 1 !important;
      }
    }

    /* HEADER CONNECTION STATUS INDICATOR */
    .connection-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 8px;
      padding: 6px 12px;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      height: 36px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      display: inline-block;
      position: relative;
    }
    .status-dot.online {
      background: #22c55e;
    }
    .status-dot.online::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #22c55e;
      animation: statusPulse 2s infinite ease-in-out;
    }
    .status-dot.offline {
      background: #ff6b00;
    }
    .status-dot.offline::after {
      display: none;
    }
    @keyframes statusPulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    /* UNIFIED LOGOUT BUTTON STYLE */
    .logout-btn {
      background: rgba(255, 51, 102, 0.05);
      border: 1px solid rgba(255, 51, 102, 0.15);
      color: var(--danger);
      font-weight: 800;
      font-size: 0.68rem;
      height: 36px;
      padding: 0 14px;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all var(--duration-normal) var(--ease-out-expo);
    }
    .logout-btn:hover {
      background: rgba(255, 51, 102, 0.12);
      border-color: rgba(255, 51, 102, 0.3);
      color: #ff3366;
    }
    .logout-btn .btn-icon {
      display: none;
      width: 16px;
      height: 16px;
    }

    /* RESPONSIVE HEADER MEDIA QUERIES */
    @media (max-width: 600px) {
      header {
        padding: 12px 15px !important;
      }
      .brand h2 {
        font-size: 0.95rem !important;
      }
      .brand img {
        width: 30px !important;
      }
      .header-btns {
        gap: 8px !important;
      }
      .connection-status {
        padding: 0 !important;
        width: 36px;
        height: 36px;
        justify-content: center;
        border-radius: 50% !important;
      }
      .connection-status .status-text {
        display: none !important;
      }
      .logout-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 8px;
      }
      .logout-btn .btn-text {
        display: none;
      }
      .logout-btn .btn-icon {
        display: block;
      }
    }

    /* ===== SKELETON LOADING SYSTEM ===== */
    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }

    .skeleton-shimmer {
      background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.08) 37%, 
        rgba(255, 255, 255, 0.03) 63%
      ) !important;
      background-size: 200% 100% !important;
      animation: shimmer 1.4s ease-in-out infinite !important;
    }

    .skeleton-card {
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid var(--border) !important;
      border-radius: 20px !important;
      padding: 24px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 15px !important;
      height: 220px !important;
    }

    .skeleton-stat {
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid var(--border) !important;
      border-radius: 20px !important;
      padding: 20px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
      height: 100px !important;
    }

    .skeleton-pos-item {
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid var(--border) !important;
      border-radius: 16px !important;
      padding: 12px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      gap: 12px !important;
      height: 140px !important;
    }

    .skeleton-product-row {
      background: rgba(255, 255, 255, 0.02) !important;
      border: 1px solid var(--border) !important;
      border-radius: 16px !important;
      padding: 16px !important;
      display: flex !important;
      align-items: center !important;
      gap: 16px !important;
      height: 90px !important;
      width: 100% !important;
    }

    .skeleton-circle {
      border-radius: 50% !important;
      flex-shrink: 0 !important;
    }

    .skeleton-line {
      height: 12px !important;
      border-radius: 4px !important;
      background: rgba(255, 255, 255, 0.04) !important;
    }

    .skeleton-line.heading {
      height: 18px !important;
      border-radius: 6px !important;
    }

    .skeleton-line.w-20 { width: 20% !important; }
    .skeleton-line.w-30 { width: 30% !important; }
    .skeleton-line.w-40 { width: 40% !important; }
    .skeleton-line.w-50 { width: 50% !important; }
    .skeleton-line.w-60 { width: 60% !important; }
    .skeleton-line.w-70 { width: 70% !important; }
    .skeleton-line.w-80 { width: 80% !important; }
    .skeleton-line.w-100 { width: 100% !important; }

    .skeleton-loading-overlay {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      background: rgba(10, 10, 12, 0.8) !important;
      backdrop-filter: blur(4px) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      z-index: 100 !important;
      opacity: 0 !important;
      pointer-events: none !important;
      transition: opacity 0.2s ease-in-out !important;
    }

    .skeleton-loading-overlay.active {
      opacity: 1 !important;
      pointer-events: auto !important;
    }

    .spinner-dual {
      width: 40px !important;
      height: 40px !important;
      border: 3px solid transparent !important;
      border-top-color: var(--primary) !important;
      border-bottom-color: var(--primary) !important;
      border-radius: 50% !important;
      animation: spin 1s linear infinite !important;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }


