(Squarespace) How to make Add to Cart disappear after click

To make Add to Cart button disappear after click, you can use this code to Custom CSS box.

div.cart-added {
    display: none !important;
}

To apply it on specific products, you can create a tag with name: disappear then assign it to products

Then use this code to Custom CSS.

/* hide add to cart */
.tag-disappear div.cart-added {
    display: none !important;
}