.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: var(--type-body-l-size);
  font-weight: var(--type-body-l-weight);
  line-height: var(--type-body-l-line-height);
  text-align: right;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.btn:focus-visible {
  outline: 0px solid var(--accents-wine-red);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn--primary {
  background-color: var(--accents-wine-red);
  color: var(--functional-surface);
}

.btn--primary:hover:not(:disabled) {
  background-image: linear-gradient(
    rgba(255, 233, 246, 0.2),
    rgba(255, 233, 246, 0.2)
  );
}

.btn--secondary {
  background-color: transparent;
  color: var(--accents-wine-red);
}

.btn--secondary:hover:not(:disabled) {
  background-color: var(--functional-neutral-light);
}
