@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap");

/* ============================================================
   MOMDIARY APP — Design Tokens
   ============================================================ */
:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --amber-500: #f59e0b;
  --green-500: #22c55e;

  --bg: #fdf2f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: rgba(236, 72, 153, 0.10);
  --border-strong: rgba(209, 213, 219, 0.6);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --shadow-glow: 0 8px 32px rgba(236, 72, 153, 0.15);

  --font: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
  --nav-h: 80px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(244,114,182,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%, rgba(168,85,247,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 100%, rgba(45,212,191,0.08) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   ONBOARDING
   ============================================================ */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 40%, #f0fdfa 100%);
}

.onboarding-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 40px 28px 32px;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  text-align: center;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.onboarding-logo {
  margin-bottom: 16px;
}

.onboarding-logo-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--purple-500) 50%, #4f8cff 100%);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}

.onboarding-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.onboarding-subtitle {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.onboarding-steps {
  margin-top: 24px;
  min-height: 260px;
  position: relative;
}

.onboarding-step {
  display: none;
  animation: fadeIn 0.4s ease both;
}

.onboarding-step.is-active {
  display: block;
}

.onboarding-illustration {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: bounceIn 0.5s ease both;
}

.onboarding-step h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.onboarding-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.onboarding-field {
  margin-top: 20px;
}

.onboarding-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.onboarding-input:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.12);
}

.onboarding-btn {
  margin-top: 24px;
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--purple-500) 100%);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.onboarding-btn:active {
  transform: scale(0.97);
}

.onboarding-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.onboarding-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all 0.3s;
}

.onboarding-dots .dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
}

/* ============================================================
   APP SHELL
   ============================================================ */
.app-shell {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--safe-top) + 8px) 16px 0;
  min-height: 100vh;
  min-height: 100dvh;
}

.bottom-spacer {
  height: calc(var(--nav-h) + var(--safe-bottom) + 16px);
}

/* ============================================================
   APP HEADER
   ============================================================ */
.app-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 8px) 16px 8px;
  background: rgba(253, 242, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  box-shadow: 0 4px 12px rgba(168,85,247,0.2);
}

.header-brand {
  display: flex;
  flex-direction: column;
}

.header-brand strong {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
}

.header-brand span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink-500);
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  gap: 8px;
}

.header-icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--gray-600);
  transition: all 0.15s;
}

.header-icon-btn:active {
  transform: scale(0.92);
  background: var(--gray-100);
}

/* ============================================================
   TAB CONTENT
   ============================================================ */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease both;
}

.tab-content.is-active {
  display: block;
}

/* ============================================================
   HERO CARD (Dashboard)
   ============================================================ */
.hero-card {
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  background: linear-gradient(145deg, #1f1135 0%, #2d1b4e 35%, #1a3a4a 70%, #0f3d3e 100%);
  color: #fff;
  box-shadow: 0 20px 60px rgba(31, 17, 53, 0.35);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,0.2), transparent 70%);
  pointer-events: none;
}

.hero-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.15), transparent 70%);
  pointer-events: none;
}

.hero-greeting {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.hero-gestation {
  display: flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
}

.hero-week {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-week-label {
  display: flex;
  flex-direction: column;
}

.hero-week-label span {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.hero-week-label strong {
  font-size: 1.1rem;
  color: var(--pink-300);
  font-weight: 800;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  position: relative;
}

.hero-meta {
  flex: 1;
  text-align: center;
}

.hero-meta-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.hero-meta-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-top: 2px;
}

.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
}

.hero-progress {
  margin-top: 16px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}

.hero-progress-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink-400), var(--purple-400), var(--teal-400));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  position: relative;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-block {
  margin-bottom: 20px;
}

.section-head {
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   FOCUS CARD (Today)
   ============================================================ */
.focus-card {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.focus-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.checklist {
  display: grid;
  gap: 8px;
}

.checklist li label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.15s;
}

.checklist li label:has(input:checked) {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(20,184,166,0.06));
  border-color: rgba(34,197,94,0.2);
}

.checklist li label:has(input:checked) span {
  text-decoration: line-through;
  color: var(--text-muted);
}

.checklist input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-500);
  flex-shrink: 0;
}

.checklist span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ============================================================
   MILESTONE COMPACT
   ============================================================ */
.milestone-card-compact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,241,246,0.98), rgba(240,253,250,0.95));
  border: 1px solid rgba(236,72,153,0.1);
  box-shadow: var(--shadow-sm);
}

.milestone-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.milestone-info {
  flex: 1;
  min-width: 0;
}

.milestone-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-800);
}

