/*
Theme Name: KidXtore
Theme URI: https://kidxtore.bzotech.com/intro/
Author: BZOTech
Author URI: https://bzotech.com/
Description: KidXtore is a very cute WooCommerce theme with eye-catching designs and colorful colors. It is the ideal WordPress theme for e-commerce websites or businesses that sell goods for babies and kids.
Version: 2.4.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright: © 2024 BZOTech Theme. All rights reserved.
Tags: custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, post-formats, sticky-post, threaded-comments, block-styles, blog, news
Text Domain: bw-kidxtore
*/
/* Initially hide Add to Cart button and position it below */
/* Initially hide Add to Cart button and position it below */
.swiper-slide .item-product a.addcart-link.case-cart-default.product_type_simple.add_to_cart_button.bzotech_ajax_add_to_cart.product_type_simple {
    opacity: 0 !important;
    transform: translateY(20px) !important; /* Start 20px niche */
    transition: all 0.3s ease !important; /* Smooth slide */
    pointer-events: none !important; /* Prevent click when hidden */
}

/* Show button on hover of the slide */
.swiper-slide:hover .item-product a.addcart-link.case-cart-default.product_type_simple.add_to_cart_button.bzotech_ajax_add_to_cart.product_type_simple {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Slide up */
    pointer-events: auto !important; /* Enable click */
}


