/* ============================================
   Dippemess Frankfurt - Mobile-First App CSS
   ============================================ */

/* CSS Custom Properties */
:root {
  --bg: #0a0a12;
  --surface: #14142a;
  --surface-2: #1e1e3a;
  --surface-3: #2a2a4a;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.15);
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --primary-glow: rgba(99,102,241,0.3);
  --gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --gradient-2: linear-gradient(135deg, #3b82f6, #6366f1);
  --success: #22c55e;
  --success-bg: rgba(34,197,94,0.15);
  --warning: #f59e0b;
  --warning-bg: rgba(245,158,11,0.15);
  --error: #ef4444;
  --error-bg: rgba(239,68,68,0.15);
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-h: 56px;
  --tab-h: 60px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-light); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Typography */
.t-xs { font-size: 0.7rem; }
.t-sm { font-size: 0.8rem; }
.t-md { font-size: 0.9rem; }
.t-lg { font-size: 1.1rem; }
.t-xl { font-size: 1.3rem; }
.t-2xl { font-size: 1.6rem; }
.t-3xl { font-size: 2rem; }
.t-bold { font-weight: 600; }
.t-center { text-align: center; }
.t-muted { color: var(--text-2); }
.t-dim { color: var(--text-3); }
.t-success { color: var(--success); }
.t-warning { color: var(--warning); }
.t-error { color: var(--error); }
.t-primary { color: var(--primary-light); }
.t-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Layout */
.container { width: 100%; max-width: 480px; margin: 0 auto; padding: 0 16px; }
.container-wide { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: 4px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 12px; }
.gap-lg { gap: 16px; }
.gap-xl { gap: 24px; }
.flex-1 { flex: 1; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* Spacing */
.p-sm { padding: 8px; }
.p-md { padding: 12px; }
.p-lg { padding: 16px; }
.p-xl { padding: 20px; }
.p-2xl { padding: 24px; }
.px-md { padding-left: 12px; padding-right: 12px; }
.py-sm { padding-top: 6px; padding-bottom: 6px; }
.py-md { padding-top: 12px; padding-bottom: 12px; }
.mb-xs { margin-bottom: 4px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 12px; }
.mb-lg { margin-bottom: 16px; }
.mb-xl { margin-bottom: 24px; }
.mb-2xl { margin-bottom: 32px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 12px; }
.mt-lg { margin-top: 16px; }
.mt-xl { margin-top: 24px; }

/* Grid */
.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 640px) {
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .sm-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-body { padding: 16px; }
.card-glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  color: #fff;
  transition: all var(--transition);
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; pointer-events: none; }
.btn-primary { background: var(--gradient); box-shadow: 0 4px 15px var(--primary-glow); }
.btn-primary:hover { box-shadow: 0 6px 20px var(--primary-glow); }
.btn-success { background: var(--success); }
.btn-warning { background: var(--warning); color: #000; }
.btn-error { background: var(--error); }
.btn-ghost { background: var(--surface-2); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-3); }
.btn-sm { padding: 8px 14px; font-size: 0.78rem; min-height: 36px; border-radius: var(--radius-xs); }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn-icon {
  width: 40px; height: 40px; padding: 0;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-icon-sm { width: 34px; height: 34px; font-size: 0.8rem; }
.btn-round { border-radius: 50px; }

/* Social Buttons */
.btn-facebook { background: #1877f2; }
.btn-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-2); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  min-height: 44px;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-input::placeholder { color: var(--text-3); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--primary);
}

/* Header - Public */
.app-header {
  background: var(--gradient);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.app-header .logo-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; }
.app-header .logo-wrap img { height: 50px; width: auto; }
.app-header .logo-wrap img:last-child { height: 60px; }
.app-header .subtitle { font-size: 0.78rem; opacity: 0.85; margin-top: 8px; }

/* Header - Admin */
.admin-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px;
  padding-top: var(--safe-top);
}
.admin-header .menu-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--text); font-size: 1.2rem;
}
.admin-header .page-title { font-size: 1.05rem; font-weight: 600; margin-left: 12px; flex: 1; }
.admin-header .header-actions { display: flex; gap: 8px; }

/* Admin Layout */
.admin-body { padding-top: var(--header-h); padding-bottom: calc(var(--tab-h) + var(--safe-bottom)); }
.admin-content { padding: 16px; max-width: 1200px; margin: 0 auto; }