.milestone-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.milestone-countdown {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ============================================================
   WARNING CARDS
   ============================================================ */
.warning-cards {
  display: grid;
  gap: 10px;
}

.warning-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
}

.warning-card.emergency {
  border-color: var(--red-500);
  background: rgba(254,226,226,0.5);
}

.warning-card.urgent {
  border-color: var(--amber-500);
  background: rgba(254,243,199,0.4);
}

.warning-card.watch {
  border-color: var(--teal-500);
  background: rgba(204,251,241,0.4);
}

.warning-badge {
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.warning-card.emergency .warning-badge { color: var(--red-600); }
.warning-card.urgent .warning-badge { color: #b45309; }
.warning-card.watch .warning-badge { color: var(--teal-700); }

.warning-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================================
   QUICK TOOLS
   ============================================================ */
.quick-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quick-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}

.quick-tool:active {
  transform: scale(0.95);
  background: var(--pink-50);
}

.quick-tool-icon {
  font-size: 1.5rem;
}

.quick-tool span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
}

/* ============================================================
   ROADMAP TIMELINE
   ============================================================ */
.roadmap-timeline {
  position: relative;
  padding-left: 28px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.roadmap-node {
  position: relative;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.roadmap-node::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: 2px solid var(--surface-solid);
  z-index: 1;
}

.roadmap-node.is-past {
  opacity: 0.55;
}

.roadmap-node.is-past::before {
  background: var(--green-500);
}

.roadmap-node.is-current {
  border-color: var(--pink-300);
  background: linear-gradient(145deg, rgba(255,241,246,0.98), rgba(255,255,255,0.95));
  box-shadow: 0 8px 32px rgba(236,72,153,0.12);
  transform: scale(1.02);
}

.roadmap-node.is-current::before {
  width: 14px;
  height: 14px;
  left: -23px;
  background: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(236,72,153,0.2);
  animation: pulse-dot 2s infinite;
}

.roadmap-node.is-next::before {
  background: var(--purple-400);
}

.roadmap-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.roadmap-node.is-past .roadmap-badge {
  background: rgba(34,197,94,0.1);
  color: #15803d;
}

.roadmap-node.is-current .roadmap-badge {
  background: rgba(236,72,153,0.1);
  color: var(--pink-600);
}

.roadmap-node.is-next .roadmap-badge {
  background: rgba(168,85,247,0.1);
  color: var(--purple-600);
}

.roadmap-node.is-future .roadmap-badge {
  background: var(--gray-100);
  color: var(--gray-500);
}

.roadmap-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-800);
}

.roadmap-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.roadmap-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   KICK COUNTER
   ============================================================ */
.kick-counter-card {
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.kick-display {
  margin-bottom: 8px;
}

.kick-count {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.15s;
}

.kick-count.bump {
  animation: kickBump 0.2s ease;
}

.kick-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.kick-timer {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-400);
  margin: 8px 0 20px;
  font-variant-numeric: tabular-nums;
}

.kick-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--pink-100), var(--purple-100));
  box-shadow: 0 8px 32px rgba(236,72,153,0.2), inset 0 2px 0 rgba(255,255,255,0.8);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  overflow: hidden;
}

.kick-btn:active {
  transform: scale(0.93);
  box-shadow: 0 4px 16px rgba(236,72,153,0.15);
}

.kick-btn-inner {
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.kick-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.kick-ripple.animate {
  animation: rippleOut 0.5s ease-out;
}

@keyframes rippleOut {
  0% {
    box-shadow: inset 0 0 0 0 rgba(236,72,153,0.3);
  }
  100% {
    box-shadow: inset 0 0 0 60px rgba(236,72,153,0);
  }
}

.kick-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.kick-action-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: var(--surface-solid);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: all 0.15s;
}

.kick-action-btn.danger {
  color: var(--red-500);
  border-color: rgba(239,68,68,0.2);
}

.kick-action-btn:active {
  transform: scale(0.95);
}

.kick-target-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-100);
  margin-top: 20px;
  overflow: hidden;
}

.kick-target-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-400));
  transition: width 0.3s ease;
}

.kick-target-label {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Kick History */
.kick-history {
  display: grid;
  gap: 10px;
}

.kick-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
}

.kick-history-item .kh-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
}

.kick-history-item .kh-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.kick-history-item .kh-count {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pink-500);
}

.kick-history-item .kh-success {
  color: var(--green-500);
}

/* ============================================================
   DIARY
   ============================================================ */
.diary-form-card {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.diary-form-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.diary-date-input {
  flex: 1;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  outline: none;
}

.diary-date-input:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(244,114,182,0.1);
}

