  /* ── DASHBOARD ── */
  .dashboard { display: flex; min-height: 100vh; }

  .sidebar {
    width: 264px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    z-index: 100;
    transition: transform 0.3s ease;
  }
  .sidebar-logo { padding: 22px 22px 18px; border-bottom: 1px solid var(--border); }
  .sidebar-nav { padding: 14px 12px; flex: 1; overflow-y: auto; }
  .nav-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
    padding: 14px 12px 6px;
  }
  .nav-section-label:first-child { padding-top: 4px; }
  .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    color: var(--text2);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .nav-item:hover { background: var(--surface2); color: var(--text); }
  .nav-item.active { background: rgba(245,166,35,0.1); color: var(--gold); }
  .nav-item .nav-icon { font-size: 16px; width: 20px; text-align: center; }
  .nav-badge {
    margin-left: auto;
    background: var(--error);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
  }
  .nav-badge.gold { background: var(--gold); color: black; }
  .nav-badge.dot { background: var(--gold); width: 8px; height: 8px; padding: 0; border-radius: 50%; }
  .sidebar-bottom { padding: 14px 12px; border-top: 1px solid var(--border); }
  .sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s;
  }
  .sidebar-user:hover { background: var(--surface2); }
  .user-avatar {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    color: white;
  }
  .user-name { font-size: 13px; font-weight: 600; }
  .user-role { font-size: 11px; color: var(--text3); }

  .main { margin-left: 264px; flex: 1; min-height: 100vh; }

  .topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .topbar-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
  .topbar-actions { display: flex; align-items: center; gap: 10px; }
  .mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; padding: 4px 8px; }

  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  .status-live { background: rgba(34,197,94,0.1); color: var(--success); border: 1px solid rgba(34,197,94,0.2); }
  .status-pending { background: rgba(245,158,11,0.1); color: var(--warning); border: 1px solid rgba(245,158,11,0.2); }
  .status-inactive { background: rgba(239,68,68,0.1); color: var(--error); border: 1px solid rgba(239,68,68,0.2); }
  .status-suspended { background: rgba(160,160,160,0.12); color: var(--text2); border: 1px solid rgba(160,160,160,0.2); }
  .status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

  .page-content { padding: 28px; max-width: 1200px; }

  /* ── CHECKLIST ── */
  .checklist { display: flex; flex-direction: column; gap: 10px; }
  .checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
  }
  .checklist-item:hover { border-color: var(--border2); transform: translateY(-1px); }
  .checklist-item.completed { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
  .checklist-item.locked { opacity: 0.55; cursor: not-allowed; }
  .check-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    transition: all 0.2s;
    font-weight: 700;
    color: var(--text3);
  }
  .completed .check-circle { background: var(--success); border-color: var(--success); color: white; }
  .checklist-text { flex: 1; }
  .checklist-text strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
  .checklist-text span { font-size: 12px; color: var(--text2); }
  .checklist-action { font-size: 12px; color: var(--gold); font-weight: 700; }
  .completed .checklist-action { color: var(--success); }

  .progress-wrap { margin-bottom: 24px; }
  .progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .progress-label { font-size: 13px; color: var(--text2); }
  .progress-pct { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--gold); }
  .progress-bar { height: 6px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
  .progress-fill { height: 100%; background: var(--gradient-h); border-radius: 3px; transition: width 0.6s ease; }

  /* ── HOURS GRID ── */
  .hours-grid { display: flex; flex-direction: column; gap: 8px; }
  .hours-row {
    display: grid;
    grid-template-columns: 110px 1fr 1fr 80px;
    gap: 12px;
    align-items: center;
  }
  .hours-day { font-size: 13px; font-weight: 600; color: var(--text2); }
  .hours-time {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    color-scheme: dark;
  }
  .hours-time:focus { border-color: var(--gold); }
  .hours-time:disabled { opacity: 0.3; cursor: not-allowed; }
  .toggle-wrap { display: flex; align-items: center; justify-content: center; }
  .toggle {
    width: 40px; height: 22px;
    background: var(--surface3);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    outline: none;
    flex-shrink: 0;
  }
  .toggle.on { background: var(--gradient-h); }
  .toggle::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    background: white;
    border-radius: 50%;
    top: 3px; left: 3px;
    transition: transform 0.2s;
  }
  .toggle.on::after { transform: translateX(18px); }

  .ramadan-banner {
    background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(123,47,190,0.08));
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .ramadan-banner.active { background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(123,47,190,0.18)); }
  .ramadan-icon { font-size: 26px; }
  .ramadan-text strong { font-size: 14px; font-weight: 700; display: block; }
  .ramadan-text span { font-size: 12px; color: var(--text2); }

  /* ── UPLOAD ── */
  .upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .upload-zone:hover { border-color: var(--gold); background: rgba(245,166,35,0.03); }
  .upload-zone.dragover { border-color: var(--gold); background: rgba(245,166,35,0.06); }
  .upload-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
  .upload-zone.disabled { opacity: 0.5; cursor: not-allowed; }
  .upload-zone.disabled input { display: none; }
  .upload-icon { font-size: 36px; margin-bottom: 12px; }
  .upload-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
  .upload-sub { font-size: 13px; color: var(--text2); }
  .upload-limit { font-size: 11px; color: var(--text3); margin-top: 8px; }

  .photo-upload-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 18px; }
  .photo-slot {
    aspect-ratio: 1;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    cursor: grab;
    transition: all 0.18s;
    font-size: 22px;
    gap: 4px;
    position: relative;
    overflow: hidden;
  }
  .photo-slot.empty { border-style: dashed; cursor: pointer; }
  .photo-slot.empty:hover { border-color: var(--gold); background: rgba(245,166,35,0.03); }
  .photo-slot.empty span { font-size: 11px; color: var(--text3); }
  .photo-slot.filled { background: var(--surface3); border-color: var(--border2); padding: 0; }
  .photo-slot.filled img { width: 100%; height: 100%; object-fit: cover; }
  .photo-slot.dragging { opacity: 0.4; }
  .photo-slot.drag-over { border-color: var(--gold); transform: scale(0.97); }
  .photo-cover-tag {
    position: absolute; top: 6px; left: 6px;
    background: var(--gold); color: black;
    font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
    padding: 2px 6px; border-radius: 4px;
  }
  .photo-remove {
    position: absolute; top: 6px; right: 6px;
    background: rgba(0,0,0,0.7);
    border: none; color: white;
    width: 22px; height: 22px;
    border-radius: 50%;
    cursor: pointer; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .photo-remove:hover { background: var(--error); }

  .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
  .video-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
  }
  .video-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--surface3);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
  }
  .video-thumb video { width: 100%; height: 100%; object-fit: cover; }
  .video-status {
    position: absolute; top: 8px; right: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .video-approved { background: rgba(34,197,94,0.85); color: white; }
  .video-pending { background: rgba(245,158,11,0.85); color: white; }
  .video-rejected { background: rgba(239,68,68,0.85); color: white; }
  .video-info { padding: 12px; }
  .video-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
  .video-date { font-size: 11px; color: var(--text3); }
  .video-reject-reason {
    background: rgba(239,68,68,0.06);
    border-top: 1px solid rgba(239,68,68,0.2);
    padding: 10px 12px;
    font-size: 11px;
    color: #fca5a5;
    line-height: 1.5;
  }
  .video-card-actions { display: flex; gap: 6px; padding: 0 12px 12px; }

  /* ── MENU BUILDER ── */
  .menu-section {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .menu-section-head {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--surface3);
    border-bottom: 1px solid var(--border);
  }
  .menu-section-head input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    padding: 4px 0;
  }
  .menu-section-head input:focus { border-bottom: 1px solid var(--gold); }
  .menu-items { padding: 8px; }
  .menu-item {
    display: grid;
    grid-template-columns: 30px 1fr 110px 90px 36px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
  }
  .menu-item:hover { background: var(--surface3); }
  .menu-item-handle { color: var(--text3); cursor: grab; font-size: 16px; text-align: center; }
  .menu-item-name { background: transparent; border: none; color: var(--text); font-size: 14px; font-weight: 500; outline: none; padding: 6px 8px; border-radius: 4px; }
  .menu-item-name:focus { background: var(--surface); }
  .menu-item-desc { background: transparent; border: none; color: var(--text2); font-size: 12px; outline: none; padding: 4px 8px; border-radius: 4px; width: 100%; margin-top: 2px; }
  .menu-item-desc:focus { background: var(--surface); color: var(--text); }
  .menu-item-price { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-size: 13px; font-weight: 600; padding: 6px 10px; outline: none; text-align: right; }
  .menu-item-price:focus { border-color: var(--gold); }
  .menu-item-tags { display: flex; gap: 4px; flex-wrap: wrap; }
  .menu-tag {
    font-size: 10px; padding: 2px 6px; border-radius: 4px;
    cursor: pointer; user-select: none;
    border: 1px solid var(--border2); background: var(--surface);
    color: var(--text3); font-weight: 600; letter-spacing: 0.04em;
  }
  .menu-tag.on { background: var(--gold); color: black; border-color: var(--gold); }
  .menu-tag.sold.on { background: var(--error); color: white; border-color: var(--error); }
  .menu-section.dragging { opacity: 0.4; }
  .menu-section.drag-over { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
  .menu-item.dragging { opacity: 0.4; }
  .menu-item.drag-over { background: var(--surface3); outline: 2px dashed var(--gold); outline-offset: -2px; }

  .auto-save-indicator {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text3);
    transition: color 0.3s;
  }
  .auto-save-indicator.saving { color: var(--warning); }
  .auto-save-indicator.saved { color: var(--success); }

  /* ── HALAL TIER ── */
  .tier-display {
    display: flex; align-items: center; gap: 18px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(214,58,138,0.04));
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius);
    transition: background 0.3s, border-color 0.3s;
  }
  .tier-display.tier-pending {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
  }
  .tier-display.tier-pending .tier-name { color: var(--text2); }
  .tier-icon { font-size: 36px; }
  .tier-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gold); }
  .tier-desc { font-size: 13px; color: var(--text2); margin-top: 4px; line-height: 1.5; }
  .reverify-status {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
  }
  .reverify-status.pending { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25); color: var(--gold); }
  .reverify-status.approved { background: rgba(52,199,89,0.08); border: 1px solid rgba(52,199,89,0.25); color: var(--success); }
  .reverify-status.rejected { background: rgba(255,59,48,0.08); border: 1px solid rgba(255,59,48,0.25); color: var(--error); }

  .badge-preview {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
  }

  /* ── ANALYTICS ── */
  .locked-overlay {
    position: relative;
    padding: 64px 32px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }
  .locked-overlay::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(245,166,35,0.04), rgba(123,47,190,0.04));
    pointer-events: none;
  }
  .locked-icon { font-size: 48px; margin-bottom: 16px; }
  .locked-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .locked-text { color: var(--text2); font-size: 14px; max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }

  .chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 200px; padding: 16px 0; }
  .chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: opacity 0.2s;
    min-height: 4%;
  }
  .chart-bar:hover { opacity: 0.85; }
  .chart-bar-label { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: 11px; color: var(--text3); white-space: nowrap; }
  .chart-bar-value { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 600; color: var(--text); white-space: nowrap; }

  .analytics-wrap { position: relative; }
  .analytics-content.blurred { filter: blur(8px); pointer-events: none; user-select: none; }
  .analytics-locked-overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(13,13,13,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    text-align: center; padding: 40px;
  }
  .period-tabs { display: flex; gap: 6px; }
  .period-tab {
    padding: 6px 14px; border-radius: 20px;
    background: var(--surface2); border: 1px solid var(--border);
    color: var(--text2); font-size: 12px; font-weight: 600; cursor: pointer;
    transition: all 0.15s;
  }
  .period-tab:hover { border-color: var(--gold); color: var(--gold); }
  .period-tab.on { background: rgba(245,166,35,0.12); border-color: var(--gold); color: var(--gold); }
  .analytics-empty { text-align: center; padding: 60px 20px; }
  .analytics-empty-icon { font-size: 48px; margin-bottom: 16px; }
  .analytics-empty-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .analytics-empty-text { color: var(--text2); font-size: 14px; max-width: 420px; margin: 0 auto; line-height: 1.6; }

  /* ── BILLING ── */
  .billing-card {
    background: linear-gradient(135deg, var(--surface2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .billing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-h); }
  .billing-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
  .billing-amount sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
  .billing-amount span { font-size: 16px; color: var(--text2); font-weight: 400; }

  .invoice-row {
    display: grid;
    grid-template-columns: 110px 1fr 80px 80px 60px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .invoice-row:last-child { border-bottom: none; }

  /* ── HELP / FAQ ── */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--surface2);
  }
  .faq-q {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    user-select: none;
  }
  .faq-q::after { content: '+'; font-size: 20px; color: var(--gold); transition: transform 0.2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    color: var(--text2);
    font-size: 13px;
    line-height: 1.6;
  }
  .faq-item.open .faq-a { padding: 0 20px 18px; max-height: 600px; }

  .help-tip {
    display: flex; gap: 14px;
    padding: 16px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .help-tip-icon { font-size: 22px; flex-shrink: 0; }
  .help-tip-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
  .help-tip-text { font-size: 13px; color: var(--text2); line-height: 1.5; }