/* Sidebar */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 280px; z-index: 300;
  background: var(--surface); border-right: 1px solid var(--border);
  transform: translateX(-100%); transition: transform 0.3s ease;
  overflow-y: auto; padding: 20px;
  padding-top: calc(20px + var(--safe-top));
}
.sidebar.open { transform: translateX(0); }
.sidebar-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.sidebar-header .logo-icon {
  width: 40px; height: 40px; background: var(--gradient); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.sidebar-user { padding: 12px; background: var(--surface-2); border-radius: var(--radius-sm); margin-bottom: 20px; }
.sidebar-user .user-name { font-weight: 600; font-size: 0.9rem; }
.sidebar-user .user-role { font-size: 0.75rem; color: var(--text-2); text-transform: capitalize; }
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-sm); color: var(--text-2); font-size: 0.88rem;
  transition: all var(--transition); text-decoration: none;
}
.sidebar-nav a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.sidebar-nav a.active { background: var(--primary); color: #fff; }
.sidebar-nav .badge {
  margin-left: auto; background: var(--error); color: #fff;
  font-size: 0.7rem; padding: 2px 8px; border-radius: 50px; font-weight: 600;
}
.sidebar-nav .badge-warn { background: var(--warning); color: #000; }

/* Bottom Tab Bar */
.tab-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  height: calc(var(--tab-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
}
.tab-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--text-3); font-size: 0.65rem; text-decoration: none;
  transition: color var(--transition); position: relative;
}
.tab-item:hover { text-decoration: none; }
.tab-item i { font-size: 1.15rem; }
.tab-item.active { color: var(--primary-light); }
.tab-item .tab-badge {
  position: absolute; top: 4px; right: calc(50% - 18px);
  width: 18px; height: 18px; background: var(--error);
  border-radius: 50%; font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; color: #fff;
}

/* Stat Cards */
.stat-card {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--border-light); }
.stat-card .stat-label { font-size: 0.75rem; color: var(--text-2); margin-bottom: 4px; }
.stat-card .stat-value { font-size: 1.5rem; font-weight: 700; }
.stat-card .stat-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

/* Image Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.gallery-item {
  aspect-ratio: 1; position: relative; overflow: hidden;
  border-radius: var(--radius-sm); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:active img { transform: scale(1.05); }

/* Image Card (Admin) */
.img-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.img-card .img-wrap { aspect-ratio: 1; position: relative; overflow: hidden; }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-card .img-info { padding: 12px; }
.img-card .img-name { font-size: 0.8rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.img-card .img-meta { font-size: 0.72rem; color: var(--text-2); margin-top: 6px; }
.img-card .img-meta span { display: flex; justify-content: space-between; }
.img-card .img-actions { display: flex; gap: 6px; margin-top: 10px; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 50px; font-size: 0.68rem; font-weight: 600;
}
.badge-pending { background: var(--warning-bg); color: var(--warning); }
.badge-approved { background: var(--success-bg); color: var(--success); }
.badge-rejected { background: var(--error-bg); color: var(--error); }
.badge-reported { background: rgba(249,115,22,0.15); color: #f97316; }

/* Upload Area */
.upload-area {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  background: var(--surface);
}
.upload-area.dragover { border-color: var(--primary); background: rgba(99,102,241,0.08); }
.upload-area .upload-icon { font-size: 2.2rem; color: var(--text-3); margin-bottom: 12px; }
.upload-area .upload-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.upload-area .upload-hint { font-size: 0.78rem; color: var(--text-3); margin-bottom: 16px; }

/* Progress Bar */
.progress { height: 6px; background: var(--surface-3); border-radius: 3px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--gradient); border-radius: 3px; transition: width 0.3s ease; }
.progress-text { font-size: 0.72rem; color: var(--text-2); text-align: center; margin-top: 6px; }

/* Preview Grid */
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.preview-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-xs); overflow: hidden; }
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px;
  background: var(--error); color: #fff; border: none; border-radius: 50%;
  font-size: 0.65rem; display: flex; align-items: center; justify-content: center;
}

/* Modal / Lightbox */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface); border-radius: var(--radius); width: 100%; max-width: 500px;
  max-height: 90vh; max-height: 90dvh; overflow-y: auto; position: relative;
}
.modal-lg { max-width: 700px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.05rem; font-weight: 600; }
.modal-close { background: none; border: none; color: var(--text-2); font-size: 1.2rem; padding: 4px; }
.modal-body { padding: 16px; }
.modal-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 600;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 95vw; max-height: 90vh; max-height: 90dvh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  border-radius: 50%; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  top: calc(16px + var(--safe-top));
}

