/* ============================================================
   Share — simple, clean share options
   ============================================================ */

.share-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: var(--surface-elevated);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  padding: var(--space-6) var(--space-4) calc(var(--space-6) + var(--safe-bottom));
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.share-sheet--visible {
  transform: translateY(0);
}

.share-sheet__backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) - 1);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  pointer-events: none;
}

.share-sheet__backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

.share-sheet__handle {
  width: 36px;
  height: 4px;
  background-color: var(--border-default);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
}

.share-sheet__preview {
  background-color: var(--surface-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}

.share-sheet__verse {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

.share-sheet__ref {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xs);
  color: var(--brand-gold);
}

.share-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.share-sheet__btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-4);
  background: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-sans);
  text-align: left;
}

.share-sheet__btn:active {
  background-color: var(--surface-secondary);
}

.share-sheet__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--surface-secondary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.share-sheet__btn-text {
  flex: 1;
}

.share-sheet__btn-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.share-sheet__btn-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}
