button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
}

.ws-primary-buton {
  background-color: #490656;
  color: #fff;
  font-size: clamp(0.72rem, 1vw, 1.2rem);
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  height: 48px;
  padding: 22px 12px 22px 12px;
  border-radius: 8px;
  box-shadow: none;
}

.ws-primary-buton:hover {
  background-color: #6b3e75;
  color: #fff;
  transition: 180ms;
}

.ws-secondary-buton {
  background-color: transparent;
  border-style: solid;
  border-color: #836488;
  border-width: 1.5px;
  border-radius: 8px;
  color: #836488;
  font-size: 15px;
  font-weight: 500;
  height: 48px;
}

.ws-secondary-buton:hover {
  background-color: #f6f5f8;
  border-color: #836488;
  color: #836488;
  transition: 180ms;
}

.ws-hero-buton {
  background-color: #490656;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-style: solid;
  border-color: #6b3e75;
  border-radius: 8px;
  height: 52px;
  padding: 22px 12px;
  box-shadow: none;
}

.ws-hero-buton:hover {
  background-color: #6b3e75;
  color: #fff;
  transition: 180ms;
}

/* ===============================
buttons for pages
==================================*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #490656;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* Remove Bootstrap blue focus ring */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
  background: #490656;
  filter: brightness(1.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  outline: none !important;
  box-shadow: none !important;
}

/* Replace with branded focus */
.btn:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(73, 6, 86, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
