/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg:             #FAF7F3;
  --card:           #FFFFFF;
  --accent-a:       #C4778A;
  --accent-a-s:     #FAECEE;
  --accent-b:       #7A96CB;
  --accent-b-s:     #E8EEF8;
  /* default theme (Рута / female) */
  --accent:         var(--accent-a);
  --accent-s:       var(--accent-a-s);
  --partner-accent: var(--accent-b);
  --partner-accent-s: var(--accent-b-s);
  --text:           #3A2F2E;
  --text-soft:      #9E8E8D;
  --border:         #EDE5E0;
  --success:        #8BAF96;
  --r:              18px;
  --r-sm:           10px;
  --shadow:         0 2px 16px rgba(180,140,145,.1);
  --nav-h:          64px;
  --safe-b:         env(safe-area-inset-bottom, 0px);
}

/* Женя / blue theme */
body.theme-m {
  --accent:           var(--accent-b);
  --accent-s:         var(--accent-b-s);
  --partner-accent:   var(--accent-a);
  --partner-accent-s: var(--accent-a-s);
  --border:           #DFE5EE;
  --shadow:           0 2px 16px rgba(130,145,185,.1);
}

/* ── Reset ─────────────────────────────────────────────────────── */
html { scrollbar-gutter: stable; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(150deg, #FDF6F0 0%, #FBF4FA 55%, #F5F0FD 100%) fixed;
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease;
}
body.theme-m {
  background: linear-gradient(150deg, #EFF4FD 0%, #F0F0FB 55%, #EBF2FD 100%) fixed;
}

/* ── Splash ────────────────────────────────────────────────────── */
.splash { display: flex; align-items: center; justify-content: center; height: 100dvh; }
.splash-heart { width: 64px; height: 64px; animation: pulse 1.4s ease-in-out infinite; }
.splash-heart svg { width: 100%; height: 100%; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* ── Layout ────────────────────────────────────────────────────── */
#app { min-height: 100dvh; }

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 calc(var(--nav-h) + var(--safe-b) + 36px);
  min-height: 100dvh;
}

.page-header {
  padding: 44px 20px 14px;
  position: sticky;
  top: 0;
  background: rgba(253,246,240,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}
body.theme-m .page-header {
  background: rgba(239,244,253,.88);
}

.page-title   { font-size: 1.3rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.page-subtitle { font-size: .8rem; color: var(--text-soft); margin-top: 2px; }

.page-body { padding: 4px 20px 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── Bottom Nav — liquid glass pill ────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: max(14px, calc(var(--safe-b) + 10px));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 448px;
  height: var(--nav-h);
  background: rgba(253, 248, 244, 0.38);
  backdrop-filter: blur(52px) saturate(180%) brightness(1.04);
  -webkit-backdrop-filter: blur(52px) saturate(180%) brightness(1.04);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.07),
    0 8px 40px rgba(0, 0, 0, 0.05),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding: 0 6px;
}

body.theme-m .bottom-nav {
  background: rgba(239, 245, 253, 0.38);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 2px;
  cursor: pointer;
  color: var(--text-soft);
  font-size: .65rem;
  transition: color .2s;
  -webkit-user-select: none; user-select: none;
  position: relative;
  border-radius: 20px;
}
.nav-item.active { color: var(--accent); }
.nav-item.active::before {
  content: '';
  position: absolute;
  inset: 4px 4px;
  background: var(--accent-s);
  border-radius: 16px;
  z-index: -1;
  opacity: .85;
}

.nav-icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon svg { width: 22px; height: 22px; }

.nav-badge {
  position: absolute;
  top: -3px; right: -6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--partner-accent);
  border: 2px solid rgba(255,255,255,.7);
}

/* ── Cards ─────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--r);
  padding: 16px 15px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,180,180,.12);
}

.card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}

/* ── Status banners ────────────────────────────────────────────── */
.status-banner {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: var(--r);
  font-size: .85rem;
}
.status-banner span { font-size: 1rem; }
.banner-svg { display: inline-flex; align-items: center; flex-shrink: 0; }
.banner-svg svg { width: 18px; height: 18px; }

.status-banner.saved   { background: var(--accent-s); color: var(--accent); }
.status-banner.waiting { background: #F5F2EE; color: var(--text-soft); }
.status-banner.ready   { background: var(--partner-accent-s); color: var(--partner-accent); }

/* ── Section tag ───────────────────────────────────────────────── */
.section-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
}

/* ── Date navigator (in header) ────────────────────────────────── */
.date-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  position: relative;
}

.date-nav-arrow-sm {
  width: 28px; height: 28px;
  border: none; background: transparent;
  font-size: 1.15rem; color: var(--text-soft);
  cursor: pointer; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
  font-family: inherit; flex-shrink: 0;
}
#date-prev { margin-left: -6px; }
#date-next { margin-right: -6px; }
.date-nav-arrow-sm:hover:not(:disabled) { background: var(--accent-s); color: var(--accent); }
.date-nav-arrow-sm:disabled { opacity: .3; cursor: default; }

.date-nav-label {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 6px; cursor: pointer;
  border: none; background: transparent; font-family: inherit;
  border-radius: 8px; transition: background .2s;
  flex: 1; justify-content: center;
}
.date-nav-label:hover { background: var(--accent-s); }

.date-nav-text {
  font-size: .82rem; color: var(--text-soft); font-weight: 500;
}

.date-nav-today-tag {
  font-size: .65rem; color: var(--accent); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--accent-s); padding: 2px 7px; border-radius: 100px;
}

