#add-to-cart-single .single_add_to_cart_button {
    position: relative;
    overflow: hidden;
    font-family: 'Actay', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px;
    color: #333333 !important;
    text-transform: none !important;
    border-radius: 12px !important;
    animation: kc-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

@media screen and (max-width: 500px) {
    #add-to-cart-single .single_add_to_cart_button {
        height: auto;
        animation: none;


    }

    #add-to-cart-single .single_add_to_cart_button::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
                90deg,
                transparent 40%,
                rgba(255, 255, 255, 0.55) 50%,
                transparent 60%
        );
        transform: skewX(-22deg) translateX(-80%);
        animation: cartShine 5s infinite;
        pointer-events: none;
    }
}

