/* ============================================================
   ZOE ገበታ v1.0 — Production Design System
   Design: Dark sidebar + off-white content + bold accent
   Palette: Charcoal sidebar / Warm white canvas / Electric indigo
   ============================================================ */

:root {
  /* Core palette */
  --sidebar-bg: #0f1117;
  --sidebar-border: rgba(255,255,255,.07);
  --sidebar-text: rgba(255,255,255,.55);
  --sidebar-active: #ffffff;
  --sidebar-pill: rgba(255,255,255,.09);
  --sidebar-pill-active: #5b4fff;

  --canvas: #f5f5f7;
  --surface: #ffffff;
  --surface2: #f0f0f3;
  --surface3: #e8e8ed;

  --ink: #111118;
  --ink2: #3a3a45;
  --muted: #7a7a8c;
  --line: #e4e4ea;

  --accent: #5b4fff;
  --accent2: #7c6fff;
  --accent-glow: rgba(91,79,255,.18);
  --accent-soft: rgba(91,79,255,.08);

  --green: #16a34a;
  --green-bg: #f0fdf4;
  --green-text: #166534;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --amber-text: #92400e;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --red-text: #991b1b;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --blue-text: #1d4ed8;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-accent: 0 8px 24px rgba(91,79,255,.28);

  --sidebar-w: 240px;
  --topbar-h: 60px;

  /* Theme-aware overrides (business themes) */
  --primary: #5b4fff;
  --primary2: #7c6fff;
}

/* ── Business themes ── */
body[data-theme="coffee"]   { --primary:#8b4513; --primary2:#c08432; }
body[data-theme="burger"]   { --primary:#e53e3e; --primary2:#f97316; }
body[data-theme="restaurant"]{ --primary:#2d3748; --primary2:#b45309; }
body[data-theme="juice"]    { --primary:#16a34a; --primary2:#ec4899; }
body[data-theme="hotel"]    { --primary:#1e3a8a; --primary2:#7c3aed; }
body[data-theme="bakery"]   { --primary:#a16207; --primary2:#d946ef; }
body[data-theme="fast_food"]{ --primary:#dc2626; --primary2:#f59e0b; }
body[data-theme="lounge"]   { --primary:#7c3aed; --primary2:#db2777; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--canvas); min-height: 100vh; font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { margin: 0; font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; letter-spacing: -.03em; }
p { margin: 0; }
button { cursor: pointer; font-family: inherit; }

/* ================================================================
   ADMIN SHELL — Sidebar Layout
   ================================================================ */

.admin-shell {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

.sidebar-brand {
  padding: 18px 16px 16px;
  border-bottom: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Wide logo: display as a full-width strip, not a square */
.sidebar-logo-wrap {
  display: block;
  background: white;
  border-radius: 8px;
  padding: 7px 10px;
  line-height: 0;
}
.sidebar-logo-wrap img {
  height: 28px;
  width: auto;
  display: block;
}
/* Fallback square icon (used only when img fails or for platform view) */
.sidebar-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  color: white; font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}
.sidebar-brand-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.sidebar-brand-text small {
  color: var(--sidebar-text);
  font-size: 11px;
}

.sidebar-nav {
  padding: 14px 12px;
  flex: 1;
}
.sidebar-section {
  margin-bottom: 6px;
}
.sidebar-section-label {
  color: var(--sidebar-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 8px 4px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--sidebar-text);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .15s;
  margin-bottom: 1px;
}
.sidebar-link:hover {
  background: var(--sidebar-pill);
  color: rgba(255,255,255,.85);
}
.sidebar-link.active {
  background: var(--sidebar-pill-active);
  color: white;
  font-weight: 600;
}
.sidebar-link .sico {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  opacity: .7;
}
.sidebar-link.active .sico { opacity: 1; }

.sidebar-bottom {
  padding: 14px 12px;
  border-top: 1px solid var(--sidebar-border);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
}
.sidebar-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-user-info strong {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  font-weight: 600;
}
.sidebar-user-info span {
  color: var(--sidebar-text);
  font-size: 11px;
}

/* ── Main content ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar-h);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.4s infinite;
}

/* ── Page content ── */
.page {
  padding: 28px;
  flex: 1;
}

/* ── Layout ── -- backwards compat alias */
.layout { padding: 28px; }

/* ================================================================
   CARDS & SURFACES
   ================================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card-pad { padding: 24px; }
.card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-header h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.card-body { padding: 20px 24px; }

/* glass/hero card compat */
.glass, .hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ================================================================
   STATS / KPI
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-card .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.stat-card .stat-sub {
  font-size: 12px;
  color: var(--muted);
}
.stat-card .stat-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 18px;
  margin-bottom: 4px;
}
/* compat with old .stat class */
.stat { display: flex; align-items: center; justify-content: space-between; }
.stat b { font-size: 28px; font-weight: 800; color: var(--accent); font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn, button[type=submit], button:not(.qty button):not(.nt-close):not(.global-sound-btn):not(#enableSoundBtn):not(#globalSoundBtn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  background: var(--accent);
  color: white;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover, button[type=submit]:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,79,255,.3);
}
.btn.secondary {
  background: var(--surface);
  color: var(--ink2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn.secondary:hover { background: var(--surface2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.green { background: var(--green); color: white; }
.btn.green:hover { box-shadow: 0 6px 20px rgba(22,163,74,.3); }
.btn.danger { background: var(--red); color: white; }
.btn.danger:hover { box-shadow: 0 6px 20px rgba(220,38,38,.3); }
.btn.small, button.small { padding: 6px 12px; font-size: 12.5px; border-radius: 8px; }
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent-glow); }
.btn.ghost:hover { background: var(--accent-soft); }

/* ================================================================
   FORMS
   ================================================================ */
.form { display: grid; gap: 14px; }
label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 5px;
}
.input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { min-height: 80px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a8c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.span-all { grid-column: 1 / -1; }

/* compat grid classes */
.admin-form-grid { display: grid; gap: 13px; }
.admin-form-grid.two { grid-template-columns: 1fr 1fr; }
.admin-form-grid.three { grid-template-columns: 1fr 1fr 1fr; }

/* ================================================================
   TABLES
   ================================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.admin-table, .table, .simple-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .table th, .simple-table th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.admin-table td, .table td, .simple-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink2);
  font-size: 13.5px;
  vertical-align: middle;
}
.admin-table tr:last-child td, .table tr:last-child td, .simple-table tr:last-child td {
  border-bottom: none;
}
.admin-table tr:hover td, .table tr:hover td { background: var(--surface2); }

/* ================================================================
   BADGES / PILLS
   ================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
}
.badge.pending    { background: var(--amber-bg); color: var(--amber-text); }
.badge.preparing  { background: var(--blue-bg);  color: var(--blue-text); }
.badge.ready      { background: var(--green-bg); color: var(--green-text); }
.badge.served     { background: var(--surface2); color: var(--ink2); }
.badge.cancelled  { background: var(--red-bg);   color: var(--red-text); }
.badge.partial    { background: #fff7ed;          color: #9a3412; }
.badge.paid       { background: var(--green-bg); color: var(--green-text); }
.badge.trial      { background: var(--blue-bg);  color: var(--blue-text); }
.badge.active     { background: var(--green-bg); color: var(--green-text); }
.badge.expired    { background: var(--red-bg);   color: var(--red-text); }
.badge.suspended  { background: var(--surface2); color: var(--muted); }

/* pill alias */
.pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 700; background: var(--accent-soft); color: var(--accent); }

/* ================================================================
   NOTICES / ALERTS
   ================================================================ */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 10px 0;
  font-size: 13.5px;
  font-weight: 500;
  border-left: 3px solid;
}
.notice { background: var(--amber-bg); color: var(--amber-text); border-color: var(--amber); }
.notice.success, .success { background: var(--green-bg); color: var(--green-text); border-color: var(--green); }
.notice.error, .error { background: var(--red-bg); color: var(--red-text); border-color: var(--red); }

/* ================================================================
   LOGIN PAGE
   ================================================================ */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--sidebar-bg);
  padding: 20px;
}
.login-card {
  width: min(420px, 94vw);
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.login-logo {
  display: block;
  margin-bottom: 20px;
}
.login-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.login-card h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.04em;
}
.login-card > p { color: var(--muted); margin-bottom: 24px; font-size: 13.5px; }
.login-hint { color: var(--muted); font-size: 12px; margin-top: 16px; line-height: 1.6; }

/* ================================================================
   PAGE TITLE / BREADCRUMB
   ================================================================ */
.page-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.page-title h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
}
.page-title p, .page-title .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
/* compat */
.admin-page-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.admin-page-title h1 { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -.04em; }
.admin-page-title p { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ================================================================
   ADMIN MENU PAGE LAYOUT
   ================================================================ */
.admin-menu-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}
.admin-panel { padding: 22px; }
.admin-panel h2 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.compact-panel { position: sticky; top: calc(var(--topbar-h) + 16px); }

.menu-admin-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 14px; margin-top: 14px; }
.admin-menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.admin-item-main { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; }
.admin-menu-photo {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface2);
  border: 1px solid var(--line);
}
.no-photo {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--muted);
}
.admin-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 6px; font-size: 12.5px; color: var(--muted); }
.admin-meta b { color: var(--accent); font-size: 14px; font-weight: 700; }
.translation-preview { font-size: 12px; color: var(--muted); margin-top: 6px; }
.admin-card-actions { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.admin-thumb { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: var(--surface2); border: 1px solid var(--line); }
.upload-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.list-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.list-head h2 { font-size: 15px; font-weight: 700; }

.edit-drawer summary { list-style: none; cursor: pointer; }
.edit-drawer summary::-webkit-details-marker { display: none; }
.edit-form { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); }

.check-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; background: var(--surface2); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; }
.check-row label { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 13px; font-weight: 500; }
.translation-box { background: var(--surface2); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.translation-box summary { font-weight: 700; cursor: pointer; color: var(--ink); font-size: 13px; }
.mini-row { display: grid; grid-template-columns: 1fr 90px; gap: 10px; }

/* ================================================================
   ORDERS / KITCHEN
   ================================================================ */
.kitchen-grid-v14 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.kitchen-ticket {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.kitchen-ticket:hover { box-shadow: var(--shadow); }
.kitchen-ticket.pending { border-top: 3px solid var(--amber); }
.kitchen-ticket.preparing { border-top: 3px solid var(--blue); }
.kitchen-ticket.ready { border-top: 3px solid var(--green); }
.kitchen-ticket.served { border-top: 3px solid var(--muted); opacity: .7; }
.kitchen-ticket.cancelled { border-top: 3px solid var(--red); opacity: .6; }

.ticket-head {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.ticket-head h2 { font-size: 15px; font-weight: 800; color: var(--ink); }
.ticket-head p { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ticket-items { padding: 12px 16px; }
.kitem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.kitem:last-child { border-bottom: none; }
.kitem small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.kitem b { color: var(--accent); }
.ticket-note {
  margin: 0 16px 12px;
  padding: 8px 10px;
  background: var(--amber-bg);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--amber-text);
}
.ticket-total {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface2);
  font-size: 12.5px;
  color: var(--muted);
}
.ticket-total strong { font-size: 15px; font-weight: 800; color: var(--ink); }
.ticket-actions {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.ticket-actions button {
  flex: 1;
  min-width: 60px;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 8px;
}
.ticket-actions button.danger { background: var(--red); }
.status-badge { display: inline-flex; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.status-badge.pending { background: var(--amber-bg); color: var(--amber-text); }
.status-badge.preparing { background: var(--blue-bg); color: var(--blue-text); }
.status-badge.ready { background: var(--green-bg); color: var(--green-text); }
.status-badge.served { background: var(--surface2); color: var(--ink2); }
.status-badge.cancelled { background: var(--red-bg); color: var(--red-text); }

.orders-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; }
.order-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--accent); }
.order-card.new { animation: pulseGlow 1s ease-in-out 3; }
.order-items { margin: 10px 0; padding-left: 16px; font-size: 13px; color: var(--ink2); }

/* ================================================================
   CASHIER
   ================================================================ */
.cashier-shell { display: grid; grid-template-columns: 1fr 400px; gap: 20px; align-items: start; }
.cashier-left {}
.payment-box { position: sticky; top: calc(var(--topbar-h) + 16px); }
.cashier-layout { display: grid; grid-template-columns: 1fr 420px; gap: 20px; align-items: start; }

.income-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--radius);
  padding: 22px;
  color: white;
  margin-bottom: 18px;
}
.income-banner small { font-size: 11.5px; opacity: .75; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.income-banner h1 { font-size: 36px; font-weight: 900; margin: 4px 0; letter-spacing: -.04em; }
.income-banner p { opacity: .7; font-size: 13px; }
.method-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.method-pills span { background: rgba(255,255,255,.15); border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 600; display: flex; gap: 8px; }
.method-pills b { opacity: .9; }

.pay-order-list { display: grid; gap: 8px; margin-bottom: 20px; }
.pay-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .15s;
}
.pay-card:hover { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.pay-card h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.pay-card small { font-size: 12px; color: var(--muted); }
.pay-card b { font-size: 16px; font-weight: 800; color: var(--red); }
.partial-pill { background: var(--amber-bg); color: var(--amber-text); border-radius: 999px; padding: 1px 7px; font-size: 11px; font-weight: 700; margin-left: 6px; }

.history-list { display: grid; gap: 6px; }
.history-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
}
.history-row b { color: var(--ink); font-weight: 700; }
.history-row span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