/* ── Mini calendar popup ───────────────────────────────────────── */
.mini-cal-popup {
  position: fixed;
  top: 118px; left: 50%; transform: translateX(-50%);
  width: min(300px, calc(100vw - 32px));
  background: var(--card);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid var(--border);
  padding: 12px 12px 14px;
  z-index: 500;
}
.mc-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.mc-nav {
  background: none; border: none; font-size: 1.1rem;
  color: var(--text-soft); cursor: pointer; padding: 4px 9px;
  border-radius: 8px; transition: background .15s, color .15s; font-family: inherit;
}
.mc-nav:hover:not(:disabled) { background: var(--accent-s); color: var(--accent); }
.mc-nav:disabled { opacity: .25; cursor: default; }
.mc-month { font-size: .88rem; font-weight: 700; color: var(--text); text-transform: capitalize; }
.mc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.mc-dn { text-align: center; font-size: .6rem; color: var(--text-soft); padding: 3px 0 5px; font-weight: 600; }
.mc-cell {
  aspect-ratio: 1; min-height: 30px; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; border-radius: 50%; cursor: pointer; color: var(--text);
  transition: background .12s;
}
.mc-cell:not(.mc-other):not(.mc-future):hover { background: var(--border); }
.mc-cell.mc-today { background: var(--accent-s); color: var(--accent); font-weight: 700; }
.mc-cell.mc-sel   { background: var(--accent);   color: white;          font-weight: 700; }
.mc-cell.mc-other  { opacity: .3; cursor: default; }
.mc-cell.mc-future { opacity: .25; cursor: default; }

/* ── Mood tags ─────────────────────────────────────────────────── */
.mood-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mood-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.mood-svg {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.mood-svg svg { width: 100%; height: 100%; }

.mood-label { font-size: .73rem; color: var(--text-soft); transition: color .2s; }

.mood-tag.selected {
  border-color: var(--accent);
  background: var(--accent-s);
  box-shadow: 0 2px 12px rgba(196,119,138,.12);
}
.mood-tag.selected .mood-label { color: var(--accent); font-weight: 600; }

/* ── Inputs ────────────────────────────────────────────────────── */
.input, .textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-family: inherit;
  color: var(--text);
  background: #FDFBF9;
  transition: border-color .2s;
  resize: none;
}
.input:focus, .textarea:focus { outline: none; border-color: var(--accent); }
.textarea { min-height: 80px; line-height: 1.5; }

/* ── Noticed / Gratitude list ──────────────────────────────────── */
.noticed-list { display: flex; flex-direction: column; gap: 7px; }
.noticed-item { position: relative; }
.noticed-num {
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  font-size: .78rem; color: var(--accent); font-weight: 700;
  pointer-events: none;
}

/* ── Radio buttons ─────────────────────────────────────────────── */
.radio-row { display: flex; gap: 7px; flex-wrap: wrap; }

.radio-btn {
  padding: 7px 13px;
  border-radius: 100px;
  font-size: .8rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.radio-btn.selected {
  border-color: var(--success);
  background: #EBF4EF;
  color: var(--success);
  font-weight: 600;
}

/* ── Rituals ───────────────────────────────────────────────────── */
.ritual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.btn-edit-rituals {
  font-size: .75rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--accent-s);
  transition: background .2s;
}
.btn-edit-rituals:hover { background: var(--accent-s); }

.ritual-list { display: flex; flex-direction: column; gap: 2px; }

.ritual-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.ritual-item:last-child { border-bottom: none; }

.ritual-check {
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  font-size: .8rem;
  color: transparent;
}
.ritual-item.checked .ritual-check { background: var(--accent); border-color: var(--accent); color: white; }
.ritual-label { font-size: .88rem; color: var(--text); flex: 1; }

