/*
Theme Name: Hello Elementor Child
Theme URI: https://yourwebsite.com
Description: A child theme for the Hello Elementor theme.
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom styles below this line */



.woocommerce-sidebar-enabled .sidebar {
    display: block !important;
}

/* product title below space css start */

.woocommerce-loop-product__title{
	height:30%!important;
}


/* stickye header code  */

/* Hide initially */
#hfe-template-2164 {
    position: fixed !important;
    top: -200px !important;
    width: 100% !important;
    z-index: 99999 !important;
    transition: all 0.4s ease !important;
    opacity: 0;
}

/* Show on scroll */
#hfe-template-2164.sticky-show {
    top: 0 !important;
    opacity: 1 !important;
}

/* Prevent content jump */
body.has-sticky-header {
    padding-top: 80px !important;
}