/* Girlie Pop Garden — cozy daily care, iPhone-first */

:root {
  --cream: #fff6ee;
  --cream2: #fde8d8;
  --pink: #f4a7bc;
  --pink2: #ffd0dc;
  --pink-deep: #e56b8a;
  --mint: #b7e4d4;
  --mint2: #7fc9b0;
  --soil: #c48a62;
  --ink: #4a3040;
  --muted: #8a6474;
  --card: rgba(255, 252, 248, 0.88);
  --shadow: 0 10px 28px rgba(180, 90, 120, 0.16);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.45;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }

.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% -10%, #ffe0ea 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, #d8f5ea 0%, transparent 46%),
    linear-gradient(180deg, #ffe9f0 0%, #fff6ee 38%, #eaf8f1 100%);
}

.petals {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 170, 190, 0.35) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 18%, rgba(255, 190, 210, 0.3) 0 3px, transparent 4px),
    radial-gradient(circle at 40% 70%, rgba(160, 220, 190, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 64%, rgba(255, 170, 190, 0.25) 0 3px, transparent 4px);
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.app {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: calc(14px + var(--safe-t)) 16px calc(28px + var(--safe-b));
}

.top {
  text-align: center;
  padding: 8px 4px 4px;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 800;
}

.phone-frame {
  position: relative;
  margin: 8px auto 10px;
  max-width: 340px;
  padding: 14px 16px 12px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff8fb 0%, #ffe4ee 100%);
  border: 3px solid #f4b8c8;
  box-shadow:
    0 0 0 4px #fff,
    0 10px 0 #f0b4c4,
    0 16px 28px rgba(180, 90, 120, 0.18);
}

.phone-notch {
  display: block;
  width: 78px;
  height: 10px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8b4c4, #f4c8d4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

h1, .phone-ask {
  margin: 0;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 6.4vw, 1.72rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #c45a78;
  text-shadow: 0 2px 0 #ffe8ef;
}

.phone-home {
  display: block;
  width: 36px;
  height: 5px;
  margin: 12px auto 2px;
  border-radius: 999px;
  background: #f0b8c8;
}

.garden-title {
  margin: 4px 0 0;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #d47a94;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 2px 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.chips {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #f3c8d4;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 3px 0 #f3c8d4;
}

.chip.streak { background: #fff4e8; border-color: #ffd0a8; box-shadow: 0 3px 0 #ffd0a8; }

.hero-card {
  margin: 16px 0 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}

.hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 42%;
}

.note {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px dashed #f4b8c8;
  font-weight: 700;
  color: #6a4050;
  min-height: 3.2em;
}

.note.welcome-back {
  background: #fff4e8;
  border-style: solid;
  border-color: #ffd0a8;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 14px 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border: 2px solid #ffe4ec;
  backdrop-filter: blur(8px);
}

.panel h2 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  color: #c45a78;
}

.hint {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.checklist-panel { padding: 10px 14px; }
.check-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #7a5060;
  flex-wrap: wrap;
}
.check-row span:first-child { color: #c45a78; text-transform: uppercase; letter-spacing: 0.08em; }

.plots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.plot {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 10px 8px 12px;
  min-height: 168px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3fff8 0%, #e8f7ee 100%);
  box-shadow: inset 0 0 0 2px #cfe8d8, 0 4px 0 #c5ddcc;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease, filter 0.2s ease;
}

.plot:active { transform: translateY(2px) scale(0.98); }
.plot.done {
  background: linear-gradient(180deg, #ffeaf1 0%, #fff6ee 100%);
  box-shadow: inset 0 0 0 2px #f4c4d0, 0 4px 0 #e8b4c0;
}
.plot.sparkle {
  background: linear-gradient(180deg, #fff4c8 0%, #ffeaf1 55%, #e8fff4 100%);
}

.plot-stage {
  position: relative;
  width: 100%;
  height: 92px;
  display: grid;
  place-items: center;
}

.plot-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(80, 40, 50, 0.18));
}

.plot.bloom .plot-img { width: 96px; height: 96px; }
.plot.sparkle .plot-img {
  width: 100px;
  height: 100px;
  animation: glow 2.4s ease-in-out infinite;
}
.plot.wilt .plot-img,
.plot.wilt .sprout,
.plot.wilt .bud,
.plot.wilt .seed {
  filter: grayscale(0.35) saturate(0.7) brightness(0.95);
  transform: rotate(-8deg);
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 210, 80, 0.4)); transform: translateY(0); }
  50% { filter: drop-shadow(0 0 14px rgba(255, 170, 200, 0.7)); transform: translateY(-3px); }
}