.payment-row { background: var(--surface2); border: 1px solid var(--line); border-radius: 10px; padding: 14px; margin-bottom: 8px; }
.payment-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-row-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.payment-row-actions small { color: var(--muted); font-size: 12px; }

.split-summary { background: var(--surface2); border-radius: 10px; padding: 14px; margin: 12px 0; }
.split-summary > div { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: 13.5px; color: var(--ink2); border-bottom: 1px solid var(--line); }
.split-summary > div:last-child { border-bottom: none; }
.split-summary b { font-weight: 700; color: var(--ink); }

.pp-lines { display: grid; gap: 4px; margin: 10px 0; background: var(--surface2); border-radius: 8px; padding: 10px; }
.pp-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink2); }
.pp-line b { font-weight: 600; }

.empty-pay { padding: 40px 20px; text-align: center; color: var(--muted); font-size: 13.5px; }

/* ================================================================
   CUSTOMER MENU PAGE
   ================================================================ */
.customer-shell { max-width: 820px; margin: 0 auto; padding-bottom: 100px; }
.customer-head {
  background: linear-gradient(155deg, var(--primary), var(--primary2));
  color: white;
  padding: 28px 20px 40px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}
.customer-head::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.customer-head .brand { display: flex; align-items: center; gap: 12px; }
.customer-head .logo {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center;
  font-size: 22px; color: white;
  backdrop-filter: blur(10px);
}
.customer-head b { font-size: 17px; font-weight: 800; }
.customer-head small { font-size: 12px; opacity: .75; }
.customer-head h1 { margin: 16px 0 4px; font-size: 22px; font-weight: 800; }
.customer-head p { opacity: .8; font-size: 13.5px; }

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  background: rgba(245,245,247,.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  box-shadow: var(--shadow-sm);
  transition: all .15s;
}
.category-tabs a:hover, .category-tabs a.active {
  background: var(--primary);
  color: white;
  border-color: transparent;
}

.menu-section { padding: 0 16px 8px; }
.menu-section h2 { font-size: 16px; font-weight: 800; margin: 20px 0 10px; letter-spacing: -.02em; }
.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.menu-card.has-img { grid-template-columns: 88px 1fr auto; }
.menu-img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); background: var(--surface2); }
.menu-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.menu-card p { font-size: 12.5px; color: var(--muted); }
.price { font-size: 17px; font-weight: 800; color: var(--primary); margin-top: 6px; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-glow);
  font-size: 17px;
  font-weight: 700;
  padding: 0;
  display: grid; place-items: center;
  box-shadow: none;
  transform: none;
}
.qty button:hover { background: var(--accent); color: white; transform: none; box-shadow: none; }
.item-body .input { margin-top: 8px; padding: 8px 10px; font-size: 12.5px; }
.item-actions { display: grid; gap: 8px; align-content: start; }
.item-actions > button {
  padding: 8px 12px;
  font-size: 12.5px;
  border-radius: 9px;
  white-space: nowrap;
}

.cartbar {
  position: fixed;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  width: min(780px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  z-index: 50;
  cursor: pointer;
}
.cartbar span { font-size: 13px; font-weight: 600; opacity: .7; }
.cartbar b { font-size: 14px; font-weight: 700; }

.cart-panel {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--surface);
  border-radius: 28px 28px 0 0;
  padding: 24px;
  box-shadow: 0 -20px 60px rgba(0,0,0,.18);
  z-index: 80;
  max-height: 84vh;
  overflow: auto;
  display: none;
}
.cart-panel.show { display: block; animation: slideUp .22s ease; }
.cart-panel h2 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }

.lang-switch { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0 8px; }
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.lang-switch a.active { background: white; color: var(--primary); }

/* ================================================================
   LANDING PAGE
   ================================================================ */
.landing-page {
  min-height: 100vh;
  background: var(--sidebar-bg);
  color: white;
}
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--sidebar-border);
}
.landing-logo { display: flex; align-items: center; gap: 10px; }
.landing-logo .icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: grid; place-items: center; font-size: 18px; box-shadow: var(--shadow-accent); }
.landing-logo strong { font-size: 15px; font-weight: 700; color: white; }
.landing-logo small { display: block; color: var(--sidebar-text); font-size: 11px; }
.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
  color: white;
  margin-bottom: 16px;
}
.landing-hero h1 span { color: var(--accent2); }
.landing-hero p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-art-glow {
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(91,79,255,.4), transparent 70%);
  filter: blur(20px);
}
.hero-art-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 72px;
  opacity: .9;
}
.hero-art-label {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 16px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-art-label small { display: block; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 500; letter-spacing: .02em; margin-top: 2px; }

.landing-flow { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.landing-flow span {
  background: rgba(91,79,255,.15);
  border: 1px solid rgba(91,79,255,.3);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 0 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.mini-feature {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
}
.mini-feature b { display: block; font-size: 15px; color: white; margin-bottom: 6px; font-weight: 700; }
.mini-feature span { font-size: 13.5px; color: rgba(255,255,255,.5); }
.mini-feature a { color: var(--accent2); font-weight: 600; }

/* ================================================================
   PLATFORM PAGE
   ================================================================ */
.platform-shell { display: grid; grid-template-columns: 380px 1fr; gap: 20px; align-items: start; }

/* ================================================================
   QR CARDS / TABLES
   ================================================================ */
.qr-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.table-qr-card { text-align: center; }
.qr { background: white; padding: 14px; border-radius: var(--radius); display: inline-block; border: 1px solid var(--line); }
.qr img { display: block; width: 140px; height: 140px; }
.qr.big { padding: 18px; }
.qr-card-top { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 14px; }
.qr-card-top h3 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0; text-align: left; }
.qr-card-top span { font-size: 13px; color: var(--muted); }
.amharic-line { color: var(--muted); font-size: 13px; }
.qr-link { word-break: break-all; }
.no-print .btn { margin: 3px; }

/* ================================================================
   SETUP STEPS
   ================================================================ */
.setup-steps { display: grid; gap: 12px; }
.setup-steps > div { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; }
.setup-steps b { width: 32px; height: 32px; border-radius: 9px; background: var(--accent); color: white; display: grid; place-items: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }

/* ================================================================
   THEME PREVIEW
   ================================================================ */
.theme-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 8px; margin-top: 8px; }
.theme-pill { background: var(--surface2); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; font-size: 12.5px; font-weight: 600; }
.theme-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); vertical-align: middle; margin-right: 5px; }

/* ================================================================
   NOTIFICATIONS
   ================================================================ */