/* ── Private tag ───────────────────────────────────────────────── */
.private-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; color: var(--text-soft);
  background: var(--border); border-radius: 100px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.private-tag svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Save / Add buttons ────────────────────────────────────────── */
.btn-save {
  width: 100%; padding: 14px;
  background: var(--accent);
  color: white; border: none;
  border-radius: var(--r);
  font-size: .95rem; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: opacity .2s, transform .1s;
  margin-top: 4px;
}
.btn-save:active  { transform: scale(.98); opacity: .85; }
.btn-save:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
  padding: 10px 16px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .85rem; font-family: inherit;
  color: var(--text-soft); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-add {
  padding: 10px 16px; background: var(--accent); color: white;
  border: none; border-radius: var(--r-sm);
  font-size: .85rem; font-family: inherit; cursor: pointer; white-space: nowrap;
}

/* ── Calendar ──────────────────────────────────────────────────── */
.calendar-header { display: flex; align-items: center; justify-content: space-between; padding: 0 0 12px; }

.cal-nav {
  background: none; border: none; font-size: 1.1rem; cursor: pointer;
  color: var(--text-soft); padding: 6px 10px;
  border-radius: var(--r-sm); transition: background .2s;
}
.cal-nav:hover { background: var(--border); }

.cal-month { font-size: .95rem; font-weight: 700; color: var(--text); text-transform: capitalize; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.cal-day-name {
  text-align: center; font-size: .66rem; color: var(--text-soft);
  padding: 4px 0 6px; font-weight: 600;
}

.cal-cell {
  aspect-ratio: 1; min-height: 34px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 50%; font-size: .82rem; color: var(--text-soft);
  cursor: pointer; position: relative;
  transition: background .15s;
}
.cal-cell:hover { background: var(--border); }
.cal-cell.today { background: var(--accent-s); color: var(--accent); font-weight: 700; }
.cal-cell.other-month { opacity: .3; }

.cal-dots { display: flex; gap: 2px; position: absolute; bottom: 3px; }
.cal-dot { width: 5px; height: 5px; border-radius: 50%; }
.cal-dot.mine   { background: var(--accent); }
.cal-dot.theirs { background: var(--partner-accent); }

.streak-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border-radius: var(--r);
  padding: 16px; box-shadow: var(--shadow);
  border: 1px solid rgba(200,180,180,.12);
}
.streak-num   { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.streak-text  { font-size: .82rem; color: var(--text-soft); line-height: 1.4; }

/* ── Qualities ─────────────────────────────────────────────────── */
.qualities-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px;
}
.qualities-empty-icon {
  width: 36px; height: 36px; color: var(--accent); opacity: .55;
}
.qualities-empty-icon svg { width: 100%; height: 100%; }
.qualities-empty-text {
  font-size: .84rem; color: var(--text-soft); text-align: center; line-height: 1.6;
}

.qualities-list { display: flex; flex-direction: column; gap: 2px; }