.seed, .sprout, .bud {
  position: relative;
  display: block;
}

.seed {
  width: 18px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8c48a, #8a5a32);
  box-shadow: 0 10px 0 8px #c9a078, 0 18px 0 16px #7aaf6a;
}

.sprout {
  width: 10px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(#7ec98a, #3d8a52);
  box-shadow: 0 16px 0 14px #7aaf6a;
}
.sprout::before,
.sprout::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 18px;
  height: 12px;
  background: #6fca7a;
  border-radius: 50% 0 50% 50%;
}
.sprout::before { left: -14px; transform: rotate(-30deg); }
.sprout::after { right: -14px; transform: scaleX(-1) rotate(-30deg); }

.bud {
  width: 8px;
  height: 34px;
  border-radius: 8px;
  background: #4d9a62;
  box-shadow: 0 16px 0 14px #7aaf6a;
}
.bud::before {
  content: "♡";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: #e56b8a;
  line-height: 1;
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, #ffe56a 0 2px, transparent 3px),
    radial-gradient(circle at 82% 30%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 70% 78%, #ffb0c8 0 2px, transparent 3px),
    radial-gradient(circle at 28% 80%, #ffe56a 0 1.5px, transparent 2.5px);
  animation: twinkle 1.6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.4; } to { opacity: 1; } }

.plot-name {
  font-family: "Fredoka", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a3040;
}

.plot-meta {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.water-tag {
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #7fc9b0;
  color: #14382e;
  font-size: 0.78rem;
  font-weight: 800;
}
.plot.done .water-tag {
  background: #f4a7bc;
  color: #5a2034;
}

.dog-stage {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff8f0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: inset 0 0 0 2px #f3d2bc;
}
.dog-stage img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: 50% 55%;
}
.dog-stage:active img { transform: scale(1.02); }
.dog-stage.wag img { animation: wag 0.55s ease; }
@keyframes wag {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg) scale(1.03); }
  50% { transform: rotate(3deg); }
  75% { transform: rotate(-2deg); }
}

.dog-wag {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffe0ea;
  color: #c45a78;
  font-size: 1.1rem;
}

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

.mood-label {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  color: #c45a78;
}

.hearts { display: flex; gap: 6px; }
.heart {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffe8ee;
  color: #e8b4c0;
  font-size: 1rem;
}
.heart.on {
  background: #ffd0dc;
  color: #e0567a;
  transform: scale(1.05);
}

.big-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(180deg, #ffe0b0, #f4b070);
  color: #5a3018;
  box-shadow: 0 5px 0 #d48848, 0 10px 18px rgba(180, 90, 40, 0.18);
}
.big-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 #d48848; }
.big-btn:disabled,
.big-btn.done {
  background: linear-gradient(180deg, #e8ddd4, #d4c4b8);
  color: #7a6a60;
  box-shadow: 0 4px 0 #c4b4a8;
  cursor: default;
}

.foot {
  text-align: center;
  padding: 8px 8px 4px;
  color: var(--muted);
  font-weight: 700;
}
.love {
  margin: 6px 0 0;
  font-family: "Fredoka", sans-serif;
  color: #c45a78;
  font-size: 1.05rem;
}

.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  overflow: hidden;
}

.floater {
  position: absolute;
  font-size: 1.2rem;
  animation: floatUp 1.05s ease-out forwards;
  filter: drop-shadow(0 2px 4px rgba(180, 80, 110, 0.25));
}
@keyframes floatUp {
  from { transform: translate(-50%, 0) scale(0.6); opacity: 1; }
  to { transform: translate(-50%, -88px) scale(1.15); opacity: 0; }
}

