:root {
  --baby-blush: #fff0f4;
  --baby-mint: #ecfbf5;
  --baby-cream: #fff8e8;
  --baby-blue: #eaf5ff;
}

.baby-soft {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 240, 244, .95), transparent 24rem),
    radial-gradient(circle at 90% 12%, rgba(236, 251, 245, .9), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(234, 245, 255, .9), transparent 30rem),
    var(--bg);
}

.baby-soft::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .26;
  background:
    radial-gradient(circle at 24px 24px, rgba(18, 52, 91, .16) 0 2px, transparent 3px),
    radial-gradient(circle at 88px 64px, rgba(22, 134, 95, .14) 0 3px, transparent 4px);
  background-size: 128px 128px;
}

.soft-note {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--baby-cream), color-mix(in srgb, var(--surface) 88%, transparent));
  color: var(--muted);
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}

.focus-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.focus-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 90%, var(--baby-blue));
  color: var(--text);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.profile-drawer {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.profile-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  list-style: none;
  font-weight: 900;
  color: var(--navy-2, var(--navy));
}

.profile-drawer summary::-webkit-details-marker {
  display: none;
}

.profile-drawer summary::after {
  content: "Aç / kapat";
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.profile-drawer-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 12px;
  align-items: end;
  padding: 0 16px 16px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.quick-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.insight-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft, var(--soft));
  padding: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

.mini-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.report-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 90%, var(--baby-mint));
  padding: 12px;
}

.report-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.report-card strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}



.baby-soft .toast {
  bottom: 82px;
  max-width: min(320px, calc(100vw - 80px));
  border-radius: 18px;
}

@media (max-width: 900px) {
  .profile-drawer-body {
    grid-template-columns: 1fr;
  }

  .mini-report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .baby-soft .app-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(10px);
  }

  .quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quick-action {
    width: 100%;
  }

  .focus-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .focus-chip {
    width: 100%;
  }

}
