/* ── "What worked today" wizard (ui/fit-wizard.js) ─────────────────────── */

.fw-intro  { font-size: 14px; color: var(--muted); line-height: 1.45; margin-bottom: 18px; }
.fw-weather {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 12px; font-size: 13px; color: var(--body); line-height: 1.5; margin-bottom: 18px;
}

/* Activity pills */
.fw-acts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fw-act-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 20px; border: 1px solid var(--border);
  background: white; font-size: 13px; color: var(--body); cursor: pointer;
}
.fw-act-btn.selected { border-color: var(--amber); background: var(--amber-lt); color: var(--heading); font-weight: 600; }

/* Category dropdowns */
.fw-cats { display: flex; flex-direction: column; gap: 8px; }
.fw-cat  { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.fw-cat-head {
  display: flex; align-items: center; gap: 10px; width: 100%;
  min-height: 48px; padding: 0 14px; border: none; background: transparent;
  font-size: 15px; color: var(--heading); cursor: pointer; text-align: left;
}
.fw-cat-icon  { font-size: 18px; }
.fw-cat-name  { flex: 1; font-weight: 500; text-transform: capitalize; }
.fw-cat-count { font-size: 12px; font-weight: 600; color: var(--green); }
.fw-chevron   { width: 14px; height: 14px; opacity: .55; flex-shrink: 0; transition: transform .18s ease; }
.fw-cat--open .fw-chevron { transform: rotate(180deg); }

.fw-cat-body { display: none; border-top: 1px solid var(--border); }
.fw-cat--open .fw-cat-body { display: block; }

.fw-item {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 6px 14px; cursor: pointer;
  border-bottom: 1px solid var(--border); font-size: 14px; color: var(--body);
}
.fw-item:last-child { border-bottom: none; }
.fw-item input { width: 18px; height: 18px; accent-color: var(--amber); flex-shrink: 0; }
.fw-item-name  { flex: 1; }
.fw-item-range { font-size: 12px; color: var(--muted); white-space: nowrap; }

/* Saved confirmation */
.fw-done       { text-align: center; }
.fw-done-icon  { font-size: 40px; margin-bottom: 6px; }
.fw-done-title { font-size: 20px; font-weight: 600; color: var(--heading); }
.fw-done-sub   { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.fw-change {
  display: flex; justify-content: space-between; gap: 10px; text-align: left;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--body);
}
.fw-change-range { color: var(--muted); white-space: nowrap; }
.fw-done-total   { font-size: 12px; color: var(--muted); margin-top: 14px; }
