/* ============================================================
   Support chat widget — pinned to the true bottom-right corner.
   ============================================================ */
.z-chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.z-chat-toggle {
  border: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #d7d5ff);
  color: #111;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast, 150ms ease);
  flex-shrink: 0;
}
.z-chat-toggle:hover { transform: scale(1.06); }
.z-chat-toggle:active { transform: scale(0.96); }

.z-chat-panel {
  width: min(340px, 88vw);
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 1.1rem;
  border-radius: 20px;
  background: #11121A;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.86);
}

.z-chat-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.z-chat-panel-head strong { font-size: 1rem; color: #fff; }

.z-chat-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.z-chat-close:hover { color: #fff; }

.z-chat-intro {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.9rem;
}

.z-chat-steps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.z-chat-step {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.z-chat-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.z-chat-step-body { font-size: 0.82rem; line-height: 1.4; }
.z-chat-step-title { color: #fff; font-weight: 600; display: block; margin-bottom: 0.1rem; }
.z-chat-step-desc { color: rgba(255, 255, 255, 0.6); }

.z-chat-panel .btn-primary,
.z-chat-panel .btn-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 480px) {
  .z-chat-widget { right: 0.85rem; bottom: 0.85rem; }
  .z-chat-toggle { width: 50px; height: 50px; }
}

.z-showcase-actions { display: flex; gap: 0.75rem; align-items: center; }
