[data-mochi-support]:empty {
  display: none;
}
.mochi-card {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
  text-align: left;
}
.mochi-card--wide { grid-template-columns: 110px 1fr; }
.mochi-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid rgba(249, 115, 22, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.mochi-card--wide .mochi-photo { width: 110px; height: 110px; }
.mochi-body h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}
.mochi-social {
  font-size: 0.8rem;
  color: #d4d4d8;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}
.mochi-social b { color: #fbbf24; }
.mochi-quote {
  color: var(--muted, #a1a1aa);
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}
.mochi-quote em { color: #e4e4e7; font-style: normal; }
.mochi-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.mochi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
}
.mochi-btn:hover { transform: translateY(-1px); }
.mochi-btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #000;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.mochi-btn-secondary {
  background: var(--surface, #18181b);
  color: var(--text, #fafafa);
  border: 1px solid var(--border, #27272a);
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
}
.mochi-btn-venmo { background: #008cff; color: #fff; }
.mochi-btn-paypal { background: #0070ba; color: #fff; }
.mochi-btn-cashapp { background: #00d632; color: #000; }
.mochi-btn-pack {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.mochi-card--grateful {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(249, 115, 22, 0.08));
  animation: mochiPulse 1.2s ease 1;
}
@keyframes mochiPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: none; }
}
.mochi-goal {
  margin-top: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  font-size: 0.78rem;
  color: #fde68a;
  line-height: 1.4;
}
.mochi-fine {
  font-size: 0.72rem;
  color: #71717a;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.mochi-sent {
  margin-top: 0.65rem;
  background: transparent;
  border: 1px dashed rgba(249, 115, 22, 0.45);
  color: #f97316;
  border-radius: 0.5rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.mochi-sent:hover { background: rgba(249, 115, 22, 0.08); }
.mochi-thanks {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: #86efac;
  font-weight: 600;
}
.mochi-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f97316;
  background: rgba(249, 115, 22, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}
@media (max-width: 480px) {
  .mochi-card, .mochi-card--wide {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mochi-photo { margin: 0 auto; }
  .mochi-cta { justify-content: center; }
}