/* ============================================================
   Kairos Labs - Wise Gateway  |  Frontend (checkout + thank you)
   ============================================================ */

/* Bank transfer instructions block */
.kairos-wise-instructions {
  background: #f8faff;
  border: 1px solid #dbeafe;
  border-left: 4px solid #2d80e9;
  border-radius: 6px;
  padding: 20px 24px;
  margin: 20px 0;
}
.kairos-wise-instructions h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #1a1a1a;
}
.kairos-wise-details {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.kairos-wise-details li {
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.kairos-wise-details li:last-child {
  border-bottom: none;
}
.kairos-wise-details code {
  font-size: 13px;
  background: #e8f0fe;
  padding: 2px 6px;
  border-radius: 3px;
  color: #1a3a6e;
}

/* Reference row */
.kairos-wise-reference {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.kairos-wise-reference code {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1e40af;
  background: none;
  padding: 0;
}

/* Copy button */
.kairos-copy-btn {
  background: none;
  border: 1px solid #2d80e9;
  border-radius: 4px;
  color: #2d80e9;
  cursor: pointer;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, color 0.15s;
}
.kairos-copy-btn:hover {
  background: #2d80e9;
  color: #fff;
}
.kairos-copy-btn svg {
  pointer-events: none;
}

/* Copied confirmation */
.kairos-copied-msg {
  font-size: 12px;
  color: #1fc2b4;
  font-weight: 600;
}

/* Amount line */
.kairos-wise-amount {
  margin: 8px 0 0;
  font-size: 14px;
  color: #3c434a;
}

/* Optional thank-you description */
.kairos-wise-thankyou-desc {
  margin-bottom: 16px;
}
