.mobile-cart-button {
    display: none;
}
.desktop-cart-button {
    display: block;
}
@media(max-width:999px) {
    .mobile-cart-button {
        display: block;
    }
    .desktop-cart-button {
        display: none;
    }
}