.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    position: relative;
    transition: color 0.3s ease;
}

/* Hide original text on hover */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: transparent;
}

/* Show 'Buy Now' on hover */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title::before {
    content: "Buy Now";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--e-global-color-primary, #6EC1E4); /* Elementor Primary Color */
    font-weight: bold;
    visibility: visible;
    opacity: 1;
}

/* Hide the default add to cart button to prevent overlap if it exists */
.woocommerce ul.products li.product .button {
    display: none !important;
}