.diary-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.diary-mood-picker {
  margin-bottom: 16px;
}

.mood-options {
  display: flex;
  gap: 8px;
}

.mood-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  font-size: 1.4rem;
  transition: all 0.15s;
}

.mood-btn small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mood-btn.is-selected {
  border-color: var(--pink-400);
  background: var(--pink-50);
  box-shadow: 0 4px 12px rgba(236,72,153,0.12);
  transform: scale(1.05);
}

.diary-symptoms {
  margin-bottom: 16px;
}

.symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.symptom-tag {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--surface-solid);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: all 0.15s;
}

.symptom-tag.is-selected {
  border-color: var(--purple-400);
  background: var(--purple-50);
  color: var(--purple-600);
}

.diary-note-field {
  margin-bottom: 16px;
}

.diary-note-field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  resize: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.diary-note-field textarea:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(244,114,182,0.1);
}

.diary-save-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(236,72,153,0.2);
  transition: transform 0.15s;
}

.diary-save-btn:active {
  transform: scale(0.97);
}

/* Diary Entries */
.diary-entries {
  display: grid;
  gap: 10px;
}

.diary-entry {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.diary-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.diary-entry-date {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gray-700);
}

.diary-entry-mood {
  font-size: 1.3rem;
}

.diary-entry-symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.diary-entry-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--purple-50);
  color: var(--purple-600);
  font-size: 0.72rem;
  font-weight: 700;
}

.diary-entry-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.diary-entry-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.diary-delete-btn {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(239,68,68,0.08);
  color: var(--red-500);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

/* ============================================================
   KNOWLEDGE
   ============================================================ */
.knowledge-grid {
  display: grid;
  gap: 12px;
}

.knowledge-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-weight: 600;
}

.knowledge-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}

.knowledge-card:active {
  transform: scale(0.98);
}

.knowledge-card-body {
  flex: 1;
  min-width: 0;
}

.knowledge-card-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.knowledge-card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge-card-summary {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pink-500);
}

/* ============================================================
   CONTENT LINKS
   ============================================================ */
.content-links {
  display: grid;
  gap: 10px;
}

.content-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}

.content-link-card:active {
  transform: scale(0.98);
  background: var(--pink-50);
}

.content-link-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.content-link-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gray-800);
}

.content-link-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   ABOUT CARD
   ============================================================ */
.about-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,241,246,0.95), rgba(240,253,250,0.9));
  border: 1px solid var(--border);
}

.about-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-links a {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: all 0.15s;
}

.about-links a:active {
  background: var(--pink-50);
  color: var(--pink-600);
}

/* ============================================================
   BOTTOM NAVIGATION
   ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 50;
  display: flex;
  align-items: stretch;
  padding: 6px 12px calc(var(--safe-bottom) + 6px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(236,72,153,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 0;
  border: none;
  background: transparent;
  color: var(--gray-400);
  transition: color 0.2s;
  position: relative;
}

.nav-item small {
  font-size: 0.65rem;
  font-weight: 700;
}

.nav-item.is-active {
  color: var(--pink-500);
}

.nav-item.is-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
}

.nav-item-center {
  position: relative;
}

.nav-item-fab {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
  font-size: 1.4rem;
  margin-top: -12px;
  box-shadow: 0 4px 16px rgba(236,72,153,0.15);
  transition: transform 0.15s;
}

.nav-item-center.is-active .nav-item-fab {
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  box-shadow: 0 6px 20px rgba(236,72,153,0.3);
}

/* ============================================================
   SETTINGS MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease both;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-sheet {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--surface-solid);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
  animation: slideSheetUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-overflow-scrolling: touch;
}

.modal-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-300);
  margin: 12px auto 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.modal-body {
  padding: 8px 20px 32px;
}

.settings-field {
  margin-bottom: 16px;
}

.settings-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.settings-field input,
.settings-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  outline: none;
}

.settings-field input:focus,
.settings-field select:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(244,114,182,0.1);
}

.settings-save-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(236,72,153,0.2);
  transition: transform 0.15s;
}

.settings-save-btn:active {
  transform: scale(0.97);
}

.settings-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
}

.settings-section h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.settings-link-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 8px;
  transition: background 0.15s;
}

.settings-link-btn:active {
  background: var(--gray-50);
}

.settings-link-btn.danger {
  color: var(--red-500);
  border-color: rgba(239,68,68,0.15);
}

.settings-version {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  top: calc(var(--safe-top) + 70px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 420px;
  pointer-events: none;
}

.toast {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: var(--gray-800);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: auto;
}

.toast.toast-success {
  background: linear-gradient(135deg, #059669, #0d9488);
}

.toast.toast-error {
  background: linear-gradient(135deg, #dc2626, #db2777);
}

.toast.toast-out {
  animation: toastOut 0.25s ease both;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideSheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes kickBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(236,72,153,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(236,72,153,0.1); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}

/* ============================================================
   QUICK TOOLS (6 items → 3 cols)
   ============================================================ */