@media (min-width: 480px) {
  .plots { gap: 12px; }
  .plot { min-height: 180px; }
}


/* --- Sudoku (pastel, iPhone-first) --- */
.sudoku-panel {
  padding-bottom: 16px;
}

.sudo-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.sudo-diff {
  display: flex;
  gap: 8px;
}

.sudo-chip {
  appearance: none;
  -webkit-appearance: none;
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid #f3c8d4;
  background: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 3px 0 #f3c8d4;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sudo-chip.on {
  background: #ffe0ea;
  border-color: #e56b8a;
  box-shadow: 0 3px 0 #e56b8a;
  color: #8a3048;
}

.sudo-chip:active { transform: translateY(2px); box-shadow: 0 1px 0 #f3c8d4; }

.sudo-status {
  margin: 0;
  flex: 1 1 140px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
  text-align: right;
  min-height: 2.4em;
}

.sudo-status.ok { color: #2f7a62; }
.sudo-status.bad { color: #c45a78; }

.sudo-board {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid #c45a78;
  border-radius: 14px;
  overflow: hidden;
  background: #c45a78;
  gap: 1px;
  -webkit-user-select: none;
  user-select: none;
}

.sudo-cell {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  background: #fffdfb;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: clamp(1rem, 4.6vw, 1.28rem);
  font-weight: 600;
  color: #c45a78;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sudo-cell.box-l { box-shadow: inset 2px 0 0 #c45a78; }
.sudo-cell.box-t { box-shadow: inset 0 2px 0 #c45a78; }
.sudo-cell.box-l.box-t { box-shadow: inset 2px 2px 0 #c45a78; }
.sudo-cell.given {
  background: #fff0f4;
  color: #4a3040;
  font-weight: 700;
  cursor: default;
}
.sudo-cell.selected {
  background: #ffe56a;
  color: #5a3018;
  z-index: 1;
}
.sudo-cell.clash {
  background: #ffd0dc;
  color: #a03050;
}
.sudo-cell.wrong {
  background: #ffc0d0;
  color: #8a2038;
}
.sudo-cell.right {
  background: #d8f5ea;
  color: #246850;
}
.sudo-cell:active { filter: brightness(0.96); }

.sudo-pad {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 10px;
}

.sudo-num {
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(180deg, #fff, #ffeaf1);
  color: #c45a78;
  box-shadow: 0 4px 0 #f4b8c8;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sudo-num:active { transform: translateY(3px); box-shadow: 0 1px 0 #f4b8c8; }

.sudo-num.erase {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff6ee, #fde8d8);
  color: #8a6474;
  box-shadow: 0 4px 0 #e8c8b8;
}

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

.sudo-actions .big-btn {
  min-height: 50px;
  font-size: 1.05rem;
}

.sudo-new {
  background: linear-gradient(180deg, #ffe0ea, #f4a7bc);
  color: #5a2034;
  box-shadow: 0 5px 0 #e56b8a, 0 10px 18px rgba(180, 90, 120, 0.16);
}

.sudo-new:active { box-shadow: 0 2px 0 #e56b8a; }

.sudo-check {
  background: linear-gradient(180deg, #d8f5ea, #7fc9b0);
  color: #14382e;
  box-shadow: 0 5px 0 #5aaa90, 0 10px 18px rgba(40, 140, 110, 0.16);
}

.sudo-check:active { box-shadow: 0 2px 0 #5aaa90; }


/* --- v2 engagement: needs, colors, bouquet, moods --- */
.chip.colors {
  background: #eef8f4;
  border-color: #b7e4d4;
  box-shadow: 0 3px 0 #b7e4d4;
}

.plot { position: relative; }

.need-chip {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  box-shadow: 0 2px 0 rgba(80, 40, 50, 0.08);
}
.need-chip.sip {
  background: #d8f5ea;
  border: 1.5px solid #7fc9b0;
  color: #14382e;
}
.need-chip.talk {
  background: #ffe0ea;
  border: 1.5px solid #f4a7bc;
  color: #8a3048;
}
.need-chip.shade {
  background: #e8f0ff;
  border: 1.5px solid #b8c8f0;
  color: #405090;
}

.water-tag.pick,
.plot.pickable .water-tag {
  background: #ffe56a;
  color: #5a3018;
}

.plot.hue-peach {
  background: linear-gradient(180deg, #fff6ee 0%, #ffe8d4 100%);
}
.plot.hue-lavender {
  background: linear-gradient(180deg, #f6f0ff 0%, #efe8ff 100%);
}
.plot.hue-gold {
  background: linear-gradient(180deg, #fff8d8 0%, #ffeec0 100%);
}
.plot.hue-mint-sparkle {
  background: linear-gradient(180deg, #e8fff8 0%, #f3fff8 100%);
  box-shadow: inset 0 0 0 2px #b8efe0, 0 4px 0 #9edcc8;
}

.plot.hue-peach .plot-stage { filter: hue-rotate(18deg) saturate(1.25) brightness(1.05); }
.plot.hue-lavender .plot-stage { filter: hue-rotate(-42deg) saturate(1.05); }
.plot.hue-gold .plot-stage { filter: hue-rotate(38deg) saturate(1.4) brightness(1.12); }
.plot.hue-mint-sparkle .plot-stage { filter: hue-rotate(108deg) saturate(1.2) brightness(1.05); }

.stems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stem {
  flex: 1 1 calc(33.33% - 8px);
  max-width: calc(33.33% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 10px;
  border-radius: 14px;
  background: #fff8fb;
  border: 2px solid #ffe4ec;
  min-width: 88px;
}
.stem-bloom {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 46% 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #ffd0dc 0 12px, #e56b8a 18px, #c45a78 22px);
  box-shadow: 0 3px 0 #f4b8c8;
}
.stem.hue-peach .stem-bloom {
  background:
    radial-gradient(circle at 32% 28%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #ffd8c0 0 12px, #f4a070 18px, #e08050 22px);
  box-shadow: 0 3px 0 #f4c8a8;
}
.stem.hue-lavender .stem-bloom {
  background:
    radial-gradient(circle at 32% 28%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #e8dcff 0 12px, #b090e0 18px, #9070c8 22px);
  box-shadow: 0 3px 0 #d0c0f0;
}
.stem.hue-gold .stem-bloom {
  background:
    radial-gradient(circle at 32% 28%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #fff0b0 0 12px, #e8c040 18px, #d4a020 22px);
  box-shadow: 0 3px 0 #e8d080;
}
.stem.hue-mint-sparkle .stem-bloom {
  background:
    radial-gradient(circle at 32% 28%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #d8fff0 0 12px, #7fc9b0 18px, #50c8a8 22px);
  box-shadow: 0 3px 0 #b7e4d4;
}
.stem-name {
  font-family: "Fredoka", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4a3040;
}
.stem-meta {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: lowercase;
}

.big-btn.mood-act {
  margin-top: 8px;
  background: linear-gradient(180deg, #ffe0ea, #f4a7bc);
  color: #5a2034;
  box-shadow: 0 5px 0 #e56b8a, 0 10px 18px rgba(180, 90, 120, 0.16);
}
.big-btn.mood-act:active { box-shadow: 0 2px 0 #e56b8a; }
.big-btn.mood-act:disabled,
.big-btn.mood-act.done {
  background: linear-gradient(180deg, #e8ddd4, #d4c4b8);
  color: #7a6a60;
  box-shadow: 0 4px 0 #c4b4a8;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(22px + var(--safe-b));
  transform: translateX(-50%) translateY(12px);
  z-index: 50;
  max-width: min(92vw, 360px);
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #e56b8a;
  color: #8a3048;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(180, 90, 120, 0.2);
  opacity: 0;
  pointer-events: none;
}
.toast.show {
  animation: toastIn 2.8s ease forwards;
}
@keyframes toastIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(12px); }
  12% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}
