.checkout-options input:disabled + span {
  cursor: not-allowed;
  opacity: .42;
  filter: saturate(.4);
}

.checkout-payment-note {
  margin: 11px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.checkout-payment-note.warning {
  color: #ffb3ca;
}

.checkout-card-payment {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 17px;
  border: 1px solid rgba(52, 120, 255, .5);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(52, 120, 255, .14), rgba(242, 48, 143, .07));
  box-shadow: 0 0 0 2px rgba(52, 120, 255, .08);
}

.checkout-card-payment > i {
  color: #6da6ff;
  font-size: 24px;
}

.checkout-card-payment > i:last-child {
  color: #65d9a2;
  font-size: 19px;
}

.checkout-card-payment b,
.checkout-card-payment small {
  display: block;
}

.checkout-card-payment b {
  margin-bottom: 5px;
  font: 800 12px var(--head);
  text-transform: uppercase;
}

.checkout-card-payment small {
  color: var(--muted);
  font-size: 11px;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none !important;
}

.checkout-payment-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 430px;
  min-height: 54px;
  margin: 28px auto 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--pink), #ff5ca8);
  color: #150b20;
  font: 900 12px var(--head);
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s, filter .2s;
}

.checkout-payment-link[hidden] {
  display: none;
}

.checkout-payment-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.checkout-payment-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
