.count-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;

  .quantity-label {
    padding-right: 9px;
    margin: 0 !important;
  }

  &__input {
    height: 40px;
    width: 46px;
    border: 1px solid $gray;
    border-radius: 3px;
    margin-right: 0 !important;
  }
}

.count-btn {
  font-size: 1.3rem;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: $blue;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;

  i {
    font-size: 16px;
    line-height: 1;
  }

  &[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
  }

  &:focus {
    outline: none;
    box-shadow: none;
  }

  &:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba($blue, 0.35);
  }

  &:focus:not(:focus-visible) {
    box-shadow: none;
  }

  &::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
}
