/* ---------- What's Cookin' — design tokens ---------- */
:root {
  --green-950: #0f3d22;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --bg: #f2f4f6;
  --card: #ffffff;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #98a2b3;
  --muted-2: #667085;
  --line: #eaecf0;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 6px 24px rgba(16, 24, 40, 0.06), 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-soft: 0 2px 10px rgba(16, 24, 40, 0.05);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: #e7eaee;
}

body {
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.app {
  width: 100%;
  max-width: 460px;
  min-height: 100dvh;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(16, 24, 40, 0.08);
}

/* ---------- Top bars ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: calc(env(safe-area-inset-top) + 14px) 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar .bar-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.topbar.centered { justify-content: space-between; }
.topbar.centered .bar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  flex: 1;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.icon-btn:active { background: rgba(16, 24, 40, 0.06); }
.icon-btn svg { display: block; }

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-600), var(--green-900));
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
}

/* ---------- Content scroll area ---------- */
.content {
  flex: 1;
  padding: 22px 20px calc(env(safe-area-inset-bottom) + 110px);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 6px;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.page-sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-2);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 28px 0 14px;
}
.section-head h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.section-head .link {
  border: none;
  background: none;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}

.group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px 4px 10px;
}

/* ---------- Search ---------- */
.search-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 16px 0 4px;
}
.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e9ecef;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--muted);
}
.search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  font-family: var(--font);
  width: 100%;
  color: var(--ink);
}
.search input::placeholder { color: var(--muted); }
.filter-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: #e9ecef;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- Planner ---------- */
.day-card {
  display: flex;
  gap: 14px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  overflow: hidden;
}
.day-card.today {
  outline: 2.5px solid var(--green-600);
  outline-offset: -1px;
}

.day-date {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 0;
}
.day-date .dow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.day-date .dom {
  font-size: 22px;
  font-weight: 800;
}
.day-date .today-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-top: 1px;
}

.day-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 14px 14px 14px 0;
}

.add-slot {
  border: 1.5px dashed #cfd4dc;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
}
.add-slot:active { background: rgba(16, 24, 40, 0.03); }

.plan-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
}
.plan-chip .thumb { width: 34px; height: 34px; border-radius: 9px; font-size: 18px; }
.plan-chip .pc-body { flex: 1; min-width: 0; }
.plan-chip .pc-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-chip .pc-meal {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-700);
}
.plan-chip .remove {
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 6px;
  line-height: 1;
}

/* Suggestion banner */
.suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.suggestion .s-emoji {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.suggestion .s-body { flex: 1; min-width: 0; }
.suggestion .s-title { font-size: 13.5px; font-weight: 700; line-height: 1.35; }
.suggestion .s-sub { font-size: 12px; opacity: 0.75; margin-top: 2px; }
.suggestion .s-actions { display: flex; gap: 6px; flex-shrink: 0; }
.suggestion .s-add {
  border: none;
  background: #fff;
  color: var(--green-900);
  font-weight: 800;
  font-size: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
}
.suggestion .s-dismiss {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Cards / thumbs ---------- */
.thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.thumb.small {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 19px;
}

/* ---------- Create new dish (dashed) ---------- */
.create-card {
  width: 100%;
  border: 1.5px dashed #cfd4dc;
  background: #e9ebee;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font);
  margin: 18px 0 6px;
}
.create-card:active { background: #e2e5e9; }
.create-card .plus {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 400;
  box-shadow: 0 6px 14px rgba(20, 83, 45, 0.35);
}
.create-card .c-title { font-size: 16px; font-weight: 700; color: var(--ink-2); }
.create-card .c-sub { font-size: 13px; color: var(--muted); }

/* ---------- Library rows ---------- */
.row-card {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.lib-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.lib-row:last-child { border-bottom: none; }
.lib-row:active { background: #fafbfc; }
.lib-row .r-name { flex: 1; font-size: 15px; font-weight: 600; color: var(--ink); min-width: 0; }
.lib-row .r-icons { display: flex; align-items: center; gap: 10px; color: #c2c7d0; }
.lib-row .doc { color: var(--green-600); }

/* Recently added variant */
.recent-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-family: var(--font);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.recent-row:last-child { border-bottom: none; }
.recent-row .rr-body { flex: 1; min-width: 0; cursor: pointer; }
.recent-row .rr-name { font-size: 15.5px; font-weight: 700; }
.recent-row .rr-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.recent-row .rr-icons { display: flex; align-items: center; gap: 12px; }
.recent-row .add-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.6px solid var(--green-600);
  color: var(--green-600);
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 17px;
  cursor: pointer;
  line-height: 1;
}
.recent-row .add-circle:active { background: var(--green-50); }
.recent-row .doc { color: var(--muted-2); }

/* ---------- Suggested carousel ---------- */
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 20px;
  margin: 0 -20px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.dish-card {
  scroll-snap-align: start;
  flex: 0 0 72%;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 12px 12px 16px;
}
.dish-card .photo {
  position: relative;
  height: 170px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 64px;
  overflow: hidden;
}
.dish-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
}
.dish-card .d-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 14px 4px 12px;
}
.btn-pill {
  width: 100%;
  border: none;
  background: var(--green-800);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font);
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(20, 83, 45, 0.25);
}
.btn-pill:active { background: var(--green-900); }
.btn-pill.subtle {
  background: var(--green-50);
  color: var(--green-800);
  box-shadow: none;
}
.btn-pill.danger {
  background: #fef2f2;
  color: #b42318;
  box-shadow: none;
}

/* ---------- Category picker (step 1) ---------- */
.step-chip {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.divider-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 26px 0 6px;
}
.divider-label::before, .divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dde1e6;
}

.cat-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  margin-top: 16px;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}
.cat-card:active { transform: scale(0.99); }
.cat-card .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-50);
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 22px;
  flex-shrink: 0;
}
.cat-card .cat-body { flex: 1; }
.cat-card .cat-eyebrow {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--muted);
  text-transform: uppercase;
}
.cat-card .cat-name { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; margin: 2px 0; }
.cat-card .cat-sub { font-size: 13px; color: var(--muted-2); }
.cat-card .chev { color: #c2c7d0; }

/* ---------- Add dish form ---------- */
.save-btn {
  border: none;
  background: var(--green-800);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
}
.save-btn:active { background: var(--green-900); }

.cover-drop {
  width: 100%;
  height: 175px;
  border-radius: var(--radius-lg);
  border: none;
  background: #d5d9de;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: var(--font);
  margin-bottom: 28px;
}
.cover-drop.has-emoji { font-size: 64px; letter-spacing: 0; }

.field-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 20px 2px 8px;
}

