/**
 * The small "save to Home Screen" bottom sheet - a compact card, not a
 * full-screen modal, consistent with the rest of CRWM's dark/amber style.
 */
.crwm-pwa-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  pointer-events: none;
}

.crwm-pwa-sheet__card {
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  background: var(--crwm-bg-raised);
  border: 1px solid var(--crwm-border);
  border-radius: var(--crwm-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.crwm-pwa-sheet__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--crwm-text);
}

.crwm-pwa-sheet__body {
  margin: 0 0 0.85rem;
  color: var(--crwm-text-dim);
  font-size: 0.9rem;
}

.crwm-pwa-sheet__steps {
  margin: 0 0 0.6rem;
  padding-left: 1.25rem;
  color: var(--crwm-text-dim);
  font-size: 0.9rem;
}

.crwm-pwa-sheet__steps li {
  margin: 0 0 0.3rem;
}

.crwm-pwa-sheet__steps li:last-child {
  margin-bottom: 0;
}

.crwm-pwa-sheet__actions {
  display: flex;
  gap: 0.75rem;
}

.crwm-pwa-sheet__actions .crwm-btn {
  flex: 1;
}
