a.shop-link-btn {
    display: block;
    width: fit-content;
    padding: 10px 35px 10px 15px;
    margin: 30px auto;
    color: #fff;
    background-color: #3579BF;
    transition: .3s;
    position: relative;
    text-decoration: none;
    border-radius: 10px;
}

a.shop-link-btn::before {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: .3s;
}

a.shop-link-btn:hover {
    background-color: #4e93d7;
}

a.shop-link-btn:hover::before {
    right: 5px;
}