/* Sapthagiri POS — shared theme */
:root {
  --brand: #0a4d68;
  --brand-dark: #063649;
  --brand-soft: #e6f3f8;
  --accent: #e86a17;
  --accent-dark: #c4550f;
  --accent-soft: #fff1e6;
  --success: #0d9488;
  --danger: #e11d48;
  --warn: #d97706;
  --surface: #ffffff;
  --bg: #eef3f7;
  --text: #1e293b;
  --muted: #64748b;
  --border: #d8e2ea;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(10, 77, 104, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: #b6c9d6; border-radius: 10px; }

.fade-in { animation: fadeIn .25s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.toast {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  background: var(--brand); color: #fff; padding: 12px 18px;
  border-radius: 12px; box-shadow: var(--shadow); font-weight: 600;
  animation: fadeIn .2s ease;
}
.toast.error { background: var(--danger); }
.toast.success { background: var(--success); }
