:root {
  --green: #4f9f46;
  --green-dark: #123a27;
  --green-mid: #2f7642;
  --green-soft: #e8f6dd;
  --leaf: #9ccf5b;
  --yellow: #f4d765;
  --orange: #f49a42;
  --pink: #ff9d92;
  --cream: #fff9ea;
  --paper: rgba(255, 255, 255, 0.9);
  --line: #e7ddc7;
  --text: #1f2f25;
  --muted: #738071;
  --danger: #df6b5e;
  --warning: #d9972d;
  --shadow: 0 18px 46px rgba(62, 80, 47, 0.14);
  --soft-shadow: 0 10px 28px rgba(65, 84, 50, 0.09);
  --hairline: rgba(43, 62, 45, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(244, 215, 101, 0.28), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(79, 159, 70, 0.16), transparent 28%),
    linear-gradient(135deg, #fbf2df 0%, #f7f3e8 48%, #eaf5df 100%);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(79, 159, 70, 0.22);
  outline-offset: 2px;
}

.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 28px 36px;
}

.notes {
  width: 320px;
}

.app-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 20%, #fff5af 0 18%, transparent 19%),
    linear-gradient(145deg, #fff8d9, #e8f6c8);
  box-shadow: var(--shadow);
  font-size: 46px;
}

.notes h1 {
  margin: 18px 0 8px;
  color: var(--green-dark);
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.notes p {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 18px;
}

.note-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(122, 172, 65, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.note-card strong {
  color: var(--green-dark);
  font-size: 17px;
}

.note-card span {
  color: #4f6248;
  font-size: 14px;
}

.demo-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.demo-button {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #88c642);
  box-shadow: 0 12px 24px rgba(106, 174, 53, 0.24);
  font-size: 15px;
  font-weight: 800;
}

.demo-button.is-running {
  background: linear-gradient(135deg, #e49a36, #f6c45d);
}

.demo-caption {
  min-height: 42px;
  color: #69775f;
  font-size: 13px;
  line-height: 1.55;
}

body.demo-playing .app-icon,
body.demo-playing .notes h1,
body.demo-playing .notes p,
body.demo-playing .note-card,
body.demo-playing .demo-panel {
  opacity: 0;
  transform: translateY(12px);
  animation: demoFadeUp 0.58s ease forwards;
}

body.demo-playing .notes h1 {
  animation-delay: 0.15s;
}

body.demo-playing .notes p {
  animation-delay: 0.3s;
}

body.demo-playing .note-card {
  animation-delay: 0.45s;
}

body.demo-playing .demo-panel {
  animation-delay: 0.6s;
}

.phone {
  width: 430px;
  height: 896px;
  overflow: hidden;
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff9ee 42%, #f4faef 100%);
  box-shadow: 0 34px 80px rgba(73, 87, 52, 0.25);
}

.status-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

#app {
  height: calc(100% - 38px);
}

.screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.demo-running .demo-item {
  opacity: 0;
  transform: translateY(14px);
  animation: demoFadeUp 0.55s ease forwards;
}

.demo-running .demo-item:nth-child(1) {
  animation-delay: 0.08s;
}

.demo-running .demo-item:nth-child(2) {
  animation-delay: 0.22s;
}

.demo-running .demo-item:nth-child(3) {
  animation-delay: 0.36s;
}

.demo-running .demo-item:nth-child(4) {
  animation-delay: 0.5s;
}

.demo-running .demo-item:nth-child(5) {
  animation-delay: 0.64s;
}

.demo-running .fruit-card.demo-item {
  animation-delay: 0.52s;
}

.demo-running .fruit-card.demo-item:nth-of-type(2) {
  animation-delay: 0.66s;
}

.demo-running .fruit-card.demo-item:nth-of-type(3) {
  animation-delay: 0.8s;
}

.demo-running .fruit-card.demo-item:nth-of-type(4) {
  animation-delay: 0.94s;
}

.demo-running .fruit-card.demo-item:nth-of-type(5) {
  animation-delay: 1.08s;
}

@keyframes demoFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 138px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.62), rgba(246, 251, 239, 0.88));
}

.content::-webkit-scrollbar {
  width: 0;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.page-header p,
.hero p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #3a4d3d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(43, 62, 45, 0.08);
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(64, 82, 50, 0.06);
}

.location span {
  color: var(--muted);
  font-size: 13px;
}

.round-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #314330;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(43, 62, 45, 0.08);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 204px;
  margin-bottom: 14px;
  padding: 20px 18px 18px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(244, 215, 101, 0.58) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 247, 218, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px 0 999px 0;
  background: rgba(117, 174, 63, 0.16);
  transform: rotate(-25deg);
}

.hero::before {
  width: 58px;
  height: 26px;
  right: 28px;
  top: 18px;
}

.hero::after {
  width: 44px;
  height: 18px;
  right: 86px;
  bottom: 18px;
}

.kicker {
  display: block;
  margin-bottom: 6px;
  color: #a57933;
  font-size: 13px;
}

