/* Unified primary calls to action */
.button.button-primary {
  background: linear-gradient(135deg, #2ae51b 0%, #18ca11 100%);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(31, 216, 22, .24), inset 0 1px 0 rgba(255, 255, 255, .42);
  min-height: 58px;
  overflow: hidden;
  padding: 10px 12px 10px 23px;
  position: relative;
  transform: translateZ(0);
}

.button.button-primary::before {
  background: linear-gradient(105deg, transparent 22%, rgba(255, 255, 255, .33) 49%, transparent 74%);
  content: '';
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-105%);
  transition: transform .55s ease, opacity .25s ease;
}

.button.button-primary > * { position: relative; z-index: 1; }
.button.button-primary span {
  align-items: center;
  background: rgba(4, 20, 4, .16);
  border-radius: 10px;
  display: inline-flex;
  font-size: 21px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
  width: 36px;
}

.button.button-primary:hover {
  background: linear-gradient(135deg, #35ec26 0%, #1ed415 100%);
  box-shadow: 0 16px 35px rgba(31, 216, 22, .34), inset 0 1px 0 rgba(255, 255, 255, .5);
  transform: translateY(-3px);
}
.button.button-primary:hover::before { opacity: 1; transform: translateX(105%); }
.button.button-primary:hover span { background: rgba(4, 20, 4, .25); transform: translateX(3px); }
.button.button-primary:active { transform: translateY(-1px) scale(.985); }
.button.button-primary:focus-visible, .form-next:focus-visible, .form-submit:focus-visible { outline: 3px solid #f0cc6b; outline-offset: 4px; }

.form-next, .form-submit {
  background: linear-gradient(135deg, #2ae51b 0%, #18ca11 100%) !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(31, 216, 22, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.form-next:hover, .form-submit:hover { box-shadow: 0 12px 25px rgba(31, 216, 22, .32); transform: translateY(-2px); }

@media (max-width: 560px) {
  .button.button-primary { min-height: 56px; padding-left: 19px; }
  .button.button-primary span { height: 34px; width: 34px; }
}