.field {
  width: 100%;
  background: #e9ecef;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--ink);
  outline: none;
}
.field:focus { border-color: var(--green-600); background: #fff; }
.field::placeholder { color: #b6bcc6; font-weight: 600; }
.field.small { font-size: 15px; padding: 14px 16px; }
textarea.field { resize: vertical; min-height: 90px; font-weight: 500; font-size: 15px; line-height: 1.5; }

.field-row { display: flex; gap: 14px; }
.field-row > div { flex: 1; }
.field-icon-wrap { position: relative; }
.field-icon-wrap .fi {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
}
.field-icon-wrap .field { padding-left: 44px; }

.seg {
  display: flex;
  background: #e9ecef;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.seg button {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  padding: 9px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.seg button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* ingredients editor */
.ing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 6px 12px 6px 10px;
  margin-bottom: 10px;
}
.ing-row .grip { color: #c2c7d0; font-size: 14px; letter-spacing: 1px; cursor: grab; user-select: none; }
.ing-row input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 4px;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.ing-row input::placeholder { color: #b6bcc6; }
.ing-row .del {
  border: none;
  background: none;
  color: #c2c7d0;
  cursor: pointer;
  padding: 6px;
  display: grid;
  place-items: center;
}
.ing-row .del:active { color: #b42318; }
.ing-row.ghost { box-shadow: none; background: #eceef1; }

.add-item-link {
  border: none;
  background: none;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* recipe editor */
.editor-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.editor-toolbar .tb {
  border: none;
  background: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-2);
}
.editor-toolbar .tb:active { background: #f2f4f6; }
.editor-toolbar .sep { width: 1px; height: 20px; background: var(--line); margin: 0 8px; }
.editor-card textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 18px;
  min-height: 220px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  color: var(--ink);
}
.editor-card textarea::placeholder { color: #b6bcc6; }

/* ---------- Detail view ---------- */
.detail-hero {
  height: 190px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 72px;
  margin-bottom: 20px;
}
.meta-pills { display: flex; gap: 10px; margin: 14px 0 6px; flex-wrap: wrap; }
.meta-pill {
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ing-list { list-style: none; }
.ing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
}
.ing-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
}
.prose {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  white-space: pre-wrap;
}
.notes-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #713f12;
}
.detail-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -8px 30px rgba(16, 24, 40, 0.08);
  display: flex;
  justify-content: space-evenly;
  padding: 12px 24px calc(env(safe-area-inset-bottom) + 12px);
  z-index: 30;
}
.nav-tab {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 26px;
  border-radius: 16px;
}
.nav-tab.active {
  color: var(--green-800);
  background: var(--green-50);
}

/* ---------- Overlays ---------- */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.45);
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.18s ease;
}
.sheet {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 26px 26px 0 0;
  padding: 12px 20px calc(env(safe-area-inset-bottom) + 24px);
  animation: slideUp 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
  max-height: 75dvh;
  overflow-y: auto;
}
.sheet .grab {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: #d5d9de;
  margin: 4px auto 16px;
}
.sheet h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.sheet-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  padding: 14px 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.sheet-option:last-child { border-bottom: none; }
.sheet-option:active { background: #fafbfc; }
.sheet-option .so-sub { margin-left: auto; font-size: 13px; color: var(--muted); font-weight: 500; }
.emoji-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.emoji-grid button {
  border: none;
  background: #f2f4f6;
  border-radius: 14px;
  font-size: 26px;
  padding: 12px 0;
  cursor: pointer;
}
.emoji-grid button:active { background: var(--green-100); }

@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Toast ---------- */
#toast-root {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 105px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 90vw;
}
.toast {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.25);
  animation: slideUp 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast .tick { color: #4ade80; }

/* ---------- Empty states ---------- */
.empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 30px 10px;
}
