/* ── Global gradient button ─────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(to right, #FF4B6E, #FFB6C1) !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  font-weight: 600;
  border: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.15s ease, transform 0.1s ease;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255, 75, 110, 0.30);
}
.btn-primary:hover {
  opacity: 0.88 !important;
  color: #ffffff !important;
}
.btn-primary:active {
  transform: scale(0.97) !important;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  transform: none !important;
}