.hero h2,
.page-title {
  margin: 0;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-fruits {
  width: 214px;
  height: 54px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 248, 219, 0.72);
  box-shadow: inset 0 0 0 1px rgba(238, 220, 159, 0.62);
  font-size: 35px;
  filter: drop-shadow(0 8px 12px rgba(106, 108, 54, 0.14));
}

.hero-fruits span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
}

.yangmei-art {
  position: relative;
}

.yangmei-art::before {
  width: 30px;
  height: 30px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #f1819d 0 7%, transparent 8%),
    radial-gradient(circle at 64% 28%, #a50f4e 0 9%, transparent 10%),
    radial-gradient(circle at 28% 55%, #b31557 0 10%, transparent 11%),
    radial-gradient(circle at 54% 58%, #7f0a3b 0 11%, transparent 12%),
    radial-gradient(circle at 74% 60%, #d03970 0 8%, transparent 9%),
    radial-gradient(circle at 50% 42%, #9e104c 0 100%);
  box-shadow: inset -4px -5px 8px rgba(89, 10, 44, 0.25);
}

.yangmei-art::after {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 14px;
  height: 7px;
  content: "";
  border-radius: 999px 0 999px 0;
  background: #69a845;
  transform: rotate(-28deg);
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0 14px;
}

.chips::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.chip {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: #516650;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(122, 172, 65, 0.18);
  font-size: 14px;
}

.chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  box-shadow: 0 7px 16px rgba(106, 174, 53, 0.22);
}

.fruit-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 15px;
  align-items: start;
  width: 100%;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(224, 215, 193, 0.92);
  border-radius: 8px;
  text-align: left;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 243, 0.94));
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.fruit-card.featured {
  padding: 14px;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 219, 96, 0.38), transparent 28%),
    linear-gradient(135deg, #fffef9, #f4f9e6);
}

.fruit-card.featured .fruit-visual {
  width: 128px;
  height: 128px;
  aspect-ratio: 1 / 1;
  font-size: 68px;
}

.fruit-card:active,
.calendar-card:active,
.result-card.clickable:active,
.chip:active,
.month-btn:active {
  transform: scale(0.985);
}

.fruit-visual {
  width: 128px;
  height: 128px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.88) 0 12%, transparent 13%),
    radial-gradient(circle at 82% 18%, rgba(255, 218, 105, 0.5) 0 17%, transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(121, 181, 68, 0.16) 0 18%, transparent 19%),
    linear-gradient(145deg, #fff4bd, #eef8d5);
  font-size: 68px;
}

.fruit-main-art {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 14px rgba(112, 90, 37, 0.18));
}

.fruit-plate {
  position: absolute;
  left: 50%;
  bottom: 17px;
  z-index: 1;
  width: 96px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(151, 119, 44, 0.2), rgba(151, 119, 44, 0.04) 68%, transparent 70%);
  transform: translateX(-50%);
}

.fruit-deco {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--orange);
}

.deco-a {
  width: 8px;
  height: 8px;
  left: 18px;
  top: 18px;
}

.deco-b {
  width: 7px;
  height: 7px;
  right: 18px;
  bottom: 22px;
  background: var(--green);
}

.deco-c {
  width: 6px;
  height: 6px;
  right: 42px;
  top: 18px;
  background: #ffd85b;
}

.fruit-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.fruit-name-row h3 {
  margin: 0;
  color: #243528;
  font-size: 20px;
}

.tag {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f0b04d);
  font-size: 12px;
  font-weight: 700;
}

.tag.green {
  background: linear-gradient(135deg, var(--green-mid), var(--green));
}

.tag.soft {
  color: #4f8b3f;
  background: var(--green-soft);
}

.quality-row,
.result-meta,
.insight-row,
.preference-grid {
  display: grid;
  gap: 8px;
}

.quality-row,
.result-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 9px;
  color: #6c765f;
  font-size: 12px;
}

.quality-row span,
.result-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(232, 246, 221, 0.86);
}

.insight-row,
.preference-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 12px;
}

.insight-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.insight-row div,
.preference-grid div,
.quick-panel {
  padding: 12px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 7px 20px rgba(65, 84, 50, 0.06);
}

.insight-row span,
.preference-grid span,
.quick-panel span {
  display: block;
  color: #7a8676;
  font-size: 11px;
  line-height: 1.2;
}

.insight-row strong,
.preference-grid strong,
.quick-panel strong {
  display: block;
  margin-top: 5px;
  color: #243528;
  font-size: 15px;
}

.fruit-card p {
  margin: 7px 0 9px;
  color: #5b6656;
  font-size: 13px;
  line-height: 1.45;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #586456;
  font-size: 13px;
}

.meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff4d5;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
}

.score {
  color: #f4a129;
  font-size: 13px;
  font-weight: 800;
}

.tabbar {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px 10px 10px;
  border-top: 1px solid rgba(217, 204, 173, 0.58);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 30px rgba(73, 87, 52, 0.12);
}

.tab {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #879083;
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
  transition:
    color 0.16s ease,
    background 0.16s ease;
}

.tab span {
  font-size: 22px;
  line-height: 1;
}

