.wg-celebrate {
  position: fixed;
  inset: 0;
  z-index: var(--z-celebration);
  background: rgba(15, 12, 32, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: wg-cel-fade 0.25s ease-out;
}
@keyframes wg-cel-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.wg-celebrate__card {
  background: linear-gradient(160deg, #fff 0%, #f4f0ff 100%);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(106, 62, 235, 0.35);
  animation: wg-cel-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes wg-cel-pop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.wg-celebrate__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.wg-celebrate__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.wg-celebrate__sub {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin: 0 0 1.5rem;
}
.wg-celebrate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wg-celebrate__btn {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease;
}
.wg-celebrate__btn:active { transform: scale(0.97); }
.wg-celebrate__btn--primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 62, 235, 0.35);
}
.wg-celebrate__btn--secondary {
  background: #fff;
  color: var(--primary-purple);
  border: 1.5px solid var(--primary-purple);
}
.wg-celebrate__btn--ghost {
  background: transparent;
  color: var(--text-grey);
  font-weight: 500;
  font-size: 0.82rem;
}
@media (prefers-reduced-motion: reduce) {
  .wg-celebrate,
  .wg-celebrate__card { animation: none; }
}

/* Chat status banner + quick replies */
.wg-chat-status {
  padding: 0.65rem 1.25rem;
  background: #fbfaff;
  border-bottom: 1px solid #eee;
}
.wg-chat-quickreplies {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.25rem;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid #f2f2f5;
}
.wg-chat-quickreplies::-webkit-scrollbar { display: none; }
.wg-chat-quickreplies__chip {
  flex-shrink: 0;
  background: #f4f0ff;
  color: var(--primary-purple);
  border: 1px solid rgba(106, 62, 235, 0.2);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.15s ease;
}
.wg-chat-quickreplies__chip:hover {
  background: var(--primary-purple);
  color: #fff;
}
.wg-chat-quickreplies__chip:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
