.custom-button-wrapper {
  display: flex;
  margin: 16px 0;
}

.custom-button-wrapper--left {
  justify-content: flex-start;
}

.custom-button-wrapper--center {
  justify-content: center;
}

.custom-button-wrapper--right {
  justify-content: flex-end;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 54px;
  border-radius: 8px;
  text-overflow: ellipsis;
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.14px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.custom-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.custom-button:hover::before {
  width: 100%;
  height: 300px;
}

/* Filled variant */
.custom-button--filled {
  background-color: #192c5d;
  color: #ffffff;
  border-color: #192c5d;
}

/* Outline variant */
.custom-button--outline {
  background-color: transparent;
  color: #e3af64;
  border-color: #e3af64;
}

.custom-button--outline:hover {
  background-color: #e3af64;
  color: #0f1a3a;
  border-color: #e3af64;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 175, 100, 0.3);
}

/* Disabled state */
.custom-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.custom-button:disabled:hover {
  transform: none;
  box-shadow: none;
}