.tab.active {
  color: var(--green);
  font-weight: 700;
  background: rgba(232, 246, 221, 0.74);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  padding: 13px 15px;
  border: 1px solid rgba(205, 221, 190, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--soft-shadow);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.quick-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.quick-panel strong {
  margin-top: 0;
  color: var(--green-mid);
  font-size: 13px;
}

.section-title {
  margin: 18px 0 10px;
  color: #26392b;
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 10px;
}

.section-heading .section-title {
  margin: 0;
}

.section-action {
  color: #8a957f;
  background: transparent;
  font-size: 13px;
}

.result-card,
.info-card,
.profile-card,
.calendar-card {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(224, 215, 193, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.search-result-card {
  position: relative;
  padding-right: 96px;
}

.detail-link {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0;
  color: var(--green-mid);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.detail-link::after {
  position: absolute;
  left: 0;
  right: 14px;
  bottom: -3px;
  height: 1px;
  content: "";
  background: rgba(107, 174, 53, 0.32);
}

.info-card.highlight,
.result-card.highlight {
  border-color: rgba(79, 159, 70, 0.22);
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 246, 221, 0.9), transparent 30%),
    rgba(255, 255, 255, 0.9);
}

.result-card h3,
.info-card h3 {
  margin: 0 0 8px;
  color: #26392b;
  font-size: 20px;
}

.verdict {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  font-size: 12px;
  font-weight: 700;
}

.verdict.warn {
  background: var(--warning);
}

.verdict.no {
  background: var(--danger);
}

.body-text {
  margin: 0;
  color: #566253;
  font-size: 14px;
  line-height: 1.6;
}

.link-btn {
  margin-top: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #84bf3f);
  box-shadow: 0 9px 18px rgba(106, 174, 53, 0.2);
  font-size: 14px;
  font-weight: 700;
}

.detail-hero {
  text-align: center;
  margin-bottom: 12px;
  padding: 14px 0 8px;
}

.detail-hero .big-fruit {
  width: 178px;
  height: 142px;
  display: grid;
  place-items: center;
  margin: 8px auto 8px;
  border-radius: 48%;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(145deg, #fff1b4, #eef8cf);
  font-size: 106px;
  filter: drop-shadow(0 10px 18px rgba(130, 107, 36, 0.16));
}

.detail-title {
  margin: 0;
  font-size: 27px;
  color: #223628;
}

.detail-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.detail-pills span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #53624f;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--hairline);
  font-size: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-stat {
  padding: 12px;
  border-radius: 8px;
  background: #fff8e4;
}

.mini-stat span {
  display: block;
  color: #8b7b5d;
  font-size: 12px;
}

.mini-stat strong {
  display: block;
  margin-top: 4px;
  color: #26392b;
  font-size: 15px;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 14px 0;
}

.month-btn {
  height: 40px;
  border-radius: 999px;
  color: #596951;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 206, 178, 0.82);
  font-weight: 700;
}

.month-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  box-shadow: 0 7px 16px rgba(106, 174, 53, 0.2);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calendar-card {
  display: grid;
  place-items: center;
  min-height: 130px;
  text-align: center;
  gap: 6px;
  color: inherit;
}

.calendar-card .emoji {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff4cb, #edf7dc);
  font-size: 36px;
}

.calendar-card strong {
  margin-top: 4px;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, #dff4b7, #fff5c7);
  box-shadow: var(--shadow);
}

.profile-hero h2 {
  margin: 0 0 3px;
  font-size: 22px;
}

.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff7d0;
  font-size: 34px;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.collection-item {
  display: grid;
  place-items: center;
  min-height: 102px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0, #f7fbe9);
  border: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 700;
}

.collection-item span {
  display: block;
  font-size: 34px;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #f0e5cd;
  color: #2d3e30;
  background: transparent;
  text-align: left;
}

.list-row:last-child {
  border-bottom: 0;
}

.back-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avoid-list {
  display: grid;
  gap: 9px;
}

.avoid-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #fff8e8;
  border: 1px solid rgba(239, 226, 195, 0.82);
  color: inherit;
  text-align: left;
}

.avoid-item .avoid-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0bf;
  font-size: 24px;
}

.avoid-item strong {
  display: block;
  margin-bottom: 2px;
  color: #2a3d2f;
  font-size: 14px;
}

.avoid-item p {
  margin: 0;
  color: #788171;
  font-size: 12px;
  line-height: 1.35;
}

.avoid-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: #b86738;
  background: #fff0d5;
  font-size: 11px;
  font-weight: 700;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 106px;
  z-index: 20;
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(30, 49, 35, 0.88);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  font-size: 13px;
  text-align: center;
}

.empty-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px 18px;
  border: 1px dashed rgba(122, 172, 65, 0.36);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.empty-card h3 {
  margin: 8px 0 4px;
  color: var(--green-dark);
}

.empty-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.empty-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 28px;
}

@media (max-width: 820px) {
  .stage {
    padding: 18px;
  }

  .notes {
    display: none;
  }

  .phone {
    width: min(430px, 100vw - 24px);
    height: min(896px, 100vh - 24px);
  }
}
