.swwa-button,
.swwa-floating-button {
  align-items: center;
  background: #168b63;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 67, 49, 0.18);
  color: #fff !important;
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  line-height: 1.2;
  padding: 13px 20px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.swwa-button:hover,
.swwa-floating-button:hover {
  background: #0f704f;
  color: #fff !important;
  transform: translateY(-1px);
}

.swwa-button:focus-visible,
.swwa-floating-button:focus-visible {
  outline: 3px solid rgba(22, 139, 99, 0.35);
  outline-offset: 3px;
}

.swwa-button--large { padding: 16px 24px; }
.swwa-icon { display: inline-flex; }
.swwa-is-loading { cursor: wait; opacity: 0.75; }

.swwa-floating-button {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 9998;
}

.swwa-contact-card {
  background: #f7fbf9;
  border: 1px solid #d7e9e1;
  border-radius: 18px;
  margin: 24px auto;
  max-width: 680px;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
}

.swwa-contact-card h2 { margin: 0 0 12px; }
.swwa-contact-card > p { margin: 0 auto 24px; max-width: 560px; }
.swwa-contact-details { border-top: 1px solid #d7e9e1; display: flex; gap: 28px; justify-content: center; margin: 28px 0 0; padding-top: 20px; }
.swwa-contact-details div { display: flex; gap: 6px; }
.swwa-contact-details dt { font-weight: 700; }
.swwa-contact-details dd { margin: 0; }

@media (max-width: 600px) {
  .swwa-floating-button { bottom: 16px; right: 16px; }
  .swwa-contact-details { align-items: center; flex-direction: column; gap: 8px; }
}

