Pseudo class :before don’t working in a specific button

For some reason, there’s a display none on the :before of your button. The following should fix this.

.woocommerce-page ul.products li.product .button.add_to_cart_button:before,
.woocommerce ul.products li.product .add_to_cart_button:before {
    display: block;
}