.quick-tools-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   CONTRACTION COUNTER
   ============================================================ */
.contraction-display {
  text-align: center;
  padding: 20px 0;
}

.contraction-status {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contraction-status.is-active {
  color: var(--red-500);
  animation: pulse-text 1s infinite;
}

.contraction-timer {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.contraction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 56px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), #e11d48);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.contraction-btn:active {
  transform: scale(0.96);
}

.contraction-btn.is-active {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  animation: pulse-btn 1.5s infinite;
}

.contraction-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.cx-stat {
  padding: 14px 10px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.cx-stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cx-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gray-800);
}

.cx-alert {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  border-left: 4px solid var(--red-500);
  background: rgba(254, 226, 226, 0.6);
  color: var(--red-600);
}

.contraction-history {
  display: grid;
  gap: 8px;
}

.cx-history-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  border: 1px solid var(--gray-200);
}

.cx-history-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
}

.cx-history-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.cx-history-info small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cx-history-dur {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--pink-500);
}

/* ============================================================
   WEIGHT TRACKER
   ============================================================ */
.weight-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.weight-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.weight-chart {
  margin: 12px 0;
  min-height: 120px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 14px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  overflow-x: auto;
}

.weight-bar-wrap {
  flex: 1;
  min-width: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.weight-bar {
  width: 100%;
  max-width: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--pink-400), var(--purple-400));
  transition: height 0.3s ease;
  min-height: 4px;
}

.weight-bar-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.weight-bar-value {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gray-700);
}

.weight-history {
  display: grid;
  gap: 8px;
}

.weight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  border: 1px solid var(--gray-200);
}

.weight-item-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
}

.weight-item-val {
  font-size: 1rem;
  font-weight: 900;
  color: var(--pink-500);
}

.weight-item-diff {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.weight-item-diff.up {
  background: rgba(239, 68, 68, 0.08);
  color: var(--red-500);
}

.weight-item-diff.same {
  background: rgba(34, 197, 94, 0.08);
  color: var(--green-500);
}

/* ============================================================
   BIRTH CHECKLIST
   ============================================================ */
.birth-progress {
  height: 10px;
  border-radius: 5px;
  background: var(--gray-100);
  overflow: hidden;
  margin-bottom: 8px;
}

.birth-progress-bar {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-400));
  transition: width 0.4s ease;
}

.birth-progress-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--teal-700);
  margin-bottom: 20px;
}

.birth-checklist {
  display: grid;
  gap: 16px;
}

.birth-category {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.birth-category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gray-50);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray-700);
  cursor: pointer;
  user-select: none;
}

.birth-category-head .cat-icon {
  font-size: 1.2rem;
}

.birth-category-head .cat-count {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--surface-solid);
}

.birth-category-items {
  padding: 8px;
}

.birth-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.birth-item:has(input:checked) {
  background: rgba(34, 197, 94, 0.06);
}

.birth-item:has(input:checked) .birth-item-name {
  text-decoration: line-through;
  color: var(--text-muted);
}

.birth-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-500);
  flex-shrink: 0;
}

.birth-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* content-link-card as button */
button.content-link-card {
  text-align: left;
  cursor: pointer;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5), 0 0 0 8px rgba(220, 38, 38, 0.08); }
}

/* ============================================================
   RESPONSIVE (small screens)
   ============================================================ */
@media (max-width: 380px) {
  .hero-week { font-size: 3.2rem; }
  .kick-count { font-size: 4rem; }
  .kick-btn { width: 100px; height: 100px; }
  .quick-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-options { flex-wrap: wrap; }
  .contraction-stats, .weight-summary, .weight-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BABY SIZE CARD
   ============================================================ */
.baby-size-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-radius: var(--radius-lg);
}

.baby-size-icon {
  font-size: 2.8rem;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.baby-size-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pink-500);
  margin-bottom: 2px;
}

.baby-size-label {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gray-900);
}

.baby-size-detail {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ============================================================
   WEEKLY TIP CARD
   ============================================================ */
.weekly-tip-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.06), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: var(--radius-lg);
}

.weekly-tip-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.weekly-tip-text {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  flex: 1;
}

.weekly-tip-link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal-600);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