.global-notify { position: fixed; right: 18px; top: 76px; z-index: 999; display: grid; gap: 10px; width: min(360px, 92vw); pointer-events: none; }
.notify-toast {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 14px 44px 14px 14px;
  color: var(--ink);
  position: relative;
  animation: slideInRight .22s ease;
  pointer-events: all;
}
.notify-toast b { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.notify-toast span { display: block; color: var(--muted); font-size: 12.5px; }
.notify-toast a { display: inline-flex; margin-top: 8px; background: var(--accent); color: white; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; box-shadow: none; transform: none; }
.notify-toast a:hover { filter: brightness(1.1); }
.notify-toast.cashier { border-left: 4px solid var(--amber); }
.notify-toast.payment { border-left: 4px solid var(--green); }
.notify-toast.new     { border-left: 4px solid var(--accent); }
.nt-close { position: absolute; right: 10px; top: 10px; width: 24px; height: 24px; padding: 0; border-radius: 50%; background: var(--surface2); color: var(--muted); font-size: 14px; display: grid; place-items: center; box-shadow: none; }
.nt-close:hover { background: var(--line); transform: none; }

.global-sound-btn {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 998;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.popup {
  position: fixed;
  right: 20px; top: 76px;
  background: var(--ink);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  max-width: 300px;
  font-size: 13.5px;
}
.popup.show { display: block; animation: slideInRight .22s ease; }

/* ================================================================
   REPORTS
   ================================================================ */
.section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 20px 0 12px; }
.section-title h2 { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ================================================================
   MISC / COMPAT
   ================================================================ */
.hero { padding: 0; }
.hero-panel { padding: 24px; margin-bottom: 18px; }
.hero-panel h1 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.hero-panel p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.hero-panel .btn { margin-right: 8px; margin-bottom: 8px; }
.dark-card { background: linear-gradient(135deg, var(--ink), #1e1e2e); color: white; }
.dark-card h1 { color: white; font-size: 20px; }
.dark-card p { color: rgba(255,255,255,.65); font-size: 13.5px; margin-top: 4px; }
.live-pill { background: rgba(22,163,74,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.2); border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.live-pill::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 1.4s infinite; }

.cashier-history { display: grid; gap: 8px; margin-top: 14px; }
.remaining-box { background: var(--surface2); border: 1px solid var(--line); border-radius: 10px; padding: 14px; margin: 10px 0; font-weight: 700; }
.paid-summary { color: var(--green); }
.remaining-summary { color: var(--amber); }

.table-responsive { overflow-x: auto; }
.inline-form { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.inline-form select { width: auto; }
.small-date { width: 150px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.form-grid.compact { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

.container { width: min(1180px, 94vw); margin: auto; }

/* nav compat for old topbar */
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a { padding: 7px 12px; border-radius: 8px; color: var(--muted); font-weight: 600; font-size: 13px; }
.nav a:hover, .nav a.active { background: var(--accent-soft); color: var(--accent); }

/* old topbar compat (still used in admin_header shell) */
.topbar-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar small { color: var(--muted); }
.brand { display: flex; align-items: center; gap: 10px; }
.logo { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: grid; place-items: center; color: white; font-size: 20px; box-shadow: var(--shadow-accent); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes pulseGlow { 0%,100% { box-shadow: var(--shadow-sm); } 50% { box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow); } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes steam { 50% { transform: translateY(-8px); opacity: .5; } }

/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
  .sidebar, .topbar, .admin-card-actions, .no-print, .cartbar, .cart-panel, .global-notify, .global-sound-btn { display: none !important; }
  .main-content { margin-left: 0; }
  .qr-card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 220px; }
  .admin-menu-layout { grid-template-columns: 1fr; }
  .cashier-shell, .cashier-layout { grid-template-columns: 1fr; }
  .platform-shell { grid-template-columns: 1fr; }
  .payment-box { position: static; }
  .compact-panel { position: static; }
  .menu-admin-list { grid-template-columns: 1fr; }
  .landing-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .topbar { padding: 0 16px; }
  .page, .layout { padding: 16px; }
  .landing-nav { padding: 16px 20px; }
  .landing-hero { padding: 40px 20px; }
  .landing-cards { padding: 0 20px 40px; }
  .form-row, .admin-form-grid.two, .admin-form-grid.three { grid-template-columns: 1fr; }
  .admin-table thead { display: none; }
  .admin-table tr { display: block; margin-bottom: 10px; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--line); overflow: hidden; }
  .admin-table td { display: block; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .admin-table td:last-child { border-bottom: none; }
  .cashier-shell, .cashier-layout { grid-template-columns: 1fr; }
  .kitchen-grid-v14 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .topbar { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 10px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .menu-admin-list { grid-template-columns: 1fr; }
  .qr-card-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   ORDER ENTRY PAGE (waiter manual order system)
   ================================================================ */
.order-entry-shell {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .order-entry-shell { grid-template-columns: 1fr; }
}

/* ================================================================
   ZOE ገበታ — ZOE Digital Solutions product layer
   ================================================================ */
.mobile-menu-btn { display:none; width:38px; height:38px; padding:0; border-radius:10px; border:1px solid var(--line); background:var(--surface); color:var(--ink); box-shadow:none; font-size:18px; }
.sidebar-overlay { display:none; }
.station-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.k-mod { display:block; color:var(--accent); margin-top:3px; }
.kitchen-empty { text-align:center; grid-column:1/-1; }
.kitchen-empty-icon { width:54px; height:54px; margin:0 auto 12px; border-radius:16px; display:grid; place-items:center; background:var(--green-bg); color:var(--green); font-size:28px; font-weight:800; }
.kitchen-empty p { color:var(--muted); margin-top:6px; }
.pay-card { width:100%; border:1px solid var(--line); text-align:left; font:inherit; color:inherit; }
.pay-card > b small { display:block; color:#8d7250; font-size:11px; font-weight:600; }

.appetit-login-wrap { background:radial-gradient(circle at 20% 0%,rgba(91,79,255,.16),transparent 34%),#0c0d12; }
.appetit-login-card { max-width:460px; padding:34px; }
.appetit-login-brand { display:flex; align-items:center; gap:13px; margin-bottom:26px; }
.appetit-login-brand img { width:88px; max-height:34px; object-fit:contain; background:#fff; border-radius:8px; padding:6px; }
.appetit-login-brand strong { display:block; font-family:ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif; font-size:18px; letter-spacing:-.04em; }
.appetit-login-brand small { color:var(--muted); font-size:11px; }
.login-kicker { display:inline-flex; background:var(--accent-soft); color:var(--accent); border-radius:999px; padding:5px 9px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.login-back { display:inline-block; color:var(--muted); margin-top:18px; font-size:12.5px; }

/* Public website */
.appetit-site { --site-bg:#f4f3ef; --site-ink:#11120f; --site-muted:#696b64; --site-green:#d8ff3e; --site-purple:#6657ff; background:var(--site-bg); color:var(--site-ink); }
.appetit-site-header { position:sticky; top:0; z-index:50; min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:24px; padding:14px clamp(20px,5vw,76px); background:rgba(244,243,239,.88); backdrop-filter:blur(18px); border-bottom:1px solid rgba(17,18,15,.08); }
.appetit-brand { display:flex; align-items:center; gap:10px; min-width:max-content; }
.appetit-brand-mark { width:38px; height:38px; border-radius:12px; display:grid; place-items:center; background:#11120f; color:var(--site-green); font-family:ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif; font-weight:900; font-size:18px; }
.appetit-brand strong { display:block; font:800 16px/1 'Plus Jakarta Sans'; letter-spacing:-.04em; }
.appetit-brand small { display:block; margin-top:4px; color:#777970; text-transform:uppercase; letter-spacing:.13em; font-size:8px; font-weight:800; }
.appetit-site-nav { display:flex; gap:28px; font-size:13px; color:#55574f; font-weight:600; }
.appetit-site-nav a:hover { color:#11120f; }
.appetit-nav-actions { display:flex; align-items:center; gap:8px; }
.site-link-btn,.site-primary-btn,.site-ghost-btn,.site-ghost-dark-btn { display:inline-flex; align-items:center; justify-content:center; border-radius:999px; min-height:42px; padding:0 18px; font-weight:750; font-size:12.5px; transition:.2s ease; }
.site-link-btn { color:#383a34; }
.site-primary-btn { background:#11120f; color:#fff; box-shadow:0 8px 24px rgba(17,18,15,.12); }
.site-primary-btn:hover { transform:translateY(-2px); }
.site-primary-btn.large,.site-ghost-btn.large { min-height:52px; padding:0 24px; font-size:13.5px; }
.site-ghost-btn { border:1px solid rgba(255,255,255,.18); color:#fff; background:rgba(255,255,255,.06); }
.site-ghost-dark-btn { border:1px solid rgba(17,18,15,.15); color:#11120f; }

.appetit-hero { min-height:740px; display:grid; grid-template-columns:minmax(0,.9fr) minmax(560px,1.1fr); gap:6vw; align-items:center; padding:80px clamp(24px,6vw,92px) 92px; overflow:hidden; position:relative; }
.appetit-hero::before { content:''; position:absolute; width:420px; height:420px; border-radius:50%; background:rgba(216,255,62,.45); filter:blur(90px); left:-260px; top:80px; pointer-events:none; }
.site-kicker,.section-eyebrow { display:flex; align-items:center; gap:9px; text-transform:uppercase; letter-spacing:.15em; font-size:10px; font-weight:900; color:#66695f; margin-bottom:20px; }
.site-kicker span { width:8px; height:8px; border-radius:50%; background:#87b600; box-shadow:0 0 0 5px rgba(135,182,0,.12); }
.appetit-hero h1 { max-width:790px; font-size:clamp(48px,5.2vw,82px); line-height:.98; letter-spacing:-.075em; }
.appetit-hero h1 em { font-style:normal; color:#6657ff; }
.appetit-hero-copy > p { max-width:680px; color:var(--site-muted); font-size:17px; line-height:1.75; margin:28px 0 30px; }
.appetit-hero-actions { display:flex; gap:10px; flex-wrap:wrap; }
.appetit-hero .site-ghost-btn { color:#22231f; border-color:rgba(17,18,15,.14); background:rgba(255,255,255,.45); }
.venue-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:34px; }
.venue-tags span { padding:8px 11px; border:1px solid rgba(17,18,15,.1); border-radius:999px; color:#6a6c65; background:rgba(255,255,255,.4); font-size:11px; font-weight:650; }

.appetit-product-stage { position:relative; min-height:540px; display:grid; place-items:center; }
.product-window { width:min(760px,100%); border-radius:24px; overflow:hidden; background:#fff; border:1px solid rgba(17,18,15,.1); box-shadow:0 35px 90px rgba(25,26,22,.16); transform:rotate(1deg); }
.product-window-top { height:48px; background:#13141a; color:#fff; display:flex; align-items:center; justify-content:space-between; padding:0 16px; }
.mini-brand { display:flex; align-items:center; gap:8px; font-size:11px; }.mini-brand span { width:24px; height:24px; border-radius:7px; display:grid; place-items:center; color:#111; background:var(--site-green); font-weight:900; }.window-dots { display:flex; gap:5px; }.window-dots i { width:7px; height:7px; background:#3c3d44; border-radius:50%; }
.product-shell-demo { display:grid; grid-template-columns:116px 1fr; min-height:410px; background:#f8f8fa; }
.demo-side { background:#17181e; padding:24px 11px; display:grid; align-content:start; gap:8px; }.demo-side span { padding:9px 10px; border-radius:8px; color:#777984; font-size:9px; font-weight:700; }.demo-side span.active { background:#6657ff; color:#fff; }
.demo-main { padding:23px; min-width:0; }.demo-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; }.demo-head small { display:block; color:#9a9ba3; font-size:9px; }.demo-head strong { display:block; margin-top:2px; font-size:17px; }.demo-live { font-size:9px; color:#22894a; background:#e9f9ee; padding:6px 9px; border-radius:999px; }
.demo-metrics { display:grid; grid-template-columns:1.35fr 1fr 1fr; gap:10px; }.demo-metrics > div { background:#fff; border:1px solid #ececf0; border-radius:13px; padding:13px; position:relative; }.demo-metrics small { display:block; color:#93949c; font-size:8px; }.demo-metrics b { display:block; margin-top:7px; font-size:17px; }.demo-metrics b i { font-style:normal; font-size:8px; color:#8d8e95; }.demo-metrics em { position:absolute; right:10px; bottom:12px; font-style:normal; color:#168b48; font-size:8px; }.demo-metrics span { color:#9a9ba3; font-size:8px; }
.demo-lower { display:grid; grid-template-columns:1.3fr 1fr; gap:10px; margin-top:10px; }.demo-chart,.demo-orders { background:#fff; border:1px solid #ececf0; border-radius:13px; padding:13px; }.demo-card-title { display:flex; align-items:center; justify-content:space-between; font-size:9px; }.demo-card-title span { color:#999aa1; }.barset { height:135px; margin-top:14px; display:flex; align-items:flex-end; gap:7px; border-bottom:1px solid #eeeeF2; }.barset i { flex:1; min-height:10px; border-radius:5px 5px 0 0; background:linear-gradient(#7c6fff,#5b4fff); opacity:.9; }.demo-orders > div:not(.demo-card-title) { display:grid; grid-template-columns:34px 1fr auto; gap:7px; align-items:center; padding:11px 0; border-bottom:1px solid #f0f0f2; font-size:8px; }.demo-orders > div strong { background:#f3f2ff; color:#5d50e9; border-radius:6px; padding:5px; text-align:center; }.demo-orders > div span { color:#a16b14; }.demo-orders > div span.ready { color:#138143; }.demo-orders > div b { font-size:9px; }
.floating-card { position:absolute; padding:13px 15px; min-width:150px; background:#fff; border:1px solid rgba(17,18,15,.08); border-radius:15px; box-shadow:0 16px 40px rgba(17,18,15,.13); }.floating-card small,.floating-card span { display:block; color:#8a8c84; font-size:8px; }.floating-card b { display:block; margin:3px 0; font-size:12px; }.float-kitchen { left:-20px; bottom:80px; transform:rotate(-5deg); }.float-payment { right:-15px; top:70px; transform:rotate(5deg); }.float-payment b { color:#158348; }

.site-proof-strip { padding:18px clamp(24px,6vw,92px); background:#11120f; color:#c9cbc3; display:flex; gap:18px; align-items:center; justify-content:center; flex-wrap:wrap; font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }.site-proof-strip i { width:4px; height:4px; background:var(--site-green); border-radius:50%; }
.site-section { padding:110px clamp(24px,6vw,92px); }.section-intro { display:grid; grid-template-columns:1.05fr .75fr; gap:8vw; align-items:end; margin-bottom:52px; }.section-intro h2 { font-size:clamp(36px,4vw,62px); line-height:1.04; letter-spacing:-.06em; max-width:820px; }.section-intro p { color:var(--site-muted); line-height:1.75; font-size:15px; max-width:580px; }
.feature-grid-premium { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }.feature-grid-premium article { min-height:280px; border:1px solid rgba(17,18,15,.09); border-radius:24px; background:rgba(255,255,255,.62); padding:28px; position:relative; overflow:hidden; }.feature-grid-premium h3 { font-size:23px; margin:30px 0 10px; }.feature-grid-premium p { color:var(--site-muted); line-height:1.7; font-size:13.5px; }.feature-no { font-size:10px; color:#9a9c94; font-weight:900; letter-spacing:.12em; }.feature-grid-premium .feature-large { grid-column:span 2; display:grid; grid-template-columns:1fr 230px; gap:28px; min-height:390px; background:#11120f; color:#fff; }.feature-large p { color:#b6b7b1; }.feature-pills { display:flex; flex-wrap:wrap; gap:7px; margin-top:22px; }.feature-pills span,.pay-method-mini span,.station-mini span { font-size:10px; border-radius:999px; padding:7px 9px; background:rgba(255,255,255,.08); color:#d9dad5; }.mini-phone { width:210px; height:350px; border:6px solid #292a2f; border-radius:28px; background:#f7f4ec; color:#111; padding:24px 12px 12px; align-self:end; box-shadow:0 25px 50px rgba(0,0,0,.3); }.phone-notch { width:54px; height:13px; background:#1c1c1d; border-radius:0 0 10px 10px; margin:-24px auto 18px; }.mini-phone > small { color:#9d9585; font-size:8px; }.mini-phone h4 { font-size:14px; margin:4px 0 14px; }.phone-cat { display:flex; gap:6px; margin-bottom:12px; }.phone-cat i { height:23px; flex:1; background:#ebe6d9; border-radius:8px; }.phone-item { background:#fff; border-radius:11px; padding:8px; display:grid; grid-template-columns:34px 1fr 20px; gap:8px; align-items:center; margin-top:7px; }.phone-item > b { width:34px; height:34px; border-radius:8px; background:#d9cdb2; }.phone-item strong,.phone-item small { display:block; font-size:8px; }.phone-item small { color:#8a8274; margin-top:3px; }.phone-item em { width:20px; height:20px; display:grid; place-items:center; background:#111; color:#fff; border-radius:50%; font-style:normal; }.station-mini,.pay-method-mini { display:flex; flex-wrap:wrap; gap:7px; margin-top:24px; }.station-mini span,.pay-method-mini span { color:#5d5f57; background:#efeee9; }.station-mini b { color:#111; margin-left:5px; }

.workflow-section { background:#171817; color:#fff; padding:110px clamp(24px,6vw,92px); }.section-eyebrow.light { color:#a9aba3; }.section-intro.light p { color:#a9aba3; }.workflow-line { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap:12px; align-items:center; }.workflow-line > i { color:#676961; font-style:normal; }.workflow-line article { min-height:190px; padding:22px; border-radius:20px; background:#20211f; border:1px solid #2e2f2c; }.workflow-line article span { width:32px; height:32px; display:grid; place-items:center; border-radius:10px; background:var(--site-green); color:#15160f; font-weight:900; font-size:11px; }.workflow-line article b { display:block; margin:30px 0 7px; font-size:15px; }.workflow-line article p { color:#8f9188; line-height:1.5; font-size:11.5px; }

.venue-section { background:#eeede7; }.venue-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }.venue-grid article { min-height:260px; padding:26px; border-radius:22px; background:#fff; border:1px solid rgba(17,18,15,.08); }.venue-grid article > span { width:46px; height:46px; display:grid; place-items:center; border-radius:14px; background:#f1f0eb; font-size:21px; }.venue-grid h3 { font-size:19px; margin:54px 0 8px; }.venue-grid p { color:var(--site-muted); font-size:12.5px; line-height:1.7; }
.mobile-control-section { padding:110px clamp(24px,6vw,92px); display:grid; grid-template-columns:.85fr 1.15fr; gap:10vw; align-items:center; background:#dfff63; overflow:hidden; }.mobile-copy h2 { font-size:clamp(38px,4.3vw,64px); line-height:1.02; letter-spacing:-.06em; }.mobile-copy > p { color:#4a4c43; max-width:600px; line-height:1.7; margin:22px 0; }.mobile-copy ul { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:10px 18px; }.mobile-copy li { font-size:12px; font-weight:700; }.mobile-copy li::before { content:''; display:inline-block; width:8px; height:4px; border-left:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(-45deg) translateY(-2px); margin-right:10px; }.device-stack { min-height:480px; position:relative; }.tablet-demo { position:absolute; width:min(580px,88%); right:0; top:20px; min-height:410px; padding:20px; border:10px solid #181916; border-radius:28px; background:#f4f4f6; transform:rotate(3deg); box-shadow:0 35px 80px rgba(45,55,20,.2); }.tablet-top { display:flex; justify-content:space-between; font-weight:900; font-size:12px; margin-bottom:18px; }.tablet-top span { color:#777; font-weight:600; }.tablet-ticket { display:grid; grid-template-columns:80px 1fr auto; gap:8px; align-items:center; background:#fff; border-radius:14px; padding:14px; margin-bottom:10px; }.tablet-ticket small { color:#888; font-size:8px; }.tablet-ticket b { font-size:12px; }.tablet-ticket p { font-size:10px; color:#666; }.tablet-ticket button { grid-column:3; grid-row:1/3; border:0; background:#6657ff; color:#fff; border-radius:9px; padding:9px; font-size:9px; }.tablet-ticket.ready button { background:#1e9a50; }.phone-demo-small { position:absolute; left:0; bottom:0; width:165px; height:285px; padding:24px 16px; border:8px solid #171817; border-radius:28px; background:#fff; transform:rotate(-8deg); box-shadow:0 30px 60px rgba(45,55,20,.2); }.phone-demo-small div { font-weight:900; font-size:12px; margin-bottom:45px; }.phone-demo-small small { display:block; color:#888; font-size:8px; }.phone-demo-small b { display:block; margin-top:5px; font-size:28px; }.phone-demo-small span { color:#888; font-size:9px; }.phone-demo-small p { margin-top:35px; background:#f0f0f2; border-radius:10px; padding:10px; font-size:9px; }

.plan-section { background:#fff; }.plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:1100px; margin:auto; }.plan-card { border:1px solid #e7e7e2; border-radius:24px; padding:30px; position:relative; display:flex; flex-direction:column; min-height:390px; }.plan-card.featured { background:#11120f; color:#fff; border-color:#11120f; transform:translateY(-10px); }.plan-popular { position:absolute; top:18px; right:18px; background:var(--site-green); color:#111; padding:6px 8px; border-radius:999px; font-size:8px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }.plan-card h3 { font-size:20px; }.plan-price { margin:24px 0; }.plan-price b { font-size:42px; letter-spacing:-.06em; }.plan-price span { color:#8a8c84; font-size:10px; margin-left:5px; }.plan-card ul { margin:0 0 28px; padding:0; list-style:none; display:grid; gap:11px; color:#696b64; font-size:12px; }.plan-card.featured ul { color:#b3b5ad; }.plan-card li::before { content:''; display:inline-block; width:8px; height:4px; border-left:2px solid #779b00; border-bottom:2px solid #779b00; transform:rotate(-45deg) translateY(-2px); margin-right:10px; }.plan-card a { margin-top:auto; }
.final-cta { margin:40px clamp(24px,6vw,92px) 90px; border-radius:32px; background:#6657ff; color:#fff; padding:62px; display:flex; justify-content:space-between; gap:30px; align-items:end; }.final-cta h2 { max-width:800px; font-size:clamp(36px,4.3vw,62px); line-height:1.02; }.final-cta p { color:#d7d3ff; margin-top:15px; }.light-btn { background:#fff; color:#171817; min-width:180px; }.appetit-footer { padding:30px clamp(24px,6vw,92px); border-top:1px solid rgba(17,18,15,.09); display:flex; align-items:center; justify-content:space-between; gap:24px; color:#777970; font-size:11px; }.appetit-footer .appetit-brand { color:#111; }

@media(max-width:1100px){
  .appetit-site-nav { display:none; }
  .appetit-hero { grid-template-columns:1fr; min-height:auto; }.appetit-hero-copy { max-width:850px; }.appetit-product-stage { min-height:520px; }.product-window { max-width:760px; }
  .feature-grid-premium { grid-template-columns:1fr 1fr; }.feature-grid-premium .feature-large { grid-column:1/-1; }
  .workflow-line { grid-template-columns:1fr 1fr; }.workflow-line > i { display:none; }
  .venue-grid { grid-template-columns:1fr 1fr; }
  .mobile-control-section { grid-template-columns:1fr; }.device-stack { max-width:720px; width:100%; margin:auto; }
}
@media(max-width:768px){
  .mobile-menu-btn { display:grid; place-items:center; flex-shrink:0; }
  .sidebar { display:flex; width:min(82vw,290px); transform:translateX(-105%); transition:transform .22s ease; box-shadow:20px 0 50px rgba(0,0,0,.24); }
  .sidebar.mobile-open { transform:translateX(0); }
  .sidebar-overlay { display:block; position:fixed; inset:0; background:rgba(4,5,8,.48); z-index:190; opacity:0; pointer-events:none; transition:opacity .2s ease; }
  .sidebar-overlay.show { opacity:1; pointer-events:auto; }
  body.nav-open { overflow:hidden; }
  .topbar-left { min-width:0; }.topbar-title { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:46vw; }
  .appetit-site-header { padding:12px 18px; }.appetit-nav-actions .site-link-btn { display:none; }.appetit-nav-actions .site-primary-btn { min-height:38px; padding:0 13px; }
  .appetit-hero { padding:58px 20px 72px; gap:35px; }.appetit-hero h1 { font-size:clamp(43px,13vw,66px); }.appetit-hero-copy > p { font-size:15px; }.appetit-product-stage { min-height:390px; }.product-window { transform:none; }.product-shell-demo { grid-template-columns:78px 1fr; min-height:330px; }.demo-side { padding:15px 7px; }.demo-side span { padding:7px 5px; font-size:7px; }.demo-main { padding:14px; }.demo-metrics { grid-template-columns:1fr 1fr; }.demo-metrics > div:last-child { display:none; }.demo-lower { grid-template-columns:1fr; }.demo-orders { display:none; }.float-kitchen { left:0; bottom:0; }.float-payment { right:0; top:35px; }
  .site-section,.workflow-section,.mobile-control-section { padding:78px 20px; }.section-intro { grid-template-columns:1fr; gap:18px; margin-bottom:34px; }.section-intro h2 { font-size:clamp(36px,11vw,50px); }
  .feature-grid-premium { grid-template-columns:1fr; }.feature-grid-premium .feature-large { grid-column:auto; grid-template-columns:1fr; }.mini-phone { display:none; }.feature-grid-premium article { min-height:240px; }
  .workflow-line { grid-template-columns:1fr; }.workflow-line article { min-height:150px; }.workflow-line article b { margin-top:20px; }
  .venue-grid { grid-template-columns:1fr; }.venue-grid article { min-height:210px; }.venue-grid h3 { margin-top:35px; }
  .mobile-copy ul { grid-template-columns:1fr; }.device-stack { min-height:390px; }.tablet-demo { width:96%; }.phone-demo-small { width:135px; height:240px; }
  .plan-grid { grid-template-columns:1fr; }.plan-card.featured { transform:none; }.final-cta { margin:20px 20px 60px; padding:38px 25px; flex-direction:column; align-items:flex-start; }.appetit-footer { padding:26px 20px; flex-wrap:wrap; }
}
@media(max-width:480px){
  .appetit-brand-mark { width:34px; height:34px; }.appetit-brand strong { font-size:14px; }.appetit-nav-actions .site-primary-btn { font-size:10.5px; padding:0 10px; }
  .appetit-hero-actions { flex-direction:column; }.appetit-hero-actions a { width:100%; }.site-proof-strip { justify-content:flex-start; }
  .product-shell-demo { grid-template-columns:1fr; }.demo-side { display:none; }.floating-card { display:none; }.appetit-product-stage { min-height:330px; }.demo-main { min-height:320px; }
}


/* ============================================================
   ZOE ገበታ public website — v1.0
   ============================================================ */
.zoegebeta-site{margin:0;background:#f5f4ef;color:#161712;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}.ao-nav{max-width:1440px;margin:auto;padding:22px 5vw;display:flex;align-items:center;justify-content:space-between;gap:30px}.ao-brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit}.ao-brand img{width:39px;height:39px;object-fit:contain;background:#fff;border:1px solid #deddd5;border-radius:11px;padding:6px}.ao-brand span{display:grid;line-height:1}.ao-brand b{font-size:17px;letter-spacing:-.02em}.ao-brand small{font-size:10px;letter-spacing:.11em;text-transform:uppercase;color:#77796f;margin-top:5px}.ao-links{display:flex;gap:30px}.ao-links a{color:#54564f;text-decoration:none;font-size:13px;font-weight:650}.ao-login{color:#fff;background:#181a15;border-radius:999px;padding:11px 18px;text-decoration:none;font-size:13px;font-weight:750}.ao-login span,.ao-primary span{margin-left:8px}.ao-hero{min-height:650px;max-width:1440px;margin:auto;padding:70px 5vw 90px;display:grid;grid-template-columns:minmax(0,.86fr) minmax(520px,1.14fr);gap:60px;align-items:center}.ao-kicker{display:inline-flex;padding:8px 11px;border:1px solid rgba(255,255,255,.16);border-radius:99px;text-transform:uppercase;font-size:10px;letter-spacing:.14em;font-weight:800}.ao-kicker.dark{border-color:#d6d7cf;color:#62645b}.ao-hero h1{font-size:clamp(48px,6.2vw,92px);line-height:.96;letter-spacing:-.065em;margin:24px 0;color:#171914;max-width:780px}.ao-hero h1 em{font-family:Georgia,serif;font-weight:400;color:#6f7c54}.ao-hero-copy>p{max-width:680px;font-size:18px;line-height:1.7;color:#62645d}.ao-actions{display:flex;align-items:center;gap:15px;margin-top:30px}.ao-primary{display:inline-flex;align-items:center;background:#727f56;color:#fff;padding:14px 19px;border-radius:999px;text-decoration:none;font-weight:780;font-size:13px}.ao-secondary{color:#373931;text-decoration:none;font-weight:720;font-size:13px;padding:13px 8px}.ao-trust{display:flex;flex-wrap:wrap;gap:18px;margin-top:28px;color:#7c7e75;font-size:11px}.ao-trust span:before{content:'';display:inline-block;width:7px;height:4px;border-left:2px solid #6f7c54;border-bottom:2px solid #6f7c54;transform:rotate(-45deg) translateY(-2px);margin-right:8px}.ao-product-stage{position:relative;min-height:520px}.ao-window{position:absolute;inset:24px 0 28px 15px;background:#131510;border-radius:26px;box-shadow:0 30px 80px rgba(24,28,16,.2);overflow:hidden;border:1px solid #2c3026}.ao-window-top{height:48px;background:#1b1e17;border-bottom:1px solid #2d3029;display:flex;align-items:center;gap:6px;padding:0 16px;color:#777d6e}.ao-window-top span{width:7px;height:7px;border-radius:50%;background:#4c5145}.ao-window-top b{font-size:10px;margin-left:8px;letter-spacing:.05em}.ao-preview-grid{display:grid;grid-template-columns:135px 1fr;height:calc(100% - 48px)}.ao-preview-side{padding:22px 13px;border-right:1px solid #2d3029;display:flex;flex-direction:column;gap:7px}.ao-preview-side strong{font-size:9px;text-transform:uppercase;letter-spacing:.16em;color:#68705e;margin:2px 8px 10px}.ao-preview-side a{color:#858b7e;font-size:11px;padding:9px 10px;border-radius:7px}.ao-preview-side a.active{background:#727f56;color:white}.ao-preview-main{padding:27px}.ao-preview-head{display:flex;justify-content:space-between}.ao-preview-head small{color:#6f7567;font-size:9px}.ao-preview-head h3{color:#f5f6f1;margin:5px 0;font-size:19px}.ao-live{font-size:9px;letter-spacing:.12em;color:#a8c073;background:#242a1d;padding:7px 9px;border-radius:99px;height:max-content}.ao-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:22px}.ao-metrics article{background:#1c1f18;border:1px solid #2c3027;border-radius:14px;padding:15px}.ao-metrics small,.ao-ops small{display:block;color:#747a6c;font-size:8px;text-transform:uppercase;letter-spacing:.1em}.ao-metrics b{display:block;color:#f6f6f0;font-size:19px;margin:8px 0 4px}.ao-metrics i{font-size:8px;color:#777c70;font-style:normal}.ao-metrics span{font-size:8px;color:#9eaa86}.ao-ops{margin-top:12px;display:grid;gap:8px}.ao-ops article{display:flex;justify-content:space-between;align-items:center;background:#181b15;border:1px solid #292d24;padding:14px 15px;border-radius:12px}.ao-ops b{font-size:11px;color:#e7e9e1;display:block;margin-top:4px}.ao-ops>article>span{font-size:9px;color:#9aaa7c}.ao-float-card{position:absolute;background:white;border-radius:14px;padding:14px 16px;box-shadow:0 16px 40px rgba(32,37,25,.16);display:grid;z-index:3;min-width:165px}.ao-float-card small{font-size:8px;color:#7e8178;letter-spacing:.14em}.ao-float-card b{font-size:12px;margin:5px 0}.ao-float-card span{font-size:9px;color:#74776f}.ao-float-order{left:-14px;bottom:16px}.ao-float-pay{right:-8px;top:2px}.ao-venue-strip{border-top:1px solid #dbdbd3;border-bottom:1px solid #dbdbd3;display:flex;justify-content:center;align-items:center;gap:34px;padding:20px 5vw;flex-wrap:wrap;color:#3f413b}.ao-venue-strip span{font-size:9px;text-transform:uppercase;letter-spacing:.13em;color:#93958d}.ao-venue-strip b{font-size:12px}.ao-section{max-width:1440px;margin:auto;padding:110px 5vw}.ao-section-copy{max-width:760px}.ao-section h2,.ao-workflow h2,.ao-cta h2{font-size:clamp(38px,5vw,68px);letter-spacing:-.055em;line-height:1.02;margin:17px 0 22px}.ao-section-copy p{font-size:17px;line-height:1.75;color:#686a62}.ao-feature-grid{margin-top:60px;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid #d8d8d0}.ao-feature-grid article{padding:28px 26px 10px 0;border-right:1px solid #d8d8d0;margin-right:26px}.ao-feature-grid article:last-child{border-right:0}.ao-feature-grid span{font-size:10px;color:#8d917f}.ao-feature-grid h3{font-size:18px;letter-spacing:-.025em;margin:30px 0 12px}.ao-feature-grid p{font-size:13px;line-height:1.7;color:#73756d}.ao-workflow{background:#161914;color:#f2f3ed;padding:105px max(5vw,calc((100vw - 1440px)/2 + 5vw))}.ao-workflow .ao-section-copy{max-width:900px}.ao-workflow .ao-kicker{color:#aab59b}.ao-flow-grid{display:grid;grid-template-columns:repeat(5,1fr);margin-top:60px;border-top:1px solid #34382f}.ao-flow-grid article{padding:27px 22px 5px 0}.ao-flow-grid b{display:grid;place-items:center;width:28px;height:28px;border:1px solid #5d6651;border-radius:50%;font-size:10px;color:#a8b692}.ao-flow-grid h3{font-size:17px;margin:30px 0 10px}.ao-flow-grid p{font-size:12px;color:#93998c;line-height:1.7}.ao-pill-grid{display:flex;flex-wrap:wrap;gap:9px;margin-top:45px}.ao-pill-grid span{border:1px solid #d5d7ce;border-radius:99px;padding:11px 14px;font-size:12px;color:#52554c;background:#fafaf7}.ao-cta{margin:20px auto 0;max-width:1310px;background:#727f56;color:#fff;border-radius:28px;padding:70px;display:flex;justify-content:space-between;align-items:flex-end;gap:50px}.ao-cta>div{max-width:780px}.ao-cta h2{margin-bottom:15px}.ao-cta p{max-width:680px;color:#e3e8d9;line-height:1.7}.ao-primary.light{background:#fff;color:#1b1d18;white-space:nowrap}.ao-footer{max-width:1440px;margin:auto;padding:50px 5vw;display:flex;justify-content:space-between;align-items:center;color:#808279}.ao-footer p{font-size:11px}
@media(max-width:1050px){.ao-links{display:none}.ao-hero{grid-template-columns:1fr;padding-top:45px}.ao-product-stage{min-height:480px}.ao-feature-grid{grid-template-columns:repeat(2,1fr)}.ao-flow-grid{grid-template-columns:repeat(2,1fr)}.ao-cta{margin-left:3vw;margin-right:3vw;padding:50px;align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.ao-nav{padding:15px 18px}.ao-login{padding:10px 14px}.ao-hero{padding:45px 18px 70px;gap:32px}.ao-hero h1{font-size:48px}.ao-hero-copy>p{font-size:15px}.ao-actions{align-items:flex-start;flex-direction:column}.ao-trust{display:grid;gap:8px}.ao-product-stage{min-height:370px}.ao-window{inset:10px 0}.ao-preview-grid{grid-template-columns:1fr}.ao-preview-side{display:none}.ao-preview-main{padding:18px}.ao-metrics{gap:6px}.ao-metrics article{padding:10px}.ao-metrics b{font-size:14px}.ao-float-order{left:-7px;bottom:-10px}.ao-float-pay{right:-6px;top:-7px}.ao-venue-strip{gap:18px}.ao-section{padding:75px 18px}.ao-feature-grid,.ao-flow-grid{grid-template-columns:1fr}.ao-feature-grid article{border-right:0;border-bottom:1px solid #d8d8d0;margin:0;padding:25px 0}.ao-workflow{padding:75px 18px}.ao-cta{padding:38px 25px;border-radius:20px}.ao-footer{padding:35px 18px;align-items:flex-start;gap:20px;flex-direction:column}}
.admin-split-layout { display:grid; grid-template-columns:minmax(0,1fr) minmax(280px,360px); gap:20px; align-items:start; }
.admin-split-layout.reports-split { grid-template-columns:minmax(0,1fr) 300px; }
@media(max-width:1024px){ .admin-split-layout,.admin-split-layout.reports-split { grid-template-columns:1fr; } }

/* ZOE ገበታ icon system — local SVGs, no emoji glyphs */
.app-icon{display:inline-block;vertical-align:-0.16em;flex:0 0 auto;stroke:currentColor}
.sico .app-icon{width:18px;height:18px;display:block}
.stat-icon .app-icon{width:21px;height:21px}
.icon-label{display:inline-flex;align-items:center;gap:7px}
.icon-only{display:inline-grid;place-items:center}
.no-img-ph .app-icon,.admin-menu-photo.no-photo .app-icon{width:28px;height:28px}
.diet-tag .app-icon{width:13px;height:13px;vertical-align:-0.12em;margin-right:3px}
.global-sound-btn{display:inline-flex;align-items:center;gap:7px}
.demo-feature-list{display:flex;flex-wrap:wrap;gap:7px;margin-top:18px}
.demo-feature-list span{font-size:11px;font-weight:700;color:var(--ink);background:var(--surface2);border:1px solid var(--line);border-radius:999px;padding:7px 10px}

/* ZOE ገበታ — POS & Restaurant Operations */
.page-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}.ops-grid{display:grid;gap:18px}.ops-grid.two{grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr)}.ops-metrics{margin-bottom:18px}.metric-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.metric-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}.metric-card span{display:block;color:var(--muted);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}.metric-card strong{display:block;color:var(--ink);font-size:22px;margin-top:6px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px}.movement-list{display:grid;gap:8px;margin-top:16px}.movement-row{display:flex;gap:10px;align-items:flex-start;padding:10px;border:1px solid var(--line);border-radius:10px}.movement-row div{display:grid;gap:2px}.movement-row small{color:var(--muted)}.close-shift-box{display:flex;justify-content:space-between;gap:15px;padding:14px;border-radius:12px;background:var(--surface2);margin-bottom:12px}.close-shift-box strong{font-size:20px}.floor-legend{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:14px;color:var(--muted);font-size:12px}.floor-legend span{display:inline-flex;align-items:center;gap:6px}.state-dot{width:9px;height:9px;border-radius:50%;display:inline-block}.state-dot.free{background:#9ca3af}.state-dot.pending{background:#d97706}.state-dot.preparing{background:#2563eb}.state-dot.ready{background:#16a34a}.state-dot.served{background:#7c3aed}.state-dot.reserved{background:#db2777}.floor-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}.table-tile{background:var(--surface);border:1px solid var(--line);border-top:4px solid #9ca3af;border-radius:var(--radius);padding:16px;box-shadow:var(--shadow);display:grid;gap:10px}.table-tile.state-pending{border-top-color:#d97706}.table-tile.state-preparing{border-top-color:#2563eb}.table-tile.state-ready{border-top-color:#16a34a}.table-tile.state-served{border-top-color:#7c3aed}.table-tile.state-reserved{border-top-color:#db2777}.table-tile-head{display:flex;justify-content:space-between;align-items:center}.table-icon{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:var(--surface2);color:var(--ink)}.table-tile h3{font-size:18px;margin:0}.table-tile p{margin:0;color:var(--muted);font-size:12px}.table-current{display:grid;gap:4px;padding:10px;border-radius:10px;background:var(--surface2)}.table-current>span{font-weight:700}.table-current small{color:var(--muted)}.table-current.empty{min-height:66px;align-content:center}.table-actions{display:flex;gap:7px;flex-wrap:wrap}.pos-meta-grid{display:grid;grid-template-columns:1fr 90px 120px;gap:8px}.pos-submit-actions{display:flex;gap:8px}.pos-line-meta{margin-top:5px}.input.compact{padding:4px 24px 4px 7px;min-height:30px;font-size:12px;width:auto}.held-order-list{display:grid}.held-order{appearance:none;border:0;border-bottom:1px solid var(--line);background:transparent;color:var(--ink);padding:10px 12px;display:flex;justify-content:space-between;gap:12px;text-align:left;cursor:pointer}.held-order:hover{background:var(--surface2)}.held-order span:first-child{display:grid;gap:2px}.held-order small{color:var(--muted)}.section-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;margin-bottom:12px}.section-heading h2,.section-heading h3{margin:0}.payment-target{padding:10px 12px;border-radius:10px;background:var(--surface2);margin:12px 0;font-size:13px}.bill-split-panel{border:1px solid var(--line);border-radius:12px;padding:12px;margin:12px 0}.split-actions,.split-chips{display:flex;gap:7px;flex-wrap:wrap}.split-chips{margin-top:10px}.split-chip{border:1px solid var(--line);background:var(--surface2);color:var(--ink);border-radius:999px;padding:7px 10px;cursor:pointer;display:inline-flex;gap:7px;align-items:center}.split-chip.active{border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}.split-chip b{color:var(--accent)}.split-item-list{display:grid;gap:6px;margin:8px 0}.split-item-row{display:flex;gap:8px;align-items:center;border:1px solid var(--line);border-radius:9px;padding:8px}.split-item-row span{display:grid}.split-item-row small{color:var(--muted)}.pay-order-title{display:flex;justify-content:space-between;gap:10px}.pay-order-title h3{margin:0}.pay-order-title p{margin:3px 0 0;color:var(--muted)}.pay-card b small{display:block;color:var(--muted);font-weight:500}.order-tools-grid{display:grid;grid-template-columns:1fr 1fr auto;gap:10px;align-items:end}.modal-backdrop{position:fixed;inset:0;background:rgba(15,17,23,.55);z-index:999;place-items:center;padding:18px}.modal-card{width:min(520px,100%);background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 24px 70px rgba(0,0,0,.25);overflow:hidden}.modal-card .input{margin-bottom:10px}
@media(max-width:900px){.ops-grid.two,.metric-grid{grid-template-columns:1fr 1fr}.cashier-shell{grid-template-columns:1fr}.payment-box{position:static}.order-tools-grid{grid-template-columns:1fr 1fr}.order-tools-grid .btn{grid-column:1/-1}.pos-meta-grid{grid-template-columns:1fr 1fr}.pos-meta-grid>div:first-child{grid-column:1/-1}}
@media(max-width:620px){.metric-grid,.ops-grid.two,.form-grid,.pos-meta-grid{grid-template-columns:1fr}.floor-grid{grid-template-columns:1fr}.page-actions{width:100%}.page-actions .btn{flex:1}.pos-submit-actions{flex-direction:column}.order-tools-grid{grid-template-columns:1fr}.payment-row-grid{grid-template-columns:1fr!important}}
.pos-mod-groups{display:grid;gap:14px}.pos-mod-group{border:1px solid var(--line);border-radius:12px;padding:12px}.pos-mod-group>div:first-child{display:flex;justify-content:space-between;gap:8px;margin-bottom:8px}.pos-mod-group>div:first-child small{color:var(--accent);font-weight:700}.pos-mod-option{display:grid;grid-template-columns:auto 1fr auto;gap:9px;align-items:center;padding:8px 0;border-top:1px solid var(--line);cursor:pointer}.pos-mod-option b{font-size:12px;color:var(--accent)}.pos-mod-summary{font-size:11.5px;color:var(--muted);margin-top:3px;line-height:1.4}

/* ================================================================
   ZOE ገበታ v1.0 — ZOE Digital Solutions brand overrides
   ================================================================ */
:root{
  --sidebar-bg:#1b071f;
  --sidebar-border:rgba(255,255,255,.08);
  --sidebar-pill:rgba(255,255,255,.075);
  --sidebar-pill-active:#74288e;
  --accent:#74288e;
  --accent2:#9a4bbf;
  --accent-glow:rgba(116,40,142,.20);
  --accent-soft:rgba(116,40,142,.08);
  --shadow-accent:0 8px 24px rgba(116,40,142,.25);
  --primary:#74288e;
  --primary2:#9a4bbf;
}
.sidebar-brand{padding-top:14px}.sidebar-logo-wrap{width:52px;height:52px;padding:5px;border-radius:14px;background:#fff;display:grid;place-items:center;border:1px solid rgba(255,255,255,.1);overflow:hidden}.sidebar-logo-wrap img{width:100%;height:100%;max-width:100%;object-fit:contain;display:block}.sidebar-brand-text strong{font-size:14px}.topbar{border-bottom-color:#ece5ee}.btn-primary,button[type="submit"]{background:linear-gradient(135deg,#9448bc,#6d2787);border-color:#6d2787}.login-wrap{background:radial-gradient(circle at 18% 14%,#4a1557 0,transparent 34%),radial-gradient(circle at 88% 84%,#6d2787 0,transparent 28%),#16051a}.login-card{border:1px solid rgba(255,255,255,.12);box-shadow:0 35px 100px rgba(0,0,0,.42)}.login-brand{display:flex;align-items:center;gap:13px;margin-bottom:22px}.login-logo{width:70px;height:70px;border-radius:20px!important;overflow:hidden!important;border:1px solid #eee3f0;background:#fff!important;display:grid!important;place-items:center!important;padding:7px}.login-logo img{width:100%!important;max-width:100%!important;height:100%!important;object-fit:contain!important;display:block}.login-brand-copy{display:grid;gap:4px}.login-brand-copy strong{font-size:19px;line-height:1;font-weight:850;letter-spacing:-.03em;color:#25142a}.login-brand-copy small{font-size:11px;color:#807486;letter-spacing:.02em}.login-card h1{font-size:29px}.login-card>p{line-height:1.6}.app-icon{flex:none}