/* Toast */
.toast {
  position: fixed; top: 16px; left: 16px; right: 16px; z-index: 700;
  top: calc(16px + var(--safe-top));
  transform: translateY(-120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateY(0); }
.toast-inner {
  max-width: 480px; margin: 0 auto; padding: 14px 18px;
  border-radius: var(--radius-sm); font-size: 0.85rem; line-height: 1.5;
  box-shadow: var(--shadow-lg);
}
.toast-success { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.toast-error { background: linear-gradient(135deg, #dc2626, #ef4444); color: #fff; }
.toast-info { background: var(--surface-2); border: 1px solid var(--border); color: var(--text); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
.page-link {
  min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-xs);
  color: var(--text-2); font-size: 0.82rem; text-decoration: none; transition: all var(--transition);
}
.page-link:hover { background: var(--surface-3); color: var(--text); text-decoration: none; }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Alert */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: var(--success-bg); border: 1px solid rgba(34,197,94,0.3); color: var(--success); }
.alert-error { background: var(--error-bg); border: 1px solid rgba(239,68,68,0.3); color: var(--error); }
.alert-warning { background: var(--warning-bg); border: 1px solid rgba(245,158,11,0.3); color: var(--warning); }
.alert-info { background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: var(--primary-light); }

/* Info Row */
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-2); }
.info-value { color: var(--text); font-weight: 500; text-align: right; max-width: 60%; word-break: break-all; }

/* Severity borders */
.severity-high { border-left: 4px solid var(--error); }
.severity-medium { border-left: 4px solid #f97316; }
.severity-low { border-left: 4px solid var(--warning); }

/* Empty State */
.empty-state { text-align: center; padding: 48px 20px; }
.empty-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.8rem; color: var(--text-3);
}

/* Chart container */
.chart-wrap { position: relative; height: 250px; }
.chart-wrap canvas { max-height: 250px !important; }

/* Section */
.section { padding: 16px; }
.section-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }

/* Spinner */
.spinner {
  width: 20px; height: 20px; border: 2px solid var(--border-light);
  border-top-color: var(--primary-light); border-radius: 50%;
  animation: spin 0.8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fadeIn 0.3s ease; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 2px; }

/* Footer */
.app-footer { padding: 20px 16px; text-align: center; font-size: 0.72rem; color: var(--text-3); }
.app-footer a { color: var(--text-2); }

/* Login Page */
.login-page {
  min-height: 100vh; min-height: 100dvh;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.login-card {
  width: 100%; max-width: 400px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 32px 24px;
}
.login-logo { text-align: center; margin-bottom: 24px; }
.login-logo i { font-size: 2.5rem; }

/* Action menu dropdown */
.action-menu {
  position: absolute; right: 0; top: 100%; margin-top: 4px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); min-width: 150px; z-index: 50;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.action-menu button {
  width: 100%; text-align: left; padding: 10px 14px; background: none;
  border: none; color: var(--text); font-size: 0.82rem;
  display: flex; align-items: center; gap: 8px; transition: background var(--transition);
}
.action-menu button:hover { background: var(--surface-3); }

/* Table-like list */
.list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.list-item:hover { border-color: var(--border-light); }
.list-icon {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.85rem;
}

/* Report card (admin) */
.report-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.report-card .report-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.report-card .report-body { padding: 14px; }
.report-card .report-reason { padding: 10px; background: var(--error-bg); border-radius: var(--radius-xs); margin-top: 8px; }

/* Responsive Desktop */
@media (min-width: 768px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .container { max-width: 520px; }
}

@media (min-width: 1024px) {
  .admin-body { padding-bottom: 0; }
  .tab-bar { display: none; }
  .admin-header .menu-btn { display: none; }
  .sidebar-overlay { display: none; }
  .sidebar { transform: translateX(0); position: fixed; }
  .admin-header { left: 280px; }
  .admin-body { padding-left: 280px; }
  .admin-content { padding: 24px; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

/* Desktop admin grid adjustments */
@media (min-width: 1024px) {
  .admin-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .admin-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .admin-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Print */
@media print {
  .admin-header, .tab-bar, .sidebar, .sidebar-overlay { display: none !important; }
  .admin-body { padding: 0 !important; }
  body { background: #fff; color: #000; }
}
