/* Cleanly replace button text ONLY for product ID 6096 */

.postid-6096 .single_add_to_cart_button {
    position: relative;
    color: transparent !important;
}

.postid-6096 .single_add_to_cart_button::after {
    content: "Pre-order now";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* adjust if your button text isn't white */
    font-size: 16px;
    width: 100%;
    text-align: center;
}