/* Button Component - Primary */
.btn-primary,
button.btn-primary,
a.btn-primary {
  display: inline-flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  
  border-radius: 12px;
  border-top: 2px solid rgba(176, 97, 255, 0.32);
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: linear-gradient(180deg, #7A01F2 0%, #5D00B9 100%);
  box-shadow: 0 1px 3px 0 rgba(49, 0, 97, 0.32), 0 1px 4px 0 rgba(141, 129, 255, 0.40) inset;
  
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: inherit;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:active {
  opacity: 0.8;
}

.btn-primary .btn-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--white);
}

.btn-primary .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow icon SVG/IMG */
.btn-primary .btn-icon svg,
.btn-primary .btn-icon img {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

/* Button Component - Secondary */
.btn-secondary,
button.btn-secondary,
a.btn-secondary {
  display: inline-flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  
  border-radius: 12px;
  border: 1px solid var(--grey-200, #e5e5e7);
  background: transparent;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
  
  color: var(--grey-700, #3f3f46);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: var(--grey-300, #d4d4d8);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}

.btn-secondary:active {
  opacity: 0.9;
}

.btn-secondary .btn-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--grey-100, #f9f9fb);
}

.btn-secondary .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow icon SVG/IMG */
.btn-secondary .btn-icon svg,
.btn-secondary .btn-icon img {
  width: 100%;
  height: 100%;
  fill: var(--grey-100, #f9f9fb);
}