.quality-item {
  padding: 10px 0; font-size: .9rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.quality-item:last-child { border-bottom: none; }
.quality-num { font-size: .75rem; color: var(--accent); font-weight: 700; min-width: 20px; flex-shrink: 0; }
.quality-text { flex: 1; cursor: text; }
.quality-del {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: var(--text-soft); padding: 4px; border-radius: 6px;
  display: flex; align-items: center; opacity: .45;
  transition: opacity .2s, color .2s;
}
.quality-del svg { width: 15px; height: 15px; }
.quality-del:hover { opacity: 1; color: #C05050; }

.quality-edit-input {
  flex: 1; padding: 2px 6px !important;
  font-size: .9rem !important;
}

.quality-add { display: flex; gap: 8px; margin-top: 4px; }
.quality-add .input { flex: 1; }

/* ── Settings ──────────────────────────────────────────────────── */
.settings-section { display: flex; flex-direction: column; gap: 1px; }

.settings-item {
  background: var(--card); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .9rem; border-radius: 0;
}
.settings-item:first-child { border-radius: var(--r) var(--r) 0 0; }
.settings-item:last-child  { border-radius: 0 0 var(--r) var(--r); }
.settings-item:only-child  { border-radius: var(--r); }

.settings-label { color: var(--text); }
.settings-sub   { font-size: .75rem; color: var(--text-soft); margin-top: 1px; }

.toggle {
  width: 44px; height: 26px; background: var(--border); border-radius: 100px;
  position: relative; cursor: pointer; transition: background .25s; flex-shrink: 0;
}
.toggle.on { background: var(--accent); }
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: white;
  transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle.on::after { transform: translateX(18px); }

.time-input {
  font-size: .88rem; font-family: inherit; color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 5px 10px; background: var(--bg);
}
.time-input:focus { outline: none; border-color: var(--accent); }

/* ── Setup screen ──────────────────────────────────────────────── */
.setup-page {
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
  max-width: 360px; margin: 0 auto;
}
.setup-heart  { width: 56px; height: 56px; margin: 0 auto 20px; }
.setup-heart svg { width: 100%; height: 100%; }
.setup-title  { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.setup-desc   { font-size: .88rem; color: var(--text-soft); margin-bottom: 32px; line-height: 1.6; }
.setup-form   { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.setup-form .input { font-size: 1rem; text-align: center; background: var(--card); }

.gender-row { display: flex; gap: 8px; }

.gender-btn {
  flex: 1; padding: 12px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--card); font-size: .9rem; font-family: inherit;
  color: var(--text-soft); cursor: pointer; transition: all .2s;
}
.gender-btn.selected { border-color: var(--accent); background: var(--accent-s); color: var(--accent); font-weight: 600; }
.setup-note { font-size: .75rem; color: var(--text-soft); margin-top: 8px; }

/* ── Ritual modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(40,25,30,.35);
  z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(2px);
}

.modal-sheet {
  background: var(--card);
  border-radius: var(--r) var(--r) 0 0;
  width: 100%; max-width: 480px;
  padding: 12px 20px calc(24px + var(--safe-b));
  max-height: 80dvh;
  overflow-y: auto;
}

.modal-handle {
  width: 36px; height: 4px; background: var(--border);
  border-radius: 100px; margin: 0 auto 16px;
}

.modal-title { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }

.ritual-modal-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.ritual-modal-row:last-of-type { border-bottom: none; }

.ritual-arrows { display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }

.ritual-arrow {
  background: none; border: none; cursor: pointer;
  color: var(--text-soft); font-size: .8rem;
  padding: 2px 5px; line-height: 1; border-radius: 4px;
  transition: color .15s, background .15s;
}
.ritual-arrow:hover:not(:disabled) { color: var(--accent); background: var(--accent-s); }
.ritual-arrow:disabled { opacity: .25; cursor: not-allowed; }

.ritual-edit-input {
  flex: 1; border: none; background: transparent;
  font-size: .88rem; font-family: inherit; color: var(--text); padding: 0;
}
.ritual-edit-input:focus { outline: none; }

.ritual-del-btn {
  background: none; border: none; color: var(--text-soft);
  font-size: 1.1rem; cursor: pointer; padding: 2px 5px;
  border-radius: 4px; transition: color .15s;
}
.ritual-del-btn:hover { color: #C44; }

/* ── User switch modal ─────────────────────────────────────────── */
.user-switch-item {
  padding: 14px 16px; border-radius: var(--r-sm);
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer; font-size: .95rem; color: var(--text);
  transition: all .2s;
}
.user-switch-item.active {
  border-color: var(--accent); background: var(--accent-s); color: var(--accent);
}
.user-switch-item:hover:not(.active) { border-color: var(--text-soft); }

/* ── Partner empty state ───────────────────────────────────────── */
.partner-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 40px 20px;
  background: var(--card); border-radius: var(--r);
  box-shadow: var(--shadow); border: 1px solid rgba(200,180,180,.12);
}
.partner-empty-icon {
  width: 48px; height: 48px; color: var(--partner-accent); opacity: .7;
}
.partner-empty-icon svg { width: 100%; height: 100%; }
.partner-empty-text {
  font-size: .88rem; color: var(--text-soft); text-align: center; line-height: 1.6;
}

/* ── Partner entry view ────────────────────────────────────────── */
.entry-field-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 6px;
}
.entry-field-value { font-size: .9rem; color: var(--text); line-height: 1.55; }

.entry-noticed-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.entry-noticed-list li { font-size: .9rem; color: var(--text); padding-left: 14px; position: relative; }
.entry-noticed-list li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--partner-accent); font-size: 1.2rem; line-height: .9;
}

/* ── Note card (partner view) ──────────────────────────────────── */
.note-card {
  background: var(--partner-accent-s);
  border: 1.5px solid rgba(136,150,200,.2);
}
.note-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

/* ── Toast ─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--safe-b) + 40px);
  left: 50%; transform: translateX(-50%) translateY(20px);
  background: #2C2220; color: white;
  padding: 10px 20px; border-radius: 100px;
  font-size: .83rem; white-space: nowrap; z-index: 300;
  opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .page-header { padding-top: 24px; }
